将平面架构映射到重复架构

时间:2016-07-20 12:41:40

标签: biztalk biztalk-2013

Biztalk Map

嗨,我是BizTalk的新手。我确实在源模式中有一条记录。

<?xml version="1.0" encoding="utf-8"?>
    <LogEntryResponse xmlns="...">
      <LogEntryResult>
        <TxId>string1</TxId>
        <ServiceName>string2</ServiceName>
        <Identifier>string3</Identifier>
        <Amount>string4</Amount>
        <Status>string5</Status>
        <Detail>string6</Detail>
      </LogEntryResult>
    </LogEntryResponse>

我想使用每个元素在目标模式中创建单独的记录,如下所示:

<?xml version="1.0" encoding="UTF-8"?>
      <ns1:processRequestResponse>
         <return>
            <name>string1</name>
            <value>string1</value>
         </return>
         <return>
            <name>string2</name>
            <value>string2</value>
         </return>
         <return>
            <name>string3</name>
            <value>string3</value>
         </return>
      </ns1:processRequestResponse>
</ns0:Envelope>

我尝试过很多东西,但显然我做错了。我希望有人能指出我正确的方向。

1 个答案:

答案 0 :(得分:2)

应该很简单。

您所要做的就是将TxId,ServiceName,Identifier等全部链接到循环Functoid。然后从循环Functoid链接到返回。

然后,您可以将每个单独的字段链接到Value,并使用String Concatenate设置每个Name字段。