|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: schema defnition
Hi David,
> How would I define in XSD, and element type that could contain any
> combination of XML. I need to do this for a WSDL file. Basically,
> this type will contain an entire XML doc.
You should ask XML Schema questions on xmlschema-dev@xxxxxx rather
than here. The answer for your question, though, is to use an xs:any
wildcard; something like:
<xs:element name="body">
<xs:complexType>
<xs:sequence>
<xs:any namespace="##other" />
</xs:sequence>
</xs:complexType>
</xs:element>
Cheers,
Jeni
---
Jeni Tennison
http://www.jenitennison.com/
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
|






