[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] How to prevent xmlns attribute in generated output?


Subject: Re: [xsl] How to prevent xmlns attribute in generated output?
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 16 May 2005 23:15:41 +0100

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
________________________________________________________________________


Current Thread
Keywords