cs575service.wsdl
来自「通过监听端口测试接受和发送消息,基于axis的web服务」· WSDL 代码 · 共 37 行
WSDL
37 行
<?xml version="1.0" encoding="utf-8"?>
<definitions xmlns:s1="urn:MyMessages" 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:s0="urn:CS575:MyService" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" targetNamespace="urn:CS575:MyService" xmlns="http://schemas.xmlsoap.org/wsdl/">
<types>
<s:schema>
<import schemaLocation=".\ServiceMessage.xsd" namespace="urn:MyMessages" />
</s:schema>
</types>
<message name="MyServiceMethodSoapIn">
<part name="parameters" element="s1:ServiceRequest" />
</message>
<message name="MyServiceMethodSoapOut">
<part name="parameters" element="s1:ServiceResponse" />
</message>
<portType name="CS575ServiceSoap">
<operation name="MyServiceMethod">
<input message="s0:MyServiceMethodSoapIn" />
<output message="s0:MyServiceMethodSoapOut" />
</operation>
</portType>
<binding name="CS575ServiceSoap" type="s0:CS575ServiceSoap">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
<operation name="MyServiceMethod">
<soap:operation soapAction="urn:CS575:MyService/MyServiceMethod" style="document" />
<input>
<soap:body use="literal" />
</input>
<output>
<soap:body use="literal" />
</output>
</operation>
</binding>
<service name="CS575Service">
<port name="CS575ServiceSoap" binding="s0:CS575ServiceSoap">
<soap:address location="http://localhost/CS575Service/CS575Service.asmx" />
</port>
</service>
</definitions>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?