summaryrefslogtreecommitdiffstats
path: root/sandbox/rfeng/samples.M2/creditws-axis2/resources/CreditCheckService.wsdl
blob: 2b488cca41f8cb72a0853a690bb0246e5c76abea (plain)
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
<wsdl:definitions xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:tns="http://credit" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://credit">
    <wsdl:types>
        <xsd:schema xmlns="http://www.w3.org/2001/XMLSchema" attributeFormDefault="unqualified"
            elementFormDefault="qualified" targetNamespace="http://credit">
            <xsd:element name="getCreditScore">
                <xsd:complexType>
                    <xsd:sequence>
                        <xsd:element name="ssn" type="string" />
                    </xsd:sequence>
                </xsd:complexType>
            </xsd:element>
            <xsd:element name="getCreditScoreResponse">
                <xsd:complexType>
                    <xsd:sequence>
                        <xsd:element name="score" type="int" />
                    </xsd:sequence>
                </xsd:complexType>
            </xsd:element>
        </xsd:schema>
    </wsdl:types>
    <wsdl:message name="getCreditScoreRequest">
        <wsdl:part name="part1" element="tns:getCreditScore" />
    </wsdl:message>
    <wsdl:message name="getCreditScoreResponse">
        <wsdl:part name="part1" element="tns:getCreditScoreResponse" />
    </wsdl:message>
    <wsdl:portType name="CreditCheckServicePortType">
        <wsdl:operation name="getCreditScore">
            <wsdl:input xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" message="tns:getCreditScoreRequest"
                wsaw:Action="http://credit/CreditCheck/getCreditScoreRequest" />
            <wsdl:output xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" message="tns:getCreditScoreResponse"
                wsaw:Action="http://credit/CreditCheck/getCreditScoreResponse" />
        </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="CreditCheckServiceSOAP11Binding" type="tns:CreditCheckServicePortType">
        <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
        <wsdl:operation name="getCreditScore">
            <soap:operation soapAction="http://credit/CreditCheck/getCreditScoreRequest" 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="CreditCheckServiceSOAP12Binding" type="tns:CreditCheckServicePortType">
        <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
        <wsdl:operation name="getCreditScore">
            <soap12:operation soapAction="http://credit/CreditCheck/getCreditScoreRequest" style="document" />
            <wsdl:input>
                <soap12:body use="literal" />
            </wsdl:input>
            <wsdl:output>
                <soap12:body use="literal" />
            </wsdl:output>
        </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="CreditCheckService">
        <wsdl:port name="CreditCheckServiceSOAP11port_http" binding="tns:CreditCheckServiceSOAP11Binding">
            <soap:address location="http://localhost:8080/credit/services/CreditCheckWebService" />
        </wsdl:port>
        <wsdl:port name="CreditCheckServiceSOAP12port_http" binding="tns:CreditCheckServiceSOAP12Binding">
            <soap12:address location="http://localhost:8080/credit/services/CreditCheckWebService" />
        </wsdl:port>
    </wsdl:service>
</wsdl:definitions>