1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions name="Wes" targetNamespace="http://www.fff.com/Interfaces/Wes"
xmlns:tns="http://www.fff.com/Interfaces/Wes"
xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:s="http://www.w3.org/2001/XMLSchema"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
<wsdl:types>
<schema xmlns="http://www.w3.org/2001/XMLSchema">
<import namespace="http://www.fff.com/Interfaces/Wes" schemaLocation="scrappingModel.xsd" />
</schema>
</wsdl:types>
<wsdl:message name="getData" />
<wsdl:message name="getDataResponse">
<wsdl:part name="getDataResult" element="ScrappedObject"/>
</wsdl:message>
<wsdl:message name="getDataXpath">
<wsdl:part name="getDataXpathResult" type="string"/>
</wsdl:message>
<wsdl:message name="getDataXpathResponse">
<wsdl:part name="getDataResult" element="ScrappedObject"/>
</wsdl:message>
<wsdl:portType name="WesSoap">
<wsdl:operation name="getData">
<wsdl:input message="tns:getData" />
<wsdl:output message="tns:getDataResponse" />
</wsdl:operation>
<wsdl:operation name="getDataXpath">
<wsdl:input message="tns:getDataXpath" />
<wsdl:output message="tns:getDataXpathResponse" />
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="WesSoapBinding" type="tns:WesSoap">
<wsdlsoap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
<wsdl:operation name="getData">
<wsdlsoap:operation soapAction="" />
<wsdl:output name="getDataResponse">
<wsdlsoap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="getDataXpath">
<wsdlsoap:operation soapAction="" />
<wsdl:output name="getDataXpathResponse">
<wsdlsoap:body use="literal" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="WesSoapService">
<wsdl:port name="WesSoapPort"
binding="tns:WesSoapBinding">
<wsdlsoap:address
location="http://localhost:9000/myappli/services/wes-1.0" />
</wsdl:port>
</wsdl:service>
</wsdl:definitions> |
Partager