[Home] [By Thread] [By Date] [Recent Entries]
Scott Sauyet wrote:
The root <definitions> tag in the original WSDL has If you use xsl:copy then namespace nodes are copied through too when an element node is copied. To avoid that use a template like this <xsl:template match="*">
<xsl:element name="{name()}" namespace="{namespace-uri()}">
<xsl:apply-templates select="@* | node()"/>
</xsl:element>
</xsl:template>for element nodes that you want to copy without its namespaces nodes. -- Martin Honnen http://JavaScript.FAQTs.com/
|

Cart



