日期:2014-05-17 浏览次数:20759 次
<?xml version="1.0" encoding="UTF-8"?> <definitions name="OrderServerWS" targetNamespace="http://thirdpart.service.dnapay/" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://thirdpart.service.dnapay/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"> <types> <xsd:schema> <xsd:import namespace="http://thirdpart.service.dnapay/" schemaLocation="OrderServerWS_schema1.xsd"/> </xsd:schema> </types> <message name="transactResponse"> <part name="return" type="tns:posMessage"> </part> </message> <message name="transact"> <part name="arg0" type="tns:posMessage"> </part> </message> <portType name="IOrderServerWS"> <operation name="transact" parameterOrder="arg0"> <input message="tns:transact"> </input> <output message="tns:transactResponse"> </output> </operation> </portType> <binding name="OrderServerWSPortBinding" type="tns:IOrderServerWS"> <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/> <operation name="transact"> <soap:operation soapAction=""/> <input> <soap:body use="literal" namespace="http://thirdpart.service.dnapay/"/> </input> <output> <soap:body use="literal" namespace="http://thirdpart.service.dnapay/"/> </output> </operation> </binding> <service name="OrderServerWS"> <port name="OrderServerWSPort" binding="tns:OrderServerWSPortBinding"> <soap:address location="http://xxx.xxx.xxx.xxx:8080/OrderServerWS"/> </port> </service> </definitions>