diff options
Diffstat (limited to 'src/main/resources/wsdl/mms/mms.wsdl')
-rw-r--r-- | src/main/resources/wsdl/mms/mms.wsdl | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/src/main/resources/wsdl/mms/mms.wsdl b/src/main/resources/wsdl/mms/mms.wsdl new file mode 100644 index 0000000..70dcf96 --- /dev/null +++ b/src/main/resources/wsdl/mms/mms.wsdl @@ -0,0 +1,43 @@ +<?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/namespace/mandates/mms/1.0/wsdl" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns:mms="http://reference.e-government.gv.at/namespace/mandates/mms/1.0/xsd" + name="mms" + targetNamespace="http://reference.e-government.gv.at/namespace/mandates/mms/1.0/wsdl"> + + <xsd:schema targetNamespace="http://reference.e-government.gv.at/namespace/mandates/mms/1.0/wsdl"> + <xsd:import namespace="http://reference.e-government.gv.at/namespace/mandates/mms/1.0/xsd" schemaLocation="mms-1.0.xsd"/> + </xsd:schema> + + <message name="GetMandatesRequest"> + <part name="GetMandatesRequest" element="mms:GetMandatesRequest"/> + </message> + <message name="GetMandatesResponse"> + <part name="GetMandatesResponse" element="mms:GetMandatesResponse"/> + </message> + <portType name="GetMandatesPortType"> + <operation name="GetMandatesOperation"> + <input message="tns:GetMandatesRequest"/> + <output message="tns:GetMandatesResponse"/> + </operation> + </portType> + <binding name="GetMandatesBinding" type="tns:GetMandatesPortType"> + <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/> + <operation name="GetMandatesOperation"> + <soap:operation soapAction="mis:GetMandatesPortType#GetMandatesOperation" style="document"/> + <input> + <soap:body use="literal"/> + </input> + <output> + <soap:body use="literal"/> + </output> + </operation> + </binding> + <service name="GetMandatesService"> + <port name="GetMandatesPort" binding="tns:GetMandatesBinding"> + <soap:address location="http://localhost:8000/mms/GetMandates"/> + </port> + </service> +</definitions> |