diff options
Diffstat (limited to 'src/main/resources/wsdl/mms')
-rw-r--r-- | src/main/resources/wsdl/mms/mms-1.0.xsd | 47 | ||||
-rw-r--r-- | src/main/resources/wsdl/mms/mms.wsdl | 43 |
2 files changed, 90 insertions, 0 deletions
diff --git a/src/main/resources/wsdl/mms/mms-1.0.xsd b/src/main/resources/wsdl/mms/mms-1.0.xsd new file mode 100644 index 0000000..47e8669 --- /dev/null +++ b/src/main/resources/wsdl/mms/mms-1.0.xsd @@ -0,0 +1,47 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- edited with XMLSpy v2006 sp2 U (http://www.altova.com) by Arne Tauber (Technische Universität Graz) --> +<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://reference.e-government.gv.at/namespace/mandates/mms/1.0/xsd" targetNamespace="http://reference.e-government.gv.at/namespace/mandates/mms/1.0/xsd" elementFormDefault="qualified" attributeFormDefault="unqualified"> + <xs:element name="GetMandatesRequest"> + <xs:annotation> + <xs:documentation>Comment describing your root element</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:sequence> + <xs:element name="ssPIN" type="xs:string"/> + <xs:element name="MandateIdentifiers" minOccurs="0"> + <xs:complexType> + <xs:sequence maxOccurs="unbounded"> + <xs:element name="MandateIdentifier" type="xs:string"/> + </xs:sequence> + </xs:complexType> + </xs:element> + </xs:sequence> + </xs:complexType> + </xs:element> + <xs:element name="GetMandatesResponse"> + <xs:complexType> + <xs:choice> + <xs:sequence> + <xs:element name="ssPIN" type="xs:string"/> + <xs:element name="Mandates"> + <xs:complexType> + <xs:sequence maxOccurs="unbounded"> + <xs:element name="Mandate" type="xs:base64Binary"/> + </xs:sequence> + </xs:complexType> + </xs:element> + </xs:sequence> + <xs:sequence> + <xs:element name="ErrorResponse"> + <xs:complexType> + <xs:sequence> + <xs:element name="Code" type="xs:positiveInteger"/> + <xs:element name="Info" type="xs:string"/> + </xs:sequence> + </xs:complexType> + </xs:element> + </xs:sequence> + </xs:choice> + </xs:complexType> + </xs:element> +</xs:schema> 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> |