summaryrefslogtreecommitdiffstats
path: root/sandbox/rfeng/samples.M2/creditws-axis2/resources/CreditCheckService.wsdl
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/rfeng/samples.M2/creditws-axis2/resources/CreditCheckService.wsdl')
-rw-r--r--sandbox/rfeng/samples.M2/creditws-axis2/resources/CreditCheckService.wsdl71
1 files changed, 71 insertions, 0 deletions
diff --git a/sandbox/rfeng/samples.M2/creditws-axis2/resources/CreditCheckService.wsdl b/sandbox/rfeng/samples.M2/creditws-axis2/resources/CreditCheckService.wsdl
new file mode 100644
index 0000000000..2b488cca41
--- /dev/null
+++ b/sandbox/rfeng/samples.M2/creditws-axis2/resources/CreditCheckService.wsdl
@@ -0,0 +1,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> \ No newline at end of file