blob: 88d62b991bcdb5e42caa184427831a2f23756114 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:test="http://www.example.org/test/"
targetNamespace="http://www.example.org/test/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:txsd="http://www.example.org/testxsd"
xmlns:txsd2="http://www.example.org/testxsd2">
<wsdl:types>
<schema xmlns="http://www.w3.org/2001/XMLSchema">
<import namespace="http://www.example.org/testxsd2"
schemaLocation="../../2a/test.xsd" />
<import namespace="http://www.example.org/testxsd"
schemaLocation="../../../test.xsd" />
</schema>
</wsdl:types>
<wsdl:message name="NewOperationRequest">
<wsdl:part name="input" element="txsd:TestString"></wsdl:part>
</wsdl:message>
<wsdl:message name="NewOperationResponse">
<wsdl:part name="output" element="txsd2:TestString2"></wsdl:part>
</wsdl:message>
<wsdl:portType name="TestPortType">
<wsdl:operation name="NewOperation">
<wsdl:input message="test:NewOperationRequest"></wsdl:input>
<wsdl:output message="test:NewOperationResponse"></wsdl:output>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="NewBinding" type="test:TestPortType">
<soap:binding style="document"
transport="http://schemas.xmlsoap.org/soap/http" />
<wsdl:operation name="NewOperation">
<soap:operation
soapAction="http://www.example.org/test/NewOperation" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
</wsdl:definitions>