Subject: Re: schema defnition
From: Jeni Tennison <jeni@xxxxxxxxxxxxxxxx>
Date: Mon, 29 Apr 2002 09:32:48 +0100
|
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
|