Advertisement
JeanBritz

Wizz khalifa

Feb 27th, 2015
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.15 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <definitions name="ServiceService"
  3.     targetNamespace="http://forumservice/"
  4.     xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
  5.     xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
  6.     xmlns="http://schemas.xmlsoap.org/wsdl/"
  7.     xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
  8.     xmlns:tns="http://forumservice/"
  9.     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  10.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  11.     xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
  12.     <types>
  13.         <xsd:schema targetNamespace="http://forumservice/">
  14.             <xsd:import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
  15.             <xsd:import namespace="http://schemas.xmlsoap.org/wsdl/"/>
  16.         </xsd:schema>
  17.     </types>
  18.    
  19.     <message name="login">
  20.         <part name="parameters" type="xsd:string"/>
  21.     </message>
  22.    
  23.     <message name="loginResponse">
  24.         <part name="parameters" type="xsd:string"/>
  25.     </message>
  26.    
  27.     <message name="soapRequest">
  28.         <part name="parameters" type="xsd:string"/>
  29.     </message>
  30.    
  31.     <message name="soapRequestResponse">
  32.         <part name="parameters" type="xsd:string"/>
  33.     </message>
  34.    
  35.     <portType name="Service">
  36.         <operation name="login">
  37.             <input message="tns:login"/>
  38.             <output message="tns:loginResponse"/>
  39.         </operation>
  40.        
  41.         <operation name="soapRequest">
  42.             <input message="tns:soapRequest"/>
  43.             <output message="tns:soapRequestResponse"/>
  44.         </operation>
  45.     </portType>
  46.    
  47.     <binding name="ServicePortBinding" type="tns:Service">
  48.         <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
  49.        
  50.         <operation name="login">
  51.             <soap:operation soapAction=""/>
  52.             <input>
  53.                 <soap:body use="literal"/>
  54.             </input>
  55.             <output>
  56.                 <soap:body use="literal"/>
  57.             </output>
  58.         </operation>
  59.        
  60.         <operation name="soapRequest">
  61.             <soap:operation soapAction=""/>
  62.             <input>
  63.                 <soap:body use="literal"/>
  64.             </input>
  65.             <output>
  66.                 <soap:body use="literal"/>
  67.             </output>
  68.         </operation>
  69.     </binding>
  70.     <service name="Service">
  71.         <port name="ServicePort" binding="tns:ServicePortBinding">
  72.             <soap:address location="http://localhost:8080/ForumService/Service"/>
  73.         </port>
  74.     </service>
  75. </definitions>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement