Annotation of embedaddon/php/ext/soap/tests/bugs/bug50762.wsdl, revision 1.1
1.1 ! misho 1: <?xml version="1.0" encoding="UTF-8" standalone="no"?>
! 2: <wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://sova.pronto.ru/" xmlns:xsd1="http://sova.pronto.ru/schema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="sova" targetNamespace="http://sova.pronto.ru/">
! 3: <wsdl:message name="authToken">
! 4: <wsdl:part name="authToken" type="xsd:string"/>
! 5: </wsdl:message>
! 6: <wsdl:message name="message">
! 7: <wsdl:part name="param" type="xsd:string"/>
! 8: </wsdl:message>
! 9:
! 10: <wsdl:portType name="sova">
! 11: <wsdl:operation name="testHeader">
! 12: <wsdl:input message="tns:message"/>
! 13: <wsdl:output message="tns:message"/>
! 14: </wsdl:operation>
! 15: </wsdl:portType>
! 16: <wsdl:binding name="sovaSOAP" type="tns:sova">
! 17: <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
! 18:
! 19: <wsdl:operation name="testHeader">
! 20: <soap:operation soapAction="http://sova.pronto.ru/testHeader"/>
! 21: <wsdl:input>
! 22: <soap:body namespace="http://sova.pronto.ru/" use="literal"/>
! 23: <soap:header use="literal" part="authToken" message="tns:authToken" wsdl:required="true"/>
! 24: </wsdl:input>
! 25: <wsdl:output>
! 26: <soap:body namespace="http://sova.pronto.ru/" use="literal"/>
! 27: </wsdl:output>
! 28: </wsdl:operation>
! 29:
! 30: </wsdl:binding>
! 31: <wsdl:service name="sova">
! 32: <wsdl:port binding="tns:sovaSOAP" name="sovaSOAP">
! 33: <soap:address location="http://sova.mephius.prontosoft.by/sova/soaptest.php"/>
! 34: </wsdl:port>
! 35: </wsdl:service>
! 36: </wsdl:definitions>
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>