Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 10th, 2012  |  syntax: None  |  size: 4.33 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Adding a PHP web reference in a .NET application
  2. The HTML document does not contain Web service discovery information.
  3.        
  4. <?xml version="1.0" encoding="utf-8"?>
  5.  
  6. <definitions xmlns="http://schemas.xmlsoap.org/wsdl/"
  7.  
  8.     xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s="http://www.w3.org/2001/XMLSchema"
  9.  
  10.     xmlns:tns="http://leopard-ext.its-dispatch.com/ws/request.php" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
  11.  
  12.     xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" targetNamespace="http://leopard-ext.its-dispatch.com/ws/request.php">
  13.  
  14.     <types>
  15.  
  16.         <s:schema elementFormDefault="qualified" targetNamespace="http://leopard-ext.its-dispatch.com/ws/request.php">
  17.  
  18.             <s:element name="fetchImport">
  19.  
  20.                 <s:complexType>
  21.  
  22.                     <s:sequence>
  23.  
  24.                         <s:element minOccurs="1" maxOccurs="1" name="accessKey" type="s:string" />
  25.  
  26.                         <s:element minOccurs="1" maxOccurs="1" name="requestURL" type="s:string" />
  27.  
  28.                         <s:element minOccurs="1" maxOccurs="1" name="requestFunction" type="s:string" />
  29.  
  30.                         <s:element minOccurs="1" maxOccurs="1" name="requestType" type="s:string" />
  31.  
  32.                         <s:element minOccurs="1" maxOccurs="1" name="ID" type="s:string" />
  33.  
  34.                     </s:sequence>
  35.  
  36.                 </s:complexType>
  37.  
  38.             </s:element>
  39.  
  40.             <s:element name="fetchImportResponse">
  41.  
  42.                 <s:complexType>
  43.  
  44.                     <s:sequence>
  45.  
  46.                         <s:element minOccurs="1" maxOccurs="1" name="fetchImport" type="s:string" />
  47.  
  48.                     </s:sequence>
  49.  
  50.                 </s:complexType>
  51.  
  52.             </s:element>
  53.  
  54.             <s:element name="getLoads">
  55.  
  56.                 <s:complexType>
  57.  
  58.                     <s:sequence>
  59.  
  60.                         <s:element minOccurs="0" maxOccurs="1" name="accessKey" type="s:string" />
  61.  
  62.                     </s:sequence>
  63.  
  64.                 </s:complexType>
  65.  
  66.             </s:element>
  67.  
  68.             <s:element name="getLoadsResponse">
  69.  
  70.                 <s:complexType>
  71.  
  72.                     <s:sequence>
  73.  
  74.                         <s:element minOccurs="1" maxOccurs="1" name="getLoads" type="s:string" />
  75.  
  76.                     </s:sequence>
  77.  
  78.                 </s:complexType>
  79.  
  80.             </s:element>
  81.  
  82.         </s:schema>
  83.  
  84.     </types>
  85.  
  86.     <message name="fetchImportSoapIn">
  87.  
  88.         <part name="parameters" element="tns:fetchImport" />
  89.  
  90.     </message>
  91.  
  92.     <message name="fetchImportSoapOut">
  93.  
  94.         <part name="parameters" element="tns:fetchImportResponse" />
  95.  
  96.     </message>
  97.  
  98.     <message name="getLoadsSoapIn">
  99.  
  100.         <part name="parameters" element="tns:getLoads" />
  101.  
  102.     </message>
  103.  
  104.     <message name="getLoadsSoapOut">
  105.  
  106.         <part name="parameters" element="tns:getLoadsResponse" />
  107.  
  108.     </message>
  109.  
  110.     <portType name="ITSDispatchServiceSoap">
  111.  
  112.         <operation name="fetchImport">
  113.  
  114.             <input message="tns:fetchImportSoapIn" />
  115.  
  116.             <output message="tns:fetchImportSoapOut" />
  117.  
  118.         </operation>
  119.  
  120.         <operation name="getLoads">
  121.  
  122.             <input message="tns:getLoadsSoapIn" />
  123.  
  124.             <output message="tns:getLoadsSoapOut" />
  125.  
  126.         </operation>
  127.  
  128.     </portType>
  129.  
  130.     <binding name="ITSDispatchServiceSoap" type="tns:ITSDispatchServiceSoap">
  131.  
  132.         <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
  133.  
  134.         <operation name="fetchImport">
  135.  
  136.             <soap:operation soapAction="http://leopard-ext.its-dispatch.com/ws/request.php/fetchImport" style="document" />
  137.  
  138.             <input>
  139.  
  140.                 <soap:body use="literal" />
  141.  
  142.             </input>
  143.  
  144.             <output>
  145.  
  146.                 <soap:body use="literal" />
  147.  
  148.             </output>
  149.  
  150.         </operation>
  151.  
  152.         <operation name="getLoads">
  153.  
  154.             <soap:operation soapAction="http://leopard-ext.its-dispatch.com/ws/request.php/getLoads" style="document" />
  155.  
  156.             <input>
  157.  
  158.                 <soap:body use="literal" />
  159.  
  160.             </input>
  161.  
  162.             <output>
  163.  
  164.                 <soap:body use="literal" />
  165.  
  166.             </output>
  167.  
  168.         </operation>
  169.  
  170.     </binding>
  171.  
  172.     <service name="ITSDispatchService">
  173.  
  174.         <port name="ITSDispatchServiceSoap" binding="tns:ITSDispatchServiceSoap">
  175.  
  176.             <soap:address location="http://leopard-ext.its-dispatch.com/ws/request.php" />
  177.  
  178.         </port>
  179.  
  180.     </service>
  181.  
  182. </definitions>