xsl-list
[Top] [All Lists]

Re: How to prevent xmlns attribute in generated output?

2005-05-16 15:15:41

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
________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>