1<wsdl:definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://schemas.nothing.com" targetNamespace="http://schemas.nothing.com"> 2 <wsdl:types> 3 <xsd:schema targetNamespace="http://schemas.nothing.com"> 4 <xsd:complexType name="book"> 5 <xsd:all> 6 <xsd:element name="base64" type="xsd:base64Binary"/> 7 <xsd:element name="string" type="xsd:string"/> 8 <xsd:element name="any" type="xsd:any"/> 9 <xsd:element name="hexbin" type="xsd:hexBinary"/> 10 <xsd:element name="nmtokens" type="xsd:NMTOKENS"/> 11 <xsd:element name="integer" type="xsd:integer"/> 12 <xsd:element name="short" type="xsd:short"/> 13 </xsd:all> 14 </xsd:complexType> 15 </xsd:schema> 16 </wsdl:types> 17 <message name="dotestRequest"> 18 <part name="dotestReturn" type="tns:book"/> 19 </message> 20 <portType name="testPortType"> 21 <operation name="dotest"> 22 <input message="tns:dotestRequest"/> 23 </operation> 24 </portType> 25 <binding name="testBinding" type="tns:testPortType"> 26 <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/> 27 <operation name="dotest"> 28 <soap:operation soapAction="http://localhost:81/test/interface.php?class=test/dotest" style="rpc"/> 29 <input> 30 <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://schemas.nothing.com"/> 31 </input> 32 </operation> 33 </binding> 34 <service name="test"> 35 <port name="testPort" binding="tns:testBinding"> 36 <soap:address location="http://localhost:81/test/interface.php?class=test"/> 37 </port> 38 </service> 39</wsdl:definitions> 40