感谢Stack Overflow和@ michael.hor257k,我能够在XML文档中成功更新名称空间。
现在,只有一个问题 我的SAP系统无法理解XSD中的几个字段,因此添加了自己的命名空间以适应XML Schema。
这可以通过SAP解决,但我们还没有安装该软件(SPROXY)。
所以,我必须使用XSLT 1.0来实现这一点。
我原来的XML是:
<?xml version="1.0" encoding="UTF-8"?>
<n0:eCPR xmlns:prx="urn:sap.com:proxy:DV4:/1SAI/TAS1F59A417878D36573F1D:700:2013/05/24" xmlns:n0="http://www.dir.ca.gov/dlse/CPR-Prod-Test/CPR.xsd">
<n0:employees>
<n0:employee>
<n0:name id="20019768">Paul John</n0:name>
</n0:employee>
</n0:employees>
</n0:eCPR>
XSLT用于实现以下所需的输出:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:CPR="http://www.dir.ca.gov/dlse/CPR-Prod-Test/CPR.xsd">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="*">
<xsl:element name="CPR:{local-name()}">
<xsl:copy-of select="@*"/>
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
使用当前命名空间更新后,我的XML(错误位置)看起来像
<?xml version="1.0" encoding="UTF-8"?>
<CPR:eCPR xmlns:CPR="http://www.dir.ca.gov/dlse/CPR-Prod-Test/CPR.xsd">
<CPR:projectInfo>
<CPR:awardingBody xmlns:asx="http://www.sap.com/abapxml" asx:root=""/>
<CPR:contractAgencyID xmlns:asx="http://www.sap.com/abapxml" asx:root=""/>
<CPR:contractAgency/>
<CPR:projectName xmlns:asx="http://www.sap.com/abapxml" asx:root=""/>
<CPR:projectID/>
<CPR:awardingBodyID/>
<CPR:projectNum/>
<CPR:contractID/>
因此,节点awardingBody
,contractAgencyID
和Project Name
是系统无法正确转换的字段。(具有xmlns:asx
命名空间的节点)
我需要删除这些名称空间。是否可以通过XSLT。条件:仅删除名称空间为http://www.sap.com/abapxml的条目的名称空间,或者我可以提供节点名称(因为它们已修复)
理想的结构应该是什么:
<?xml version="1.0" encoding="UTF-8"?>
<CPR:eCPR xmlns:CPR="http://www.dir.ca.gov/dlse/CPR-Prod-Test/CPR.xsd">
<CPR:projectInfo>
<CPR:awardingBody/>
<CPR:contractAgencyID />
<CPR:contractAgency/>
<CPR:projectName/>
<CPR:projectID/>
<CPR:awardingBodyID/>
<CPR:projectNum/>
<CPR:contractID/>
由于
答案 0 :(得分:1)
我在猜测(!)您的原始XML实际上看起来像这样:
<强> XML 强>
<n0:eCPR xmlns:n0="http://www.dir.ca.gov/dlse/CPR-Prod-Test/CPR.xsd" xmlns:asx="http://www.sap.com/abapxml">
<n0:projectInfo>
<n0:awardingBody asx:root=""/>
<n0:contractAgencyID asx:root=""/>
<n0:contractAgency/>
<n0:projectName asx:root=""/>
<n0:projectID/>
<n0:awardingBodyID/>
<n0:projectNum/>
<n0:contractID/>
</n0:projectInfo>
</n0:eCPR>
为了获得请求的输出 - 即不复制asx:root
属性 - 您需要这样做:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:CPR="http://www.dir.ca.gov/dlse/CPR-Prod-Test/CPR.xsd">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="*">
<xsl:element name="CPR:{local-name()}">
<xsl:copy-of select="@*[not(namespace-uri()='http://www.sap.com/abapxml')]"/>
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
</xsl:stylesheet>
或许也可以:
<xsl:copy-of select="@*[not(namespace-uri())]"/>
删除任何不在no-namespace中的属性。