Advertisement
armonge

Untitled

May 23rd, 2012
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.13 KB | None | 0 0
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <definitions xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://corp.eurobate.com/public/Subscriptions/webservice/claroWebService" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="">
  3. <types>
  4. <xsd:schema targetNamespace=""
  5. >
  6.  <xsd:import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
  7.  <xsd:import namespace="http://schemas.xmlsoap.org/wsdl/" />
  8.  <xsd:complexType name="ArrayOfString">
  9.    <xsd:element name="st_item" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/>
  10.  </xsd:complexType>
  11.  <xsd:complexType name="ArrayOfArray">
  12.    <xsd:element name="arr_item" type="tns:ArrayOfString" minOccurs="0" maxOccurs="unbounded"/>
  13.  
  14.  </xsd:complexType>
  15. </xsd:schema>
  16. </types>
  17. <message name="consultaServiciosRequest">
  18.   <part name="movil" type="xsd:string" />
  19.   <part name="pass" type="xsd:string" /></message>
  20. <message name="consultaServiciosResponse">
  21.   <part name="return" type="tns:ArrayOfArray" /></message>
  22.  
  23. <portType name="ClaroWebServicePortType">
  24.   <operation name="consultaServicios">
  25.     <input message="tns:consultaServiciosRequest"/>
  26.     <output message="tns:consultaServiciosResponse"/>
  27.   </operation>
  28. </portType>
  29. <binding name="ClaroWebServiceBinding" type="tns:ClaroWebServicePortType">
  30.   <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
  31.   <operation name="consultaServicios">
  32.     <soap:operation soapAction="" style="rpc"/>
  33.     <input><soap:body use="encoded" namespace="" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/></input>
  34.     <output><soap:body use="encoded" namespace="" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/></output>
  35.   </operation>
  36. </binding>
  37. <service name="ClaroWebService">
  38.   <port name="ClaroWebServicePort" binding="tns:ClaroWebServiceBinding">
  39.     <soap:address location=""/>
  40.   </port>
  41. </service>
  42. </definitions>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement