This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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@w3.org 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]