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

1.1       misho       1: <?xml version='1.0' encoding='UTF-8'?>
                      2: <definitions
                      3:     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                      4:     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                      5:     xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
                      6:     xmlns:si="http://soapinterop.org/xsd"
                      7:     xmlns:tns="http://testuri.org"
                      8:     xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
                      9:     xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
                     10:     xmlns="http://schemas.xmlsoap.org/wsdl/"
                     11:     targetNamespace="http://testuri.org">
                     12: 
                     13:   <types>
                     14:     <xsd:schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://testuri.org">
                     15:       <xsd:complexType name="ItemArray">
                     16:         <xsd:complexContent>
                     17:           <xsd:extension base="SOAP-ENC:Array">
                     18:             <xsd:attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="tns:Item[]"/>
                     19:           </xsd:extension>
                     20:         </xsd:complexContent>
                     21:       </xsd:complexType>
                     22:       <xsd:complexType name="Item">
                     23:         <xsd:sequence>
                     24:           <xsd:element name="text" type="string"/>
                     25:         </xsd:sequence>
                     26:       </xsd:complexType>
                     27:     </xsd:schema>
                     28:   </types>
                     29: 
                     30:   <message name="getItems"/>
                     31:   <message name="getItemsResponse">
                     32:     <part name="getItemsReturn" type="tns:ItemArray"/>
                     33:   </message>
                     34: 
                     35:   <portType name="TestServicePortType">
                     36:     <operation name="getItems">
                     37:       <input message="tns:getItems"/>
                     38:       <output message="tns:getItemsResponse"/>
                     39:     </operation>
                     40:   </portType>
                     41: 
                     42:   <binding name="TestServiceBinding" type="tns:TestServicePortType">
                     43:     <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
                     44:     <operation name="getItems">
                     45:       <soap:operation soapAction="http://testuri.orgTestServiceAction"/>
                     46:         <input/>
                     47:         <output>
                     48:           <soap:body namespace="http://testuri.org" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
                     49:         </output>
                     50:     </operation>
                     51:   </binding>
                     52: 
                     53:   <service name="TestServiceService">
                     54:     <port name="TestServicePort" binding="tns:TestServiceBinding">
                     55:       <soap:address location="http://linuxsrv.home/~dmitry/soap/soap_server.php"/>
                     56:     </port>
                     57:   </service>
                     58: 
                     59: </definitions>

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