Annotation of embedaddon/php/ext/soap/tests/bugs/bug34643.wsdl, revision 1.1

1.1     ! misho       1: <?xml version='1.0' encoding='UTF-8'?>
        !             2: <definitions name="wsdl" targetNamespace="urn:wsdl"
        !             3: xmlns:typens="urn:wsdl" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
        !             4: xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
        !             5: xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
        !             6: xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
        !             7: xmlns="http://schemas.xmlsoap.org/wsdl/">
        !             8:        <types>
        !             9:                <xsd:schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:wsdl">
        !            10:                        <xsd:element name="opt" type="xsd:string" default="zzz" />
        !            11:                </xsd:schema>
        !            12:        </types>
        !            13:        <message name="get_it">
        !            14:                <part name="opt" element="typens:opt"/>
        !            15:        </message>
        !            16:        <message name="get_itResponse">
        !            17:                <part name="return" type="xsd:string"/>
        !            18:        </message>
        !            19:        <portType name="fpPortType">
        !            20:                <operation name="get_it">
        !            21:                        <input message="typens:get_it"/>
        !            22:                        <output message="typens:get_itResponse"/>
        !            23:                </operation>
        !            24:        </portType>
        !            25:        <binding name="fpBinding" type="typens:fpPortType">
        !            26:                <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
        !            27:                <operation name="get_it">
        !            28:                        <soap:operation soapAction="urn:fpAction"/>
        !            29:                        <input>
        !            30:                                <soap:body namespace="urn:wsdl" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
        !            31:                        </input>
        !            32:                        <output>
        !            33:                                <soap:body namespace="urn:wsdl" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
        !            34:                        </output>
        !            35:                </operation>
        !            36:        </binding>
        !            37:        <service name="wsdlService">
        !            38:                <port name="fpPort" binding="typens:fpBinding">
        !            39:                        <soap:address location="**********"/>
        !            40:                </port>
        !            41:        </service>
        !            42: </definitions>

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