diff options
Diffstat (limited to 'src/main/resources/wsdl/zkopf/zuserech.wsdl')
-rw-r--r-- | src/main/resources/wsdl/zkopf/zuserech.wsdl | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/src/main/resources/wsdl/zkopf/zuserech.wsdl b/src/main/resources/wsdl/zkopf/zuserech.wsdl new file mode 100644 index 0000000..1036dc7 --- /dev/null +++ b/src/main/resources/wsdl/zkopf/zuserech.wsdl @@ -0,0 +1,70 @@ +<?xml version="1.0" encoding="UTF-8"?> +<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" + xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" + xmlns:tns="http://reference.e-government.gv.at/namespaces/zustellung/rech/wsdl" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns:rech="http://reference.e-government.gv.at/namespaces/zustellung/rech" + name="rech" + targetNamespace="http://reference.e-government.gv.at/namespaces/zustellung/rech/wsdl"> + + <import location="zuserech.xsd" namespace="http://reference.e-government.gv.at/namespaces/zustellung/rech"/> + + <message name="ClearingRequest"> + <part name="ClearingRequest" element="rech:ClearingRequest"/> + </message> + <message name="ClearingResponse"> + <part name="ClearingResponse" element="rech:ClearingResponse"/> + </message> + <message name="ValidateTokenRequest"> + <part name="ValidateTokenRequest" element="rech:ValidateTokenRequest"/> + </message> + <message name="ValidateTokenResponse"> + <part name="ValidateTokenResponse" element="rech:ValidateTokenResponse"/> + </message> + <portType name="ClearingPortType"> + <operation name="ClearingOperation"> + <input message="tns:ClearingRequest"/> + <output message="tns:ClearingResponse"/> + </operation> + </portType> + <portType name="ValidateTokenPortType"> + <operation name="ValidateTokenOperation"> + <input message="tns:ValidateTokenRequest"/> + <output message="tns:ValidateTokenResponse"/> + </operation> + </portType> + <binding name="ClearingBinding" type="tns:ClearingPortType"> + <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/> + <operation name="ClearingOperation"> + <soap:operation soapAction="tns:ClearingPortType#ClearingOperation" style="document"/> + <input> + <soap:body use="literal"/> + </input> + <output> + <soap:body use="literal"/> + </output> + </operation> + </binding> + <binding name="ValidateTokenBinding" type="tns:ValidateTokenPortType"> + <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/> + <operation name="ValidateTokenOperation"> + <soap:operation soapAction="tns:ValidateTokenPortType#ValidateTokenOperation" style="document"/> + <input> + <soap:body use="literal"/> + </input> + <output> + <soap:body use="literal"/> + </output> + </operation> + </binding> + <service name="ClearingService"> + <port name="ClearingPort" binding="tns:ClearingBinding"> + <soap:address location="http://localhost:8080/rech/ClearingService"/> + </port> + </service> + <service name="ValidateTokenService"> + <port name="ValidateTokenPort" binding="tns:ValidateTokenBinding"> + <soap:address location="http://localhost:8080/rech/ValidateTokenService"/> + </port> + </service> +</definitions> |