0
点赞
收藏
分享

微信扫一扫

wsdl配置文件

<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions targetNamespace="http://Impl.ws.jh_infoPortal.ui.oa.web.business.lysoft.com" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="http://Impl.ws.jh_infoPortal.ui.oa.web.business.lysoft.com" xmlns:intf="http://Impl.ws.jh_infoPortal.ui.oa.web.business.lysoft.com" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<!--WSDL created by Apache Axis version: 1.4
Built on Apr 22, 2006 (06:55:48 PDT)-->
<wsdl:types>
<schema elementFormDefault="qualified" targetNamespace="http://Impl.ws.jh_infoPortal.ui.oa.web.business.lysoft.com" xmlns="http://www.w3.org/2001/XMLSchema">
<!--方法名-->
<element name="getTodoNumForBpm">
<complexType>
<sequence><!--参数 返回值类型-->
<element name="userKey" type="xsd:string"/>
</sequence>
</complexType>
</element>
</schema>
</wsdl:types>
<!--响应-->
<wsdl:message name="getTodoNumForBpmResponse">
<wsdl:part element="impl:getTodoNumForBpmResponse" name="parameters">
</wsdl:part>
</wsdl:message>
<!--请求-->
<wsdl:message name="getTodoNumForBpmRequest">
<wsdl:part element="impl:getTodoNumForBpm" name="parameters">
</wsdl:part>
</wsdl:message>
<!--方法的实现类-->
<wsdl:portType name="wsInfoPortalImpl">
<wsdl:operation name="getTodoNumForBpm">
<wsdl:input message="impl:getTodoNumForBpmRequest" name="getTodoNumForBpmRequest">
</wsdl:input>
<wsdl:output message="impl:getTodoNumForBpmResponse" name="getTodoNumForBpmResponse">
</wsdl:output>
</wsdl:operation>
</wsdl:portType>
<!--引入方法和请求响应的方式-->
<wsdl:binding name="wsInfoPortalImplSoapBinding" type="impl:wsInfoPortalImpl">
<wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="getTodoNumForBpm">
<wsdlsoap:operation soapAction=""/>
<wsdl:input name="getTodoNumForBpmRequest">
<wsdlsoap:body use="literal"/>
</wsdl:input>
<wsdl:output name="getTodoNumForBpmResponse">
<wsdlsoap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<!--webserivce接口实现类-->
<wsdl:service name="wsInfoPortalImplService">
<wsdl:port binding="impl:wsInfoPortalImplSoapBinding" name="wsInfoPortalImpl">
<!--通过这个location的地址后面加上?wsdl就可以服务端接口-->
<wsdlsoap:address location="http://localhost:8090/myWebService/services/wsInfoPortalImpl"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>

举报

相关推荐

0 条评论