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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
   |  
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:axis2="http://ws.apache.org/axis2" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" targetNamespace="http://ws.apache.org/axis2">
    <wsdl:documentation>GAPservice</wsdl:documentation>
    <wsdl:types/>
    <wsdl:message name="addRequest"/>
    <wsdl:message name="addResponse"/>
    <wsdl:message name="alignSequencesRequest"/>
    <wsdl:message name="alignSequencesResponse"/>
    <wsdl:portType name="GAPservicePortType">
        <wsdl:operation name="add">
            <wsdl:input message="axis2:addRequest" wsaw:Action="urn:add"/>
            <wsdl:output message="axis2:addResponse" wsaw:Action="urn:addResponse"/>
        </wsdl:operation>
        <wsdl:operation name="alignSequences">
            <wsdl:input message="axis2:alignSequencesRequest" wsaw:Action="urn:alignSequences"/>
            <wsdl:output message="axis2:alignSequencesResponse" wsaw:Action="urn:alignSequencesResponse"/>
        </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="GAPserviceSoap11Binding" type="axis2:GAPservicePortType">
        <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
        <wsdl:operation name="add">
            <soap:operation soapAction="" style="document"/>
            <wsdl:input>
                <soap:body use="literal"/>
            </wsdl:input>
            <wsdl:output>
                <soap:body use="literal"/>
            </wsdl:output>
        </wsdl:operation>
        <wsdl:operation name="alignSequences">
            <soap:operation soapAction="" style="document"/>
            <wsdl:input>
                <soap:body use="literal"/>
            </wsdl:input>
            <wsdl:output>
                <soap:body use="literal"/>
            </wsdl:output>
        </wsdl:operation>
    </wsdl:binding>
    <wsdl:binding name="GAPserviceSoap12Binding" type="axis2:GAPservicePortType">
        <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
        <wsdl:operation name="add">
            <soap12:operation soapAction="" style="document"/>
            <wsdl:input>
                <soap12:body use="literal"/>
            </wsdl:input>
            <wsdl:output>
                <soap12:body use="literal"/>
            </wsdl:output>
        </wsdl:operation>
        <wsdl:operation name="alignSequences">
            <soap12:operation soapAction="" style="document"/>
            <wsdl:input>
                <soap12:body use="literal"/>
            </wsdl:input>
            <wsdl:output>
                <soap12:body use="literal"/>
            </wsdl:output>
        </wsdl:operation>
    </wsdl:binding>
    <wsdl:binding name="GAPserviceHttpBinding" type="axis2:GAPservicePortType">
        <http:binding verb="POST"/>
        <wsdl:operation name="add">
            <http:operation location="GAPservice/add"/>
            <wsdl:input>
                <mime:content type="text/xml" part="add"/>
            </wsdl:input>
            <wsdl:output>
                <mime:content type="text/xml" part="add"/>
            </wsdl:output>
        </wsdl:operation>
        <wsdl:operation name="alignSequences">
            <http:operation location="GAPservice/alignSequences"/>
            <wsdl:input>
                <mime:content type="text/xml" part="alignSequences"/>
            </wsdl:input>
            <wsdl:output>
                <mime:content type="text/xml" part="alignSequences"/>
            </wsdl:output>
        </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="GAPservice">
        <wsdl:port name="GAPserviceHttpSoap11Endpoint" binding="axis2:GAPserviceSoap11Binding">
            <soap:address location="http://192.168.199.49:8080/axis2/services/GAPservice.GAPserviceHttpSoap11Endpoint"/>
        </wsdl:port>
        <wsdl:port name="GAPserviceHttpSoap12Endpoint" binding="axis2:GAPserviceSoap12Binding">
            <soap12:address location="http://192.168.199.49:8080/axis2/services/GAPservice.GAPserviceHttpSoap12Endpoint"/>
        </wsdl:port>
        <wsdl:port name="GAPserviceHttpEndpoint" binding="axis2:GAPserviceHttpBinding">
            <http:address location="http://192.168.199.49:8080/axis2/services/GAPservice.GAPserviceHttpEndpoint"/>
        </wsdl:port>
    </wsdl:service>
</wsdl:definitions> | 
Partager