|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: How to prevent xmlns attribute in generated output
in your stylesheet you have
<xsl:stylesheet version = '1.0' xmlns="http://schemas.xmlsoap.org/wsdl/"
so sop is the default namespace
<xsl:element name="complexType">
works like
<complexType>
and generates an element in teh default namespace, hence soap. You want
to generate it in the schema namespace. You can locally use xmlns=.. to
switch the default namespace back to schema or use the namespace
attribute to specify schema, as you already do for the schema element:
<xsl:element name="schema" namespace=
"http://www.w3.org/2001/XMLSchema">
If you don't want to keep switching default namespace you could use a
prefix such as xsd: for the schema elements that you already have
declared in the stylesheet, so you could just use
<xsd:schema>
..
<xsd:complexType>
..
etc
David
________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________
|
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








