0

WSO2 ESB で xml ノード名を変更したい。私は次のxmlを持っています

<MessageStatus xmlns="foo.example.org">
<ErrorCode>$1</ErrorCode>
<Message>$2</Message>
</MessageStatus>

そしてこれであってほしい

<ItemName xmlns="foo.example.org">
<ErrorCode>$1</ErrorCode>
<Message>$2</Message>
</ItemName>

プロパティとして ItemNames を使用。つまり、それらは動的に変化します。ESB メディエーターを使用してこの変更を行う方法はありますか?

4

1 に答える 1

5

最後に、XSLT メディエーターを使用してこれを行いました。私のメディエーターの構成は次のようになります。

<xslt xmlns="http://ws.apache.org/ns/synapse" key="conf:/users/UsersXSLT.xslt">
   <property xmlns:ns="http://org.apache.synapse/xsd" name="TagName" expression="concat(get-property('OperationName'),'Response')"/>
</xslt>

XSLT 変換で使用できるプロパティを定義しました。私のXSLTは次のとおりです。

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:fn="http://www.w3.org/2005/02/xpath-functions"
xmlns="http://www.jdnasir.ac.ir/EMI/UserProxy/"
exclude-result-prefixes="fn">
<xsl:output method="xml" omit-xml-declaration="yes" indent="yes"/>

<xsl:template match="/">
<xsl:apply-templates />
</xsl:template>
<xsl:param name="TagName"/>
<xsl:template match="MessageStatus">
<xsl:element name="{$TagName}" xmlns="http://www.jdnasir.ac.ir/EMI/UserProxy/">
<xsl:for-each select="/MessageStatus/*">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:for-each>
</xsl:element>
</xsl:template>
</xsl:stylesheet>

この xslt のトリッキーな部分は、その<xsl:element name="{$TagName}"部分でした。

これが他の人に役立つことを願っています。

于 2013-07-22T09:04:20.970 に答える