Files
lazarus-ccr/wst/trunk/tests/test_suite/files/case_sensitive2.wsdl
inoussa fc1c449cd2 xsd's "choice" construct parsing + tests
parser is case sensitive  b default now, + tests

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1942 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2011-09-14 02:31:02 +00:00

33 lines
921 B
XML

<?xml version="1.0"?>
<definitions name="wst_test"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:tns="urn:wst-test"
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:simpleType name="SampleType">
<xsd:restriction base="xsd:string"/>
</xsd:simpleType>
<xsd:simpleType name="SAMPLETYPE">
<xsd:restriction base="xsd:string"/>
</xsd:simpleType>
<xsd:complexType name="TClassSampleType">
<xsd:sequence>
<xsd:element name="Field1" type="n:SampleType" />
<xsd:element name="Field2" type="n:SAMPLETYPE" />
</xsd:sequence>
</xsd:complexType>
</xsd:schema>
</types>
</definitions>