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

📄 template.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="MessageNameHttpGetIn" />
  <message name="MessageNameHttpGetOut" />

  <portType name="PortTypeNameHttpGet">
    <operation name="OperationName">
      <input message="s0:MessageNameHttpGetIn"/>
      <output message="s0:MessageNameHttpGetOut"/>
    </operation>
  </portType>

  <binding name="BindingNameHttpGet" 
    type="s0:PortTypeNameHttpGet">
    <http:binding verb="GET"/>
    <operation name="OperationName">
      <http:operation location="/"/>
      <input>
        <http:urlEncoded/>
      </input>
      <output>
         <tm:text>
          <tm:match 
              name='PropertyName' 
              pattern='pattern' />
         </tm:text>
      </output>
    </operation>
  </binding>
  <service name="ServiceName">
    <port 
      name="PortTypeNameHttpGet" 
      binding="s0:BindingNameHttpGet">
      <http:address location="Url" />
    </port>
  </service>
</definitions>

  

⌨️ 快捷键说明

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