Annotation of embedaddon/php/ext/soap/tests/bugs/bug32941.wsdl, revision 1.1
1.1 ! misho 1: <?xml version="1.0" encoding="UTF-8"?>
! 2: <wsdl:definitions targetNamespace="http://212.24.157.117:8080/axis/services/echo" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="http://212.24.157.117:8080/axis/services/echo" xmlns:intf="http://212.24.157.117:8080/axis/services/echo" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns1="urn:service.EchoService" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
! 3: <!--WSDL created by Apache Axis version: 1.2RC3
! 4: Built on Feb 28, 2005 (10:15:14 EST)-->
! 5: <wsdl:types>
! 6: <schema targetNamespace="urn:service.EchoService" xmlns="http://www.w3.org/2001/XMLSchema">
! 7: <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
! 8: <complexType name="EchoServiceException">
! 9: <sequence>
! 10: <element name="intParameter" type="xsd:int"/>
! 11: <element name="parameter" nillable="true" type="soapenc:string"/>
! 12: </sequence>
! 13: </complexType>
! 14: <complexType name="Person">
! 15: <sequence>
! 16: <element name="name" nillable="true" type="soapenc:string"/>
! 17: <element name="surname" nillable="true" type="soapenc:string"/>
! 18: </sequence>
! 19: </complexType>
! 20: </schema>
! 21: </wsdl:types>
! 22:
! 23: <wsdl:message name="echoStringResponse">
! 24:
! 25: <wsdl:part name="echoStringReturn" type="soapenc:string"/>
! 26:
! 27: </wsdl:message>
! 28:
! 29: <wsdl:message name="EchoServiceException">
! 30:
! 31: <wsdl:part name="EchoServiceException" type="tns1:EchoServiceException"/>
! 32:
! 33: </wsdl:message>
! 34:
! 35: <wsdl:message name="echoStringRequest">
! 36:
! 37: <wsdl:part name="e" type="xsd:string"/>
! 38:
! 39: </wsdl:message>
! 40:
! 41: <wsdl:message name="echoPersonResponse">
! 42:
! 43: <wsdl:part name="echoPersonReturn" type="tns1:Person"/>
! 44:
! 45: </wsdl:message>
! 46:
! 47: <wsdl:message name="echoPersonRequest">
! 48:
! 49: <wsdl:part name="p" type="tns1:Person"/>
! 50:
! 51: </wsdl:message>
! 52:
! 53: <wsdl:portType name="EchoService">
! 54:
! 55: <wsdl:operation name="echoString" parameterOrder="e">
! 56:
! 57: <wsdl:input message="impl:echoStringRequest" name="echoStringRequest"/>
! 58:
! 59: <wsdl:output message="impl:echoStringResponse" name="echoStringResponse"/>
! 60:
! 61: <wsdl:fault message="impl:EchoServiceException" name="EchoServiceException"/>
! 62:
! 63: </wsdl:operation>
! 64:
! 65: <wsdl:operation name="echoPerson" parameterOrder="p">
! 66:
! 67: <wsdl:input message="impl:echoPersonRequest" name="echoPersonRequest"/>
! 68:
! 69: <wsdl:output message="impl:echoPersonResponse" name="echoPersonResponse"/>
! 70:
! 71: <wsdl:fault message="impl:EchoServiceException" name="EchoServiceException"/>
! 72:
! 73: </wsdl:operation>
! 74:
! 75: </wsdl:portType>
! 76:
! 77: <wsdl:binding name="echoSoapBinding" type="impl:EchoService">
! 78:
! 79: <wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
! 80:
! 81: <wsdl:operation name="echoString">
! 82:
! 83: <wsdlsoap:operation soapAction=""/>
! 84:
! 85: <wsdl:input name="echoStringRequest">
! 86:
! 87: <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:service.EchoService" use="encoded"/>
! 88:
! 89: </wsdl:input>
! 90:
! 91: <wsdl:output name="echoStringResponse">
! 92:
! 93: <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://212.24.157.117:8080/axis/services/echo" use="encoded"/>
! 94:
! 95: </wsdl:output>
! 96:
! 97: <wsdl:fault name="EchoServiceException">
! 98:
! 99: <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="EchoServiceException" namespace="urn:service.EchoService" use="encoded"/>
! 100:
! 101: </wsdl:fault>
! 102:
! 103: </wsdl:operation>
! 104:
! 105: <wsdl:operation name="echoPerson">
! 106:
! 107: <wsdlsoap:operation soapAction=""/>
! 108:
! 109: <wsdl:input name="echoPersonRequest">
! 110:
! 111: <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://service" use="encoded"/>
! 112:
! 113: </wsdl:input>
! 114:
! 115: <wsdl:output name="echoPersonResponse">
! 116:
! 117: <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://212.24.157.117:8080/axis/services/echo" use="encoded"/>
! 118:
! 119: </wsdl:output>
! 120:
! 121: <wsdl:fault name="EchoServiceException">
! 122:
! 123: <wsdlsoap:fault encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" name="EchoServiceException" namespace="http://212.24.157.117:8080/axis/services/echo" use="encoded"/>
! 124:
! 125: </wsdl:fault>
! 126:
! 127: </wsdl:operation>
! 128:
! 129: </wsdl:binding>
! 130:
! 131: <wsdl:service name="EchoServiceService">
! 132:
! 133: <wsdl:port binding="impl:echoSoapBinding" name="echo">
! 134:
! 135: <wsdlsoap:address location="http://212.24.157.117:8080/axis/services/echo"/>
! 136:
! 137: </wsdl:port>
! 138:
! 139: </wsdl:service>
! 140:
! 141: </wsdl:definitions>
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>