0

我的输入类似于:

<Person>
 <FirstName>abc</FirstName>
 <Bsn>2345467</Bsn>
<Person>

输出应该是:

<Person>
  <properties>
    <property>
       <propertyname> Firstname </propertyname>
       <propertyValue> abc </propertyValue>
    </property>
    <property>
       <propertyname> Bsn</propertyname>
       <propertyValue> 2345467 </propertyValue>
    </property>
   </properties>
</Person>

我的意思是目标没有特定的属性/属性。相反,它具有一组属性,其中我指定了属性的名称和属性的值。

非常感谢任何帮助。

我正在使用 Biztalk 2009

请帮忙

4

1 回答 1

1

在这种情况下,我将使用自定义 XSLT - 通过使用脚本功能或将整个地图替换为自定义 XSLT 文件(取决于其他地图的外观)。

解决方案可能看起来像这样。

XML

<Persons>
 <Person>
  <FirstName>abc</FirstName>
  <Bsn>2345467</Bsn>
 </Person>
</Persons>

XSLT

 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output method="xml" indent="yes"/>

 <xsl:template match="Persons">
  <Persons>
   <xsl:apply-templates select="Person" />
  </Persons>
 </xsl:template>

 <xsl:template match="Person">
  <Person>
   <properties>
    <xsl:apply-templates select="*" mode="properties" />
   </properties>
  </Person>
 </xsl:template>

 <xsl:template match="node()" mode="properties">
  <property>
   <propertyname>
    <xsl:value-of select="local-name()"/>
   </propertyname>
   <propertyvalue>
    <xsl:value-of select="."/>
   </propertyvalue>
 </property>
 </xsl:template>

</xsl:stylesheet>

结果

 <?xml version="1.0" encoding="utf-8"?>
 <Persons>
  <Person>
   <properties>
    <property>
     <propertyname>FirstName</propertyname>
     <propertyvalue>abc</propertyvalue>
    </property>
    <property>
     <propertyname>Bsn</propertyname>
     <propertyvalue>2345467</propertyvalue>
    </property>
   </properties>
  </Person>
 </Persons>
于 2011-05-06T08:02:19.357 回答