BizTalk 映射错误地解析输入 XML

发布于 2024-08-19 01:24:29 字数 469 浏览 2 评论 0原文

我遇到过这样的情况:我的 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 技术交流群。

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

发布评论

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

评论(1

避讳 2024-08-26 01:24:29

如果您需要将 A 和 B 项分组在一起,您可以更改架构以创建一个包装器元素,因此您的架构将如下所示:

<xs:element name="wrapper">
  <xs:complextype>
    <xs:sequence>
      <xsl:element name="A" type="xs:string" minoccur="1" maxoccur="1"/>
      <xsl:element name="B" type="xs:string" minoccur="1" maxoccur="1" />
    </xs:sequence>
  </xs:complextype>
</xs:element>

然后您可以循环遍历包装器元素并获取 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:

<xs:element name="wrapper">
  <xs:complextype>
    <xs:sequence>
      <xsl:element name="A" type="xs:string" minoccur="1" maxoccur="1"/>
      <xsl:element name="B" type="xs:string" minoccur="1" maxoccur="1" />
    </xs:sequence>
  </xs:complextype>
</xs:element>

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.

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