Advertisement
Guest User

Samuel Jamieson

a guest
Nov 29th, 2009
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.73 KB | None | 0 0
  1.  <?xml version="1.0" encoding="utf-8" ?>
  2.     <wsdl:definitions xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://tempuri.org/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" targetNamespace="http://tempuri.org/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
  3.   <wsdl:types>
  4.   <s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/">
  5.   <s:element name="Call">
  6.   <s:element name="CallResponse">
  7.   <s:complexType>
  8.   <s:sequence>
  9.   <s:element minOccurs="0" maxOccurs="1" name="CallResult" type="s:string" />
  10.   </s:sequence>
  11.   </s:complexType>
  12.   </s:element>
  13.   <s:element name="string" nillable="true" type="s:string" />
  14.   </s:schema>
  15.   </wsdl:types>
  16.   <wsdl:message name="CallSoapIn">
  17.   <wsdl:message name="CallSoapOut">
  18.   <wsdl:part name="parameters" element="tns:CallResponse" />
  19.   </wsdl:message>
  20.   <wsdl:message name="CallHttpGetIn">
  21.   <wsdl:part name="xmlString" type="s:string" />
  22.   </wsdl:message>
  23.   <wsdl:message name="CallHttpGetOut">
  24.   <wsdl:part name="Body" element="tns:string" />
  25.   </wsdl:message>
  26.   <wsdl:message name="CallHttpPostIn">
  27.   <wsdl:part name="xmlString" type="s:string" />
  28.   </wsdl:message>
  29.   <wsdl:message name="CallHttpPostOut">
  30.   <wsdl:part name="Body" element="tns:string" />
  31.   </wsdl:message>
  32.   <wsdl:portType name="CallRequestSoap">
  33.   <wsdl:operation name="Call">
  34.   <wsdl:input message="tns:CallSoapIn" />
  35.   <wsdl:output message="tns:CallSoapOut" />
  36.   </wsdl:operation>
  37.   </wsdl:portType>
  38.   <wsdl:portType name="CallRequestHttpGet">
  39.   <wsdl:operation name="Call">
  40.   </wsdl:portType>
  41.   <wsdl:portType name="CallRequestHttpPost">
  42.   <wsdl:operation name="Call">
  43.   <wsdl:input message="tns:CallHttpPostIn" />
  44.   <wsdl:output message="tns:CallHttpPostOut" />
  45.   </wsdl:operation>
  46.   </wsdl:portType>
  47.   <wsdl:binding name="CallRequestSoap" type="tns:CallRequestSoap">
  48.   <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
  49.   <wsdl:operation name="Call">
  50.   <soap:operation soapAction="http://tempuri.org/Call" style="document" />
  51.  <wsdl:input>
  52.   <soap:body use="literal" />
  53.   </wsdl:input>
  54. <wsdl:output>
  55.   <soap:body use="literal" />
  56.   </wsdl:output>
  57.   </wsdl:operation>
  58.   </wsdl:binding>
  59.  <wsdl:binding name="CallRequestHttpGet" type="tns:CallRequestHttpGet">
  60.   <http:binding verb="GET" />
  61.  <wsdl:operation name="Call">
  62.   <http:operation location="/Call" />
  63.  <wsdl:input>
  64.   <http:urlEncoded />
  65.   </wsdl:input>
  66.   <wsdl:output>
  67.   <mime:mimeXml part="Body" />
  68.   </wsdl:output>
  69.   </wsdl:operation>
  70.   </wsdl:binding>
  71.  <wsdl:binding name="CallRequestHttpPost" type="tns:CallRequestHttpPost">
  72.   <http:binding verb="POST" />
  73.  <wsdl:operation name="Call">
  74.   <http:operation location="/Call" />
  75.  <wsdl:input>
  76.   <mime:content type="application/x-www-form-urlencoded" />
  77.   </wsdl:input>
  78.  <wsdl:output>
  79.   <mime:mimeXml part="Body" />
  80.   </wsdl:output>
  81.   </wsdl:operation>
  82.   </wsdl:binding>
  83.   <wsdl:service name="CallRequest">
  84.   <documentation xmlns="http://schemas.xmlsoap.org/wsdl/" />
  85.  <wsdl:port name="CallRequestSoap" binding="tns:CallRequestSoap">
  86.   <soap:address location="http://localhost/ClickToCall/CallRequest.asmx" />
  87.   </wsdl:port>
  88.   <wsdl:port name="CallRequestHttpGet" binding="tns:CallRequestHttpGet">
  89.   <http:address location="http://localhost/ClickToCall/CallRequest.asmx" />
  90.   </wsdl:port>
  91.  <wsdl:port name="CallRequestHttpPost" binding="tns:CallRequestHttpPost">
  92.   <http:address location="http://localhost/ClickToCall/CallRequest.asmx" />
  93.   </wsdl:port>
  94.   </wsdl:service>
  95.   </wsdl:definitions>
  96.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement