映射以生成目标消息的多个实例

发布于 2024-12-10 09:36:20 字数 327 浏览 1 评论 0原文

第一个问题:)

下面您将看到我创建的地图的图片。我将 TransHeader 记录(数据集的孙子、行的子项)映射到将绑定到发送端口(用于调用存储过程的 WCF-SQL)的目标架构。

当我使用该发送端口时,只有 TransHeader 记录的第一个实例被映射并发送到 SQL Server。显然,通过查看架构,您可以看出我的入站架构中可能存在多个 TransHeader。我想插入每个实例。

有什么想法吗?

图片:

http://imgur.com/zgDqZ

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:

http://imgur.com/zgDqZ

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

她如夕阳 2024-12-17 09:36:20

您可以使用复合架构来包装 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文