|
1 |
| -<wsdl:definitions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="https://github.com/YunaiV/SpringBoot-Labs/tree/master/lab-65/lab-65-spring-ws-demo" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:ns1="http://schemas.xmlsoap.org/soap/http" name="userService" targetNamespace="https://github.com/YunaiV/SpringBoot-Labs/tree/master/lab-65/lab-65-spring-ws-demo"> |
| 1 | +<wsdl:definitions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="https://github.com/YunaiV/SpringBoot-Labs/tree/master/lab-65/lab-65-cxf-ws-demo" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:ns1="http://schemas.xmlsoap.org/soap/http" name="userService" targetNamespace="https://github.com/YunaiV/SpringBoot-Labs/tree/master/lab-65/lab-65-cxf-ws-demo"> |
2 | 2 | <wsdl:types>
|
3 |
| - <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="https://github.com/YunaiV/SpringBoot-Labs/tree/master/lab-65/lab-65-spring-ws-demo" elementFormDefault="unqualified" targetNamespace="https://github.com/YunaiV/SpringBoot-Labs/tree/master/lab-65/lab-65-spring-ws-demo" version="1.0"> |
| 3 | + <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="https://github.com/YunaiV/SpringBoot-Labs/tree/master/lab-65/lab-65-cxf-ws-demo" elementFormDefault="unqualified" targetNamespace="https://github.com/YunaiV/SpringBoot-Labs/tree/master/lab-65/lab-65-cxf-ws-demo" version="1.0"> |
4 | 4 | <xs:element name="create" type="tns:create"/>
|
5 | 5 | <xs:element name="createResponse" type="tns:createResponse"/>
|
6 | 6 | <xs:element name="get" type="tns:get"/>
|
7 | 7 | <xs:element name="getResponse" type="tns:getResponse"/>
|
8 |
| - <xs:complexType name="get"> |
| 8 | + <xs:complexType name="create"> |
9 | 9 | <xs:sequence>
|
10 |
| - <xs:element minOccurs="0" name="arg0" type="tns:userGetRequest"/> |
| 10 | + <xs:element minOccurs="0" name="arg0" type="tns:userCreateRequest"/> |
11 | 11 | </xs:sequence>
|
12 | 12 | </xs:complexType>
|
13 |
| - <xs:complexType name="userGetRequest"> |
| 13 | + <xs:complexType name="userCreateRequest"> |
14 | 14 | <xs:sequence>
|
15 |
| - <xs:element minOccurs="0" name="id" type="xs:int"/> |
| 15 | + <xs:element minOccurs="0" name="gender" type="xs:int"/> |
| 16 | + <xs:element minOccurs="0" name="name" type="xs:string"/> |
16 | 17 | </xs:sequence>
|
17 | 18 | </xs:complexType>
|
18 |
| - <xs:complexType name="getResponse"> |
| 19 | + <xs:complexType name="createResponse"> |
19 | 20 | <xs:sequence>
|
20 |
| - <xs:element minOccurs="0" name="return" type="tns:userGetResponse"/> |
| 21 | + <xs:element minOccurs="0" name="return" type="tns:userCreateResponse"/> |
21 | 22 | </xs:sequence>
|
22 | 23 | </xs:complexType>
|
23 |
| - <xs:complexType name="userGetResponse"> |
| 24 | + <xs:complexType name="userCreateResponse"> |
24 | 25 | <xs:sequence>
|
25 |
| - <xs:element minOccurs="0" name="gender" type="xs:int"/> |
26 | 26 | <xs:element minOccurs="0" name="id" type="xs:int"/>
|
27 |
| - <xs:element minOccurs="0" name="name" type="xs:string"/> |
28 | 27 | </xs:sequence>
|
29 | 28 | </xs:complexType>
|
30 |
| - <xs:complexType name="create"> |
| 29 | + <xs:complexType name="get"> |
31 | 30 | <xs:sequence>
|
32 |
| - <xs:element minOccurs="0" name="arg0" type="tns:userCreateRequest"/> |
| 31 | + <xs:element minOccurs="0" name="arg0" type="tns:userGetRequest"/> |
33 | 32 | </xs:sequence>
|
34 | 33 | </xs:complexType>
|
35 |
| - <xs:complexType name="userCreateRequest"> |
| 34 | + <xs:complexType name="userGetRequest"> |
36 | 35 | <xs:sequence>
|
37 |
| - <xs:element minOccurs="0" name="gender" type="xs:int"/> |
38 |
| - <xs:element minOccurs="0" name="name" type="xs:string"/> |
| 36 | + <xs:element minOccurs="0" name="id" type="xs:int"/> |
39 | 37 | </xs:sequence>
|
40 | 38 | </xs:complexType>
|
41 |
| - <xs:complexType name="createResponse"> |
| 39 | + <xs:complexType name="getResponse"> |
42 | 40 | <xs:sequence>
|
43 |
| - <xs:element minOccurs="0" name="return" type="tns:userCreateResponse"/> |
| 41 | + <xs:element minOccurs="0" name="return" type="tns:userGetResponse"/> |
44 | 42 | </xs:sequence>
|
45 | 43 | </xs:complexType>
|
46 |
| - <xs:complexType name="userCreateResponse"> |
| 44 | + <xs:complexType name="userGetResponse"> |
47 | 45 | <xs:sequence>
|
| 46 | + <xs:element minOccurs="0" name="gender" type="xs:int"/> |
48 | 47 | <xs:element minOccurs="0" name="id" type="xs:int"/>
|
| 48 | + <xs:element minOccurs="0" name="name" type="xs:string"/> |
49 | 49 | </xs:sequence>
|
50 | 50 | </xs:complexType>
|
51 | 51 | </xs:schema>
|
52 | 52 | </wsdl:types>
|
53 |
| - <wsdl:message name="getResponse"> |
54 |
| - <wsdl:part element="tns:getResponse" name="parameters"> </wsdl:part> |
55 |
| - </wsdl:message> |
56 |
| - <wsdl:message name="get"> |
57 |
| - <wsdl:part element="tns:get" name="parameters"> </wsdl:part> |
58 |
| - </wsdl:message> |
59 | 53 | <wsdl:message name="create">
|
60 | 54 | <wsdl:part element="tns:create" name="parameters"> </wsdl:part>
|
61 | 55 | </wsdl:message>
|
62 | 56 | <wsdl:message name="createResponse">
|
63 | 57 | <wsdl:part element="tns:createResponse" name="parameters"> </wsdl:part>
|
64 | 58 | </wsdl:message>
|
| 59 | + <wsdl:message name="get"> |
| 60 | + <wsdl:part element="tns:get" name="parameters"> </wsdl:part> |
| 61 | + </wsdl:message> |
| 62 | + <wsdl:message name="getResponse"> |
| 63 | + <wsdl:part element="tns:getResponse" name="parameters"> </wsdl:part> |
| 64 | + </wsdl:message> |
65 | 65 | <wsdl:portType name="UserService">
|
66 |
| - <wsdl:operation name="get"> |
67 |
| - <wsdl:input message="tns:get" name="get"> </wsdl:input> |
68 |
| - <wsdl:output message="tns:getResponse" name="getResponse"> </wsdl:output> |
69 |
| - </wsdl:operation> |
70 | 66 | <wsdl:operation name="create">
|
71 | 67 | <wsdl:input message="tns:create" name="create"> </wsdl:input>
|
72 | 68 | <wsdl:output message="tns:createResponse" name="createResponse"> </wsdl:output>
|
73 | 69 | </wsdl:operation>
|
| 70 | + <wsdl:operation name="get"> |
| 71 | + <wsdl:input message="tns:get" name="get"> </wsdl:input> |
| 72 | + <wsdl:output message="tns:getResponse" name="getResponse"> </wsdl:output> |
| 73 | + </wsdl:operation> |
74 | 74 | </wsdl:portType>
|
75 | 75 | <wsdl:binding name="userServiceSoapBinding" type="tns:UserService">
|
76 | 76 | <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
|
77 |
| - <wsdl:operation name="get"> |
| 77 | + <wsdl:operation name="create"> |
78 | 78 | <soap:operation soapAction="" style="document"/>
|
79 |
| - <wsdl:input name="get"> |
| 79 | + <wsdl:input name="create"> |
80 | 80 | <soap:body use="literal"/>
|
81 | 81 | </wsdl:input>
|
82 |
| - <wsdl:output name="getResponse"> |
| 82 | + <wsdl:output name="createResponse"> |
83 | 83 | <soap:body use="literal"/>
|
84 | 84 | </wsdl:output>
|
85 | 85 | </wsdl:operation>
|
86 |
| - <wsdl:operation name="create"> |
| 86 | + <wsdl:operation name="get"> |
87 | 87 | <soap:operation soapAction="" style="document"/>
|
88 |
| - <wsdl:input name="create"> |
| 88 | + <wsdl:input name="get"> |
89 | 89 | <soap:body use="literal"/>
|
90 | 90 | </wsdl:input>
|
91 |
| - <wsdl:output name="createResponse"> |
| 91 | + <wsdl:output name="getResponse"> |
92 | 92 | <soap:body use="literal"/>
|
93 | 93 | </wsdl:output>
|
94 | 94 | </wsdl:operation>
|
95 | 95 | </wsdl:binding>
|
96 | 96 | <wsdl:service name="userService">
|
97 | 97 | <wsdl:port binding="tns:userServiceSoapBinding" name="UserServiceImplPort">
|
98 |
| - <soap:address location="http://127.0.0.1:8080/ws/user"/> |
| 98 | + <soap:address location="http://127.0.0.1:9090/ws/user"/> |
99 | 99 | </wsdl:port>
|
100 | 100 | </wsdl:service>
|
101 | 101 | </wsdl:definitions>
|
0 commit comments