SOAP_Interop
[ class tree: SOAP_Interop ] [ index: SOAP_Interop ] [ all elements ]

Source for file emptysa.wsdl.php

Documentation is available at emptysa.wsdl.php

  1. <?php
  2. header('Content-Type: text/xml');
  3. echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"?>
  4. <definitions name="SoapInterop" targetNamespace="http://soapinterop/" 
  5.         xmlns:wsdlns="http://soapinterop/" 
  6.         xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" 
  7.         xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
  8.         xmlns="http://schemas.xmlsoap.org/wsdl/">
  9.     <types/>
  10.     <message name="echoStringRequest">
  11.         <part name="a" type="xsd:string"/>
  12.     </message>
  13.     <message name="echoStringResponse">
  14.         <part name="Result" type="xsd:string"/>
  15.     </message>
  16.     <portType name="SoapInteropEmptySAPortType">
  17.         <operation name="echoString" parameterOrder="a">
  18.             <input message="wsdlns:echoStringRequest"/>
  19.             <output message="wsdlns:echoStringResponse"/>
  20.         </operation>
  21.     </portType>
  22.     <binding name="SoapInteropEmptySABinding" type="wsdlns:SoapInteropEmptySAPortType">
  23.         <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
  24.         <operation name="echoString">
  25.             <soap:operation soapAction=""/>
  26.             <input>
  27.                 <soap:body use="encoded" namespace="http://soapinterop/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  28.             </input>
  29.             <output>
  30.                 <soap:body use="encoded" namespace="http://soapinterop/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
  31.             </output>
  32.         </operation>
  33.     </binding>
  34.     <service name="EmptySA">
  35.         <port name="SoapInteropEmptySAPort" binding="wsdlns:SoapInteropEmptySABinding">
  36.             <soap:address location="http://<?php echo $_SERVER["SERVER_NAME"].':'.$_SERVER["SERVER_PORT"];?>/soap_interop/server_Round3GroupDEmptySA.php"/>
  37.         </port>
  38.     </service>
  39. </definitions>

Documentation generated on Mon, 11 Mar 2019 15:06:25 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.