Biztalk 地图:将不同的节点分组到一个列表中
有没有办法在BT映射器中实现以下转换?如果没有,有什么聪明的主意吗?
<Person>
<Age>25</Age>
<Name>Paul</Name>
</Person>
to:
<Person>
<CustomProperties>
<CustomProperty>
<Name>Age</Name>
<Value>25</VAlue>
</CustomProperty>
<CustomProperty>
<Name>Name</Name>
<Value>Paul</VAlue>
</CustomProperty>
</CustomProperties>
我必须聚合节点列表中的一些元素。
提前致谢。
Is there a way of achieve the following transformation in the BT mapper? if not, any smart idea?
<Person>
<Age>25</Age>
<Name>Paul</Name>
</Person>
to:
<Person>
<CustomProperties>
<CustomProperty>
<Name>Age</Name>
<Value>25</VAlue>
</CustomProperty>
<CustomProperty>
<Name>Name</Name>
<Value>Paul</VAlue>
</CustomProperty>
</CustomProperties>
I have to aggregate a few elements in a list of nodes.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您还可以在地图中使用 TableLooping / TableExtractor functoid 来构建目标节点。
请参阅此帖子的示例:
http://hestia.typepad.com/flatlander /2007/01/mapping_fixed_e.html
You can also use the TableLooping / TableExtractor functoids in your map to build the destination nodes.
See this post for an example:
http://hestia.typepad.com/flatlander/2007/01/mapping_fixed_e.html
对 BizTalk 映射器了解不多,但所需的 XSLT 相当简单:
Don't know much about the BizTalk mapper, but the required XSLT would be fairly straight-forward:
看起来您有一个从输入到输出的直接映射。当您进行映射时,右键单击从输入到输出绘制的线。选择“属性”。有一些选项可以复制输入节点的值或输入节点的名称。您可以使用每个子节点的两个映射,一个用于提取名称,另一个用于提取值。
It looks like you have a straight forward mapping from input to output. When you do your mapping right click on the line drawn from the input to the output. Select "Properties". There are options to either copy the value of the input node or the name of the input node. You can use two mappings from each child node, one to extract the name and one for the value.