Annotation of embedaddon/php/ext/soap/tests/bugs/bug29061.wsdl, revision 1.1.1.1

1.1       misho       1: <definitions xmlns="http://schemas.xmlsoap.org/wsdl/"
                      2: xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:http="http://

                      3: schemas.xmlsoap.org/wsdl/http/"
                      4: xmlns:xs="http://www.w3.org/2001/XMLSchema"
                      5: xmlns:soapenc="http://schemas.xmlsoap.org/soap/e
                      6: ncoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
                      7: xmlns:y="http://new.webservice.namespace" targetNamespace="http
                      8: ://new.webservice.namespace">
                      9: <types>
                     10: <xs:schema/>
                     11: </types>
                     12: <message name="getQuoteResponse">
                     13: <part name="parameter" element="" type="xs:string"/>
                     14: </message>
                     15: <message name="getQuoteRequest">
                     16: <part name="String" element="" type="xs:string"/>
                     17: </message>
                     18: <portType name="SOAPport">
                     19: <operation name="getQuote">
                     20: <input message="y:getQuoteRequest"/>
                     21: <output message="y:getQuoteResponse"/>
                     22: </operation>
                     23: </portType>
                     24: <binding name="bindingName" type="y:SOAPport">
                     25: <soap:binding style="rpc"
                     26: transport="http://schemas.xmlsoap.org/soap/http"/>
                     27: <operation name="getQuote">
                     28: <input>
                     29: <soap:body use="literal"/>
                     30: </input>
                     31: <output>
                     32: <soap:body use="literal"/>
                     33: </output>
                     34: </operation>
                     35: </binding>
                     36: <service name="myService">
                     37: <port name="myPort" binding="y:bindingName">
                     38: <soap:address location="test://"/>
                     39: </port>
                     40: </service>
                     41: </definitions>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>