【发布时间】:2017-11-17 18:08:10
【问题描述】:
任务:BizTalk 服务应从客户端 (Receive_1) 获取消息并将其发送到远程 1cServise (Send_1)。 1cServise 接受消息,结构如下:
对地址https://1Caddress.1cws的空POST请求
带有标题 - 内容类型:文本/xml
和正文 - XML(纯文本):
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<m:Get xmlns:m="http://www.gis.com.ua">
</m:Get>
</soap:Body>
</soap:Envelope>
然后 1cService 将消息返回到 BizTalk (Receive_2),然后返回到客户端 (Send_2)。
在我将 Correlation 属性添加到消息 Send_1 和 Receive_2 之前,我的项目不会编译。
但是我应该选择哪种类型的关联属性来向 1cService 发送正确的请求? 甚至,如何向 1cServise 发送正确的消息以获得响应?
【问题讨论】:
标签: xml soap biztalk correlation biztalk-orchestrations