|
|
|
@ -1,10 +1,13 @@ |
|
|
|
<?xml version="1.0" encoding="UTF-8"?> |
|
|
|
<?xml version="1.0" encoding="UTF-8"?> |
|
|
|
<wsdl:definitions xmlns:wsdl="https://schemas.xmlsoap.org/wsdl/" |
|
|
|
<wsdl:definitions |
|
|
|
|
|
|
|
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" |
|
|
|
|
|
|
|
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" |
|
|
|
xmlns:tns="https://www.springframework.org/spring-ws/wsdl" |
|
|
|
xmlns:tns="https://www.springframework.org/spring-ws/wsdl" |
|
|
|
xmlns:wsdlsoap="https://schemas.xmlsoap.org/wsdl/soap/" targetNamespace="https://www.springframework.org/spring-ws/wsdl"> |
|
|
|
targetNamespace="https://www.springframework.org/spring-ws/wsdl"> |
|
|
|
<wsdl:types> |
|
|
|
<wsdl:types> |
|
|
|
<xsd:schema xmlns:xsd="https://www.w3.org/2001/XMLSchema" |
|
|
|
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" |
|
|
|
elementFormDefault="qualified" targetNamespace="https://www.springframework.org/spring-ws/wsdl"> |
|
|
|
elementFormDefault="qualified" |
|
|
|
|
|
|
|
targetNamespace="https://www.springframework.org/spring-ws/wsdl"> |
|
|
|
<xsd:element name="request" type="xsd:string" /> |
|
|
|
<xsd:element name="request" type="xsd:string" /> |
|
|
|
<xsd:element name="response" type="xsd:string" /> |
|
|
|
<xsd:element name="response" type="xsd:string" /> |
|
|
|
</xsd:schema> |
|
|
|
</xsd:schema> |
|
|
|
@ -18,25 +21,26 @@ |
|
|
|
<wsdl:portType name="portType"> |
|
|
|
<wsdl:portType name="portType"> |
|
|
|
<wsdl:operation name="operation"> |
|
|
|
<wsdl:operation name="operation"> |
|
|
|
<wsdl:input message="tns:requestMessage" name="request" /> |
|
|
|
<wsdl:input message="tns:requestMessage" name="request" /> |
|
|
|
<wsdl:output message="tns:responseMessage" name="response" /> |
|
|
|
<wsdl:output message="tns:responseMessage" |
|
|
|
|
|
|
|
name="response" /> |
|
|
|
</wsdl:operation> |
|
|
|
</wsdl:operation> |
|
|
|
</wsdl:portType> |
|
|
|
</wsdl:portType> |
|
|
|
<wsdl:binding name="binding" type="tns:portType"> |
|
|
|
<wsdl:binding name="binding" type="tns:portType"> |
|
|
|
<wsdlsoap:binding style="document" |
|
|
|
<soap:binding style="document" |
|
|
|
transport="https://schemas.xmlsoap.org/soap/http/" /> |
|
|
|
transport="http://schemas.xmlsoap.org/soap/http" /> |
|
|
|
<wsdl:operation name="operation"> |
|
|
|
<wsdl:operation name="operation"> |
|
|
|
<wsdlsoap:operation soapAction="" /> |
|
|
|
<soap:operation soapAction="" /> |
|
|
|
<wsdl:input name="request"> |
|
|
|
<wsdl:input name="request"> |
|
|
|
<wsdlsoap:body use="literal" /> |
|
|
|
<soap:body use="literal" /> |
|
|
|
</wsdl:input> |
|
|
|
</wsdl:input> |
|
|
|
<wsdl:output name="response"> |
|
|
|
<wsdl:output name="response"> |
|
|
|
<wsdlsoap:body use="literal" /> |
|
|
|
<soap:body use="literal" /> |
|
|
|
</wsdl:output> |
|
|
|
</wsdl:output> |
|
|
|
</wsdl:operation> |
|
|
|
</wsdl:operation> |
|
|
|
</wsdl:binding> |
|
|
|
</wsdl:binding> |
|
|
|
<wsdl:service name="service"> |
|
|
|
<wsdl:service name="service"> |
|
|
|
<wsdl:port binding="tns:binding" name="port"> |
|
|
|
<wsdl:port binding="tns:binding" name="port"> |
|
|
|
<wsdlsoap:address location="/services" /> |
|
|
|
<soap:address location="/services" /> |
|
|
|
</wsdl:port> |
|
|
|
</wsdl:port> |
|
|
|
</wsdl:service> |
|
|
|
</wsdl:service> |
|
|
|
</wsdl:definitions> |
|
|
|
</wsdl:definitions> |
|
|
|
|