|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<wsdl:definitions name="foo" targetNamespace="http://example.com/foo/wsdl" |
| 3 | + xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" |
| 4 | + xmlns:ns0="http://example.com/foo/wsdl" |
| 5 | + xmlns:xsd="http://www.w3.org/2001/XMLSchema" |
| 6 | + xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" |
| 7 | + xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"> |
| 8 | + <wsdl:types> |
| 9 | + <xsd:schema> |
| 10 | + <xsd:import namespace="http://example.com/bar/xsd" schemaLocation="bar.xsd"/> |
| 11 | + <xsd:import namespace="http://example.com/bar1/xsd" schemaLocation="bar1.xsd"/> |
| 12 | + </xsd:schema> |
| 13 | + </wsdl:types> |
| 14 | + <wsdl:message name="ErrorInfo"> |
| 15 | + <wsdl:part xmlns:xsns="http://example.com/bar1/xsd" name="ErrorInfo" element="xsns:ErrorInformation"> |
| 16 | + </wsdl:part> |
| 17 | + </wsdl:message> |
| 18 | + <wsdl:message name="Request1"> |
| 19 | + <wsdl:part xmlns:xsns="http://example.com/bar/xsd" name="Request1" element="xsns:Request1"> |
| 20 | + </wsdl:part> |
| 21 | + </wsdl:message> |
| 22 | + <wsdl:message name="Response1"> |
| 23 | + <wsdl:part xmlns:xsns="http://example.com/bar/xsd" name="Response1" element="xsns:Response1"> |
| 24 | + </wsdl:part> |
| 25 | + </wsdl:message> |
| 26 | + <wsdl:portType name="foo_PortType"> |
| 27 | + <wsdl:operation name="fooOp"> |
| 28 | + <wsdl:input name="Request1" message="ns0:Request1"> |
| 29 | + </wsdl:input> |
| 30 | + <wsdl:output name="Response1" message="ns0:Response1"> |
| 31 | + </wsdl:output> |
| 32 | + <wsdl:fault name="ErrorResponseType" message="ns0:ErrorInfo"> |
| 33 | + </wsdl:fault> |
| 34 | + </wsdl:operation> |
| 35 | + </wsdl:portType> |
| 36 | + <wsdl:binding name="foo_Binding" type="ns0:foo_PortType"> |
| 37 | + <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/> |
| 38 | + <wsdl:operation name="fooOp"> |
| 39 | + <soap:operation style="document"/> |
| 40 | + <wsdl:input name="Request1"> |
| 41 | + <soap:body use="literal"/> |
| 42 | + </wsdl:input> |
| 43 | + <wsdl:output name="Response1"> |
| 44 | + <soap:body use="literal"/> |
| 45 | + </wsdl:output> |
| 46 | + <wsdl:fault name="ErrorResponseType"> |
| 47 | + <soap:fault name="ErrorResponseType" use="literal"/> |
| 48 | + </wsdl:fault> |
| 49 | + </wsdl:operation> |
| 50 | + </wsdl:binding> |
| 51 | + <wsdl:service name="foo"> |
| 52 | + <wsdl:port name="test_Port" binding="ns0:foo_Binding"> |
| 53 | + <soap:address location="http://localhost:8888/mockfoo_Binding"/> |
| 54 | + </wsdl:port> |
| 55 | + </wsdl:service> |
| 56 | +</wsdl:definitions> |
0 commit comments