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
| <?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:tns="http://www.amr57.com"
xmlns:hr="http://www.InterSoluce.com/w"
xmlns="http://www.InterSoluce.com/namespace/EXP/0/0"
targetNamespace="http://www.amr57.com">
<wsdl:types>
<xs:schema>
<xs:import namespace="http://www.InterSoluce.com/w" schemaLocation="style_w.xsd"/>
</xs:schema>
</wsdl:types>
<wsdl:message name="w1_servicesRequest">
<wsdl:part name="request" element="hr:donneesReq"/>
</wsdl:message>
<wsdl:message name="w1_servicesResponse">
<wsdl:part name="response" element="hr:donneesRep"/>
</wsdl:message>
<wsdl:portType name="WpsPortType">
<wsdl:operation name="w1_services">
<wsdl:input message="tns:w1_servicesRequest"/>
<wsdl:output message="tns:w1_servicesResponse"/>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="WpsBinding" type="tns:wPortType">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="w1_services">
<wsdl:input>
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output>
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="w">
<wsdl:port name="wPort" binding="tns:wBinding">
<soap:address location="http://localhost:6666/w/services/wPort"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions> |