K
ksampson
I simply want to generate an XML document. I want the root element to
include an attribute like
<rootElement xmlns:xsd="http://someurl">
....
</rootElement>
---
With:
<xsl:element name="rootElement" namespace="http://someurl">
I can only produce:
<rootElement xmlns="http://someurl">
How do I get the "xsd" namespace prefix in there?
Thanks.
include an attribute like
<rootElement xmlns:xsd="http://someurl">
....
</rootElement>
---
With:
<xsl:element name="rootElement" namespace="http://someurl">
I can only produce:
<rootElement xmlns="http://someurl">
How do I get the "xsd" namespace prefix in there?
Thanks.