⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sixdegrees.wsdl

📁 asp.net技术内幕的书配源码
💻 WSDL
字号:
<?xml version="1.0"?>
<definitions 
  xmlns:s="http://www.w3.org/2001/XMLSchema" 
  xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" 
  xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" 
  xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" 
  xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" 
  xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" 
  xmlns:s0="http://yourdomain.com/webservices" 
  targetNamespace="http://yourdomain.com/webservices" 
  xmlns="http://schemas.xmlsoap.org/wsdl/">

  <types/>

  <message name="GetLinksHttpGetIn" />
  <message name="GetLinksHttpGetOut" />
  <portType name="SixDegreesHttpGet">
    <operation name="GetLinks">
      <input message="s0:GetLinksHttpGetIn"/>
      <output message="s0:GetLinksHttpGetOut"/>
    </operation>
  </portType>
  <binding name="SixDegreesHttpGet" type="s0:SixDegreesHttpGet">
    <http:binding verb="GET"/>
    <operation name="GetLinks">
      <http:operation location="/"/>
      <input>
        <http:urlEncoded/>
      </input>
      <output>
         <tm:text>
          <tm:match name='Links' 
            pattern='"(http://.*?)["|/]' 
            repeats="10" />
         </tm:text>
      </output>
    </operation>
  </binding>
  <service name="SixDegrees">
    <port name="SixDegreesHttpGet" binding="s0:SixDegreesHttpGet">
      <http:address location="http://localhost" />
    </port>
  </service>
</definitions>

  

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -