Return to bug42692.wsdl CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / soap / tests / bugs |
1.1 misho 1: <?xml version="1.0" encoding="UTF-8"?> 2: <definitions name="netDB" 3: targetNamespace="urn:netDB" 4: xmlns:typens="urn:netDB" 5: xmlns:xsd="http://www.w3.org/2001/XMLSchema" 6: xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" 7: xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" 8: xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 9: xmlns="http://schemas.xmlsoap.org/wsdl/"> 10: <message name="checkAuthIN"> 11: <part name="peid" type="xsd:integer" /> 12: <part name="auth" type="xsd:string" /> 13: </message> 14: <message name="checkAuthOUT"> 15: <part name="peidx" type="xsd:integer" /> 16: </message> 17: <portType name="netDB"> 18: <operation name="checkAuth"> 19: <input message="typens:checkAuthIN" /> 20: <output message="typens:checkAuthOUT" /> 21: </operation> 22: </portType> 23: <binding name="netDB" type="typens:netDB"> 24: <soap:binding type="rpc" transport="http://schemas.xmlsoap.org/soap/http" /> 25: <operation name="checkAuth"> 26: <soap:operation soapAction="urn:checkAuth" /> 27: <input> 28: <soap:body use="encoded" namespace="urn:netDB" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" /> 29: </input> 30: <output> 31: <soap:body use="encoded" namespace="urn:netDB" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" /> 32: </output> 33: </operation> 34: </binding> 35: <service name="netDB"> 36: <port name="netDBPort" binding="typens:netDB"> 37: <soap:address location="http://netdb.alphawest.com.au/xml/soap/server.php"/> 38: </port> 39: </service> 40: </definitions>