我的Dynamic Solicit-Response
类型为Security Mode
。
发送端口所需的一切都在业务流程中动态配置,Transport
设置为Send Port
。
加密证书。 (我猜IIS已经处理过了吗?)
还未配置Host和IsolatedHost实例的解密证书。 (这是我认为BizTalk将信任证书的部分,具体取决于受信任的根证书颁发机构中的当前证书)
是的,shape = (50, 50)
initial_board = tf.random_uniform(shape, minval=0, maxval=2, dtype=tf.int32)
board = tf.placeholder(tf.int32, shape=shape, name='board')
def update_board(X):
# Check out the details at: https://jakevdp.github.io/blog/2013/08/07/conways-game-of-life/
# Compute number of neighbours,
N = convolve2d(X, np.ones((3, 3)), mode='same', boundary='wrap') - X
# Apply rules of the game
X = (N == 3) | (X & (N == 2))
return X
board_update = tf.py_func(update_board, [board], [tf.int32])
fig = plt.figure()
if __name__ == '__main__':
with tf.Session() as sess:
initial_board_values = sess.run(initial_board)
X = sess.run(board_update, feed_dict={board: initial_board_values})[0]
def game_of_life(*args):
A = sess.run(board_update, feed_dict={board: X})[0]
plot.set_array(A)
return plot,
ani = animation.FuncAnimation(fig, game_of_life, interval=100, blit=False)
plot = plt.imshow(X, cmap='Greys', interpolation='nearest')
plt.show()
将在使用自签名证书的端点上发出请求。
我尝试了什么:
什么都行不通......
答案 0 :(得分:0)
如果安全模式是Transport,则需要的证书将是包含公钥且与目标服务器匹配的证书。如果这是自签名证书,则需要位于受信任的根证书颁发机构,BizTalk主机用户的证书。