|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: name space troubles
> I would like to have the resulting style sheet with the > following openning: > > <xsl:stylesheet > xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version > ="1.0" xmlns="http://www.deio.net/cbamessage"> > > > so in the stylesheet which process the XSD I have the following > > <?xml version="1.0"?> > <xsl:stylesheet version="1.0" xmlns:xsl > ="http://www.w3.org/1999/XSL/Transform" xmlns:xsd > ="http://www.w3.org/2001/XMLSchema" > xmlns="http://www.deio.net/cbamessage"> > > ... > > <xsl:element name = "xsl:stylesheet"> > <xsl:attribute name = "version">1.0</xsl:attribute> > > ... > > > the result is > > <xsl:stylesheet > xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version ="1.0"> > > ... > <CancellationReasonContainer > xmlns="http://www.deio.net/cbamessage"> > ... > xsl:element creates an element in the result tree; the only namespace nodes it creates are (a) any namespaces inherited from ancestor elements in the result tree (there are none in your case), (b) namespaces required by the element name and attribute names of the new element. If you want an additional namespace declaration you can either (a) create it explicitly after calling xsl:element by using xsl:copy (or, in XSLT 2.0, xsl:namespace), or (b) not use xsl:element, but use a literal result element instead. Note that you can't necessarily control what prefixes are used in the result document, only the actual namespace URIs. Michael Kay XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








