我有这个XML代码:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<ns:getDocumentMessage xmlns:ns="http://ecm.thehartford.com/dms/xsd/2009-06">
<ecm_cmd_doc xmlns="http://ecm.thehartford.com/ecm_cmd_doc/2009-06" xmlns:xs="http://www.w3.org/2001/XMLSchema-instance" xs:schemaLocation="http://ecm.thehartford.com/ecm_cmd_doc/2009-06 ecm_cmd_doc.xsd">
<ecm_application_name>gbdedm</ecm_application_name>
<ecm_operation mode="synchronous" name="view"/>
<ecm_ret_code flag="true" object_id="">/ecm_dev/ecm_dev01/gbd/get/12345678911.pdf</ecm_ret_code>
<ecm_ret_code_filename flag="false" object_id=""/>
</ecm_cmd_doc>
</ns:getDocumentMessage>
</soapenv:Body>
</soapenv:Envelope>
我想转换成这个:
<getDocumentMessage>
<ecm_cmd_doc>
<ecm_application_name>gbdedm</ecm_application_name>
<ecm_operation/>
<ecm_ret_code>/ecm_dev/ecm_dev01/gbd/get/12345678911.pdf</ecm_ret_code>
<flag>true</flag>
<ecm_ret_code_filename/>
</ecm_cmd_doc>
</getDocumentMessage>
即。我想只将flag属性转换为元素。 我试过这个XSLT代码:
<xsl:stylesheet version="1.0" xmlns:ns="http://www.w3.org/1999/XSL/Transform" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" exclude-result-prefixes="soapenv ns">
<xsl:strip-space elements="*"/>
<xsl:output omit-xml-declaration="yes" method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="*">
<xsl:element name="{local-name()}">
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
<xsl:template match="@flag">
<xsl:element name="{name(.)}">
<xsl:value-of select="."/>
</xsl:element>
</xsl:template>
<xsl:template match="soapenv:*">
<xsl:apply-templates select="node()"/>
</xsl:template>
</xsl:stylesheet>
但它不起作用。 Flag属性未转换。 非常感谢任何帮助!
答案 0 :(得分:0)
首先,样式表中的xmlns:ns
值是错误的。其次,ecm_cmd_doc
的父ecm_ret_code
中有一个默认命名空间。你还必须在样式表中声明它。请参阅下面的样式表:
<xsl:stylesheet version="1.0"
xmlns:ns="http://ecm.thehartford.com/dms/xsd/2009-06"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ecm="http://ecm.thehartford.com/ecm_cmd_doc/2009-06"
exclude-result-prefixes="soapenv ns">
<xsl:strip-space elements="*"/>
<xsl:output omit-xml-declaration="yes" method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="*">
<xsl:element name="{local-name()}">
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
<xsl:template match="ecm:ecm_ret_code">
<xsl:element name="{name(.)}">
<xsl:value-of select="."/>
</xsl:element>
<xsl:element name="{name(@flag)}">
<xsl:value-of select="@flag"/>
</xsl:element>
</xsl:template>
<xsl:template match="soapenv:*">
<xsl:apply-templates select="node()"/>
</xsl:template>
</xsl:stylesheet>