BizTalk 映射错误地解析输入 XML
我遇到过这样的情况:我的 BizTalk 映射无法正确从输入 XML 中提取数据。
输入模式如下所示:
序列
A
B
XSD 上的所有 3 个节点的最小值为 0,最大值为无界。
下面是一个示例输入文件片段:
<A>1</A>
<B>hi</B>
<A>2</A>
<B>there</B>
现在我的映射获取此数据并调用存储过程将数据插入表中。对于 1 的 A 和 2 的 A,我在字段 B 中都得到“hi”。这是不正确的。
我把问题追溯到了地图上。生成的 XSLT 在 A 上执行 foreach,然后去获取值 B,但总是获取第一个 B。
那么有人有任何关于修改输入模式或映射以使其正常工作的提示吗?
I've got a situation where my BizTalk map is not extracting data from input XML correctly.
The input schema looks like this:
Sequence
A
B
All 3 of those nodes on the XSD have min 0, max unbounded.
So here's a sample input file fragment:
<A>1</A>
<B>hi</B>
<A>2</A>
<B>there</B>
Now my map takes this data and calls stored procs to insert data into a table. I'm getting "hi" for field B for both A of 1 and A of 2. That's incorrect.
I traced the problem to the map. The XSLT generated does a foreach on A, and then goes to grab value B but always grabs the first B.
So anyone have any tips for modifying either the input schema or the map to get this to work correctly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您需要将 A 和 B 项分组在一起,您可以更改架构以创建一个包装器元素,因此您的架构将如下所示:
然后您可以循环遍历包装器元素并获取 A 和 B 元素。但我不确定这是否是您要寻找的。
另一种选择是在 XSLT 调用模板中工作。使用 A 和 A 的当前迭代,那么当你得到 B 时,你实际上得到 B[i],其中 i 是当前迭代。
If you need to group A and B items togethers, you could change the schema is to create a wrapper element, so your schema would look like:
Then you could loop through wrapper elements and get the A and B elements. But I'm not sure if that is what you're looking for.
The other option is to work within XSLT Call-templates. Using A and the current iteration of A, then when you get B you actually B[i], where i is the current iteration.