映射以生成目标消息的多个实例
第一个问题:)
下面您将看到我创建的地图的图片。我将 TransHeader 记录(数据集的孙子、行的子项)映射到将绑定到发送端口(用于调用存储过程的 WCF-SQL)的目标架构。
当我使用该发送端口时,只有 TransHeader 记录的第一个实例被映射并发送到 SQL Server。显然,通过查看架构,您可以看出我的入站架构中可能存在多个 TransHeader。我想插入每个实例。
有什么想法吗?
图片:
First question :)
Below you will see a pic of my map that I have created. I am mapping the TransHeader record (grandchild of dataset, child of row) to a destination schema that will be tied to a send port (WCF-SQL to call a stored procedure).
When I use that send port, only the first instance of the TransHeader record is mapped and sent to SQL server. Obviously by looking at the schema, you can tell that multiple TransHeaders may exist in my inbound schema. I want to insert each instance.
Any thoughts?
pic:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用复合架构来包装 WCF-SQL 请求,并在发送端口上使用复合操作来执行这些多个请求。
基本上,您将
usp_InsertTransHeader
请求和响应包装在复合架构中,并将请求和响应的 MaxOccurs 标记为“无界”。此链接复合操作,应该提供有关如何实现这一目标的良好指南。
另外,请留意理查德·塞罗特 (Richard Seroters) 书中的例子;
SOA 模式与 BizTalk 2009
HTH
You can use a composite schema to wrap your WCF-SQL request and use a composite operation on the send port to execute these multiple requests.
Basically, you wrap your
usp_InsertTransHeader
request and response in a composite schema and mark the MaxOccurs to "unbounded" for the request and response.This link, Composite Operations, should provide a good guide on how to achieve this.
Also, look out for Richard Seroters example in his book;
SOA Patterns With BizTalk 2009
HTH