diff options
author | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2014-03-25 12:11:34 +0100 |
---|---|---|
committer | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2014-03-25 12:11:34 +0100 |
commit | 107930978eefc7234e99bbccd483f4da3a690c0d (patch) | |
tree | feef5d6db47dada6cb9df3333bebfa8fdb13db29 /src/main/resources/wsdl/ur_V5/schema/specific | |
parent | 655d20aa34b819720b20165dc6aeea032df224cc (diff) | |
download | egovutils-107930978eefc7234e99bbccd483f4da3a690c0d.tar.gz egovutils-107930978eefc7234e99bbccd483f4da3a690c0d.tar.bz2 egovutils-107930978eefc7234e99bbccd483f4da3a690c0d.zip |
add UR Client version 5
remove UR Client version 1
change egovutils version to 1.0.5
Diffstat (limited to 'src/main/resources/wsdl/ur_V5/schema/specific')
-rw-r--r-- | src/main/resources/wsdl/ur_V5/schema/specific/urs-v5-CustomFault.xsd | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/main/resources/wsdl/ur_V5/schema/specific/urs-v5-CustomFault.xsd b/src/main/resources/wsdl/ur_V5/schema/specific/urs-v5-CustomFault.xsd new file mode 100644 index 0000000..b30f2f7 --- /dev/null +++ b/src/main/resources/wsdl/ur_V5/schema/specific/urs-v5-CustomFault.xsd @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema" + xmlns="http://reference.e-government.gv.at/namespace/xml-sw/1#" + targetNamespace="http://reference.e-government.gv.at/namespace/xml-sw/1#"> + + <xs:include schemaLocation="../urs-v5-xml-sw.xsd"/> + + <xs:element name="XmlSwFault" type="CustomFaultType"/> + + <xs:element name="Message" type="CustomFaultType"/> + + <xs:complexType name="CustomFaultType" final="extension"> + <xs:annotation> + <xs:documentation>CustomFault reporting structure</xs:documentation> + </xs:annotation> + <xs:sequence> + <xs:element name="Code" type="xs:integer"/> + <xs:element name="Reason" type="xs:string" maxOccurs="unbounded"/> + <xs:element name="Help" type="xs:string" minOccurs="0"/> + <xs:element ref="FaultHint" minOccurs="0" maxOccurs="unbounded"/> + + </xs:sequence> + </xs:complexType> +</xs:schema> |