Advertisement
Guest User

Untitled

a guest
Mar 19th, 2014
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.30 KB | None | 0 0
  1. <?xml version="1.0" encoding ="utf-8"?>
  2. <!--
  3. (c) Ouroboros
  4. 2014-03-20
  5. Testing pregenerated WSDL for Node.js
  6.  
  7. Online WSDL 1.1 SOAP generator 0.2
  8. Julien Blitte
  9. -->
  10. <definitions name="Testing pregenerated WSDL for Node.js"
  11.     targetNamespace="com.ouroboros.experiments.soap.helloworld.wsdl"
  12.     xmlns:tns="com.ouroboros.experiments.soap.helloworld.wsdl"
  13.     xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
  14.     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  15.     xmlns:xsd1="com.ouroboros.experiments.soap.helloworld.xsd"
  16.     xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
  17.     xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
  18.     xmlns="http://schemas.xmlsoap.org/wsdl/">
  19. <!-- definition of datatypes -->
  20.     <types>
  21.     <schema targetNamespace="com.ouroboros.experiments.soap.helloworld.xsd" xmlns="http://www.w3.org/2000/10/XMLSchema">
  22.         <element name="name">
  23.         <complexType><all><element name="value" type="string" /></all></complexType>
  24.         </element>
  25.         <element name="message">
  26.         <complexType><all><element name="value" type="string" /></all></complexType>
  27.         </element>
  28.     </schema>
  29.     </types>
  30. <!-- response messages -->
  31.     <message name='returns_message'>
  32.     <part name='message' type='xsd:message'/>
  33.     </message>
  34. <!-- request messages -->
  35.     <message name='hello'>
  36.     <part name='name' type='xsd:name'/>
  37.     </message>
  38. <!-- server's services -->
  39.     <portType name='HelloWorldService'>
  40.         <operation name='hello'>
  41.         <input message='tns:hello'/>
  42.         <output message='tns:returns_message'/>
  43.         </operation>
  44.     </portType>
  45. <!-- server encoding -->
  46.     <binding name='HelloWorldService_webservices' type='tns:HelloWorldService'>
  47.     <soap:binding style='rpc' transport='http://schemas.xmlsoap.org/soap/http'/>
  48.         <operation name='hello'>
  49.         <soap:operation soapAction='urn:xmethods-delayed-quotes#hello'/>
  50.         <input><soap:body use='encoded' namespace='urn:xmethods-delayed-quotes' encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'/></input>
  51.         <output><soap:body use='encoded' namespace='urn:xmethods-delayed-quotes' encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'/></output>
  52.         </operation>
  53.     </binding>
  54. <!-- access to service provider -->
  55.     <service name='helloworld'>
  56.     <port name='helloworld_0' binding='HelloWorldService_webservices'>
  57.     <soap:address location='http://127.0.0.1:8001/helloService'/>
  58.     </port>
  59.     </service>
  60. </definitions>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement