[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

Subject: Re: How to prevent xmlns attribute in generated output?
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 16 May 2005 23:15:41 +0100
xmlns attribute 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
________________________________________________________________________

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.