Dago_O

RESTwsCliente.wsdl

Oct 18th, 2012
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.86 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <wsdl:definitions
  4.         xmlns="http://schemas.xmlsoap.org/wsdl/"
  5.        xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
  6.        xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
  7.        xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
  8.        xmlns:tns="http://cliente.tiendaonline.restws"
  9.        xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  10.        xmlns:odex="http://www.apache.org/ode/type/extension/http"
  11.        targetNamespace="http://cliente.tiendaonline.restws">
  12.  
  13. <wsdl:types>
  14.     <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://cliente.tiendaonline.restws">
  15.         <xsd:element name="cid" type="xsd:string"/>
  16.         <xsd:element name="clienteREP" type="xsd:string"/>
  17.     </xsd:schema>
  18. </wsdl:types>
  19.  
  20. <wsdl:message name="infoCliente">
  21.         <wsdl:part name="cid" element="tns:cid"/>
  22. </wsdl:message>
  23. <wsdl:message name="infoClienteResponse">
  24.         <wsdl:part name="clienteREP" element="tns:clienteREP"/>
  25. </wsdl:message>
  26.  
  27.  
  28. <wsdl:portType name="RWSCliente_portType">
  29.     <wsdl:operation name="doGET">
  30.             <wsdl:input message="tns:infoCliente"/>
  31.             <wsdl:output message="tns:infoClienteResponse"/>
  32.     </wsdl:operation>
  33. </wsdl:portType>
  34.  
  35. <wsdl:binding name="RWSCliente_Binding" type="tns:RWSCliente_portType">
  36.     <wsdl:operation name="doGET">
  37.            <http:operation location=""/>
  38.            <odex:binding verb="GET"/>
  39.            <wsdl:input>
  40.                <http:urlReplacement/>
  41.            </wsdl:input>
  42.            <wsdl:output>
  43.                <mime:content type="text/xml" part="article"/>
  44.            </wsdl:output>
  45.     </wsdl:operation>
  46. </wsdl:binding>
  47.  
  48. <service name="RWSCliente_Service">
  49.     <wsdl:port name="RWSCliente_Port" binding="tns:RWSCliente_Binding">
  50.         <http:address location="http://localhost:8182/TiendaOnline/clientes/{cid}"/>
  51.     </wsdl:port>
  52. </service>
  53.  
  54. </wsdl:definitions>
Add Comment
Please, Sign In to add comment