Files
lazarus-ccr/wst/trunk/tests/test_suite/files/att_inherited_maxbound.wsdl

26 lines
903 B
XML
Raw Normal View History

<?xml version="1.0"?>
<definitions name="wst_test"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:tns="library1"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
targetNamespace="urn:wst-test">
<types>
<xsd:schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:wst-test">
<xsd:element name="TSampleType">
<xsd:complexType>
<xsd:choice minOccurs="1" maxOccurs="unbounded">
<xsd:element name="StringElement" type="xsd:string" />
<xsd:element name="IntElement" type="xsd:int" />
</xsd:choice>
<xsd:attribute name="StringAtt" type="xsd:string" use="required" />
<xsd:attribute name="IntAtt" type="xsd:int" use="optional" />
</xsd:complexType>
</xsd:element>
</xsd:schema>
</types>
</definitions>