diff options
Diffstat (limited to 'eidas_modules/authmodule-eIDAS-v2/src/main')
274 files changed, 41496 insertions, 1325 deletions
diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/Constants.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/Constants.java index 1732a61a..5dfc9e68 100644 --- a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/Constants.java +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/Constants.java @@ -27,11 +27,37 @@ import at.gv.egiz.eaaf.core.api.data.EaafConstants; public class Constants { + //TODO: should we make it configurable? + public static final String MATCHING_INTERNAL_BPK_TARGET = EaafConstants.URN_PREFIX_CDID + "ZP"; + + public static final String ERRORCODE_00 = "module.eidasauth.00"; + public static final String DATA_REQUESTERID = "req_requesterId"; public static final String DATA_PROVIDERNAME = "req_providerName"; public static final String DATA_REQUESTED_LOA_LIST = "req_requestedLoA"; public static final String DATA_REQUESTED_LOA_COMPERISON = "req_requestedLoAComperision"; public static final String DATA_FULL_EIDAS_RESPONSE = "resp_fulleIDASResponse"; + public static final String DATA_FULL_EIDAS_RESPONSE_ALTERNATIVE = "resp_fulleIDASResponseAlternative"; + + /** + * Stored when one match from register was found. + */ + public static final String DATA_RESULT_MATCHING_BPK = "matching_result_bpk"; + + /** + * Stored before Step 2 from Matching Concept, input from user eIDAS authn. + */ + public static final String DATA_SIMPLE_EIDAS = "matching_simple_eidas_data"; + + /** + * Stored intermediate mathing results where matching is still on-going. + */ + public static final String DATA_INTERMEDIATE_RESULT = "matching_intermediate_result"; + + /** + * Stored after Step 8 from Matching Concept, results from search in registers with MDS. + */ + public static final String DATA_PERSON_MATCH_RESULT = "matching_result"; // templates for post-binding forwarding public static final String TEMPLATE_POST_FORWARD_NAME = "eidas_node_forward.html"; @@ -79,6 +105,46 @@ public class Constants { public static final String FORWARD_METHOD_POST = "POST"; public static final String FORWARD_METHOD_GET = "GET"; + // ZMR Client configuration properties + public static final String CONIG_PROPS_EIDAS_ZMRCLIENT = CONIG_PROPS_EIDAS_PREFIX + ".zmrclient"; + public static final String CONIG_PROPS_EIDAS_ZMRCLIENT_ENDPOINT = CONIG_PROPS_EIDAS_ZMRCLIENT + + ".endpoint"; + public static final String CONIG_PROPS_EIDAS_ZMRCLIENT_DEBUG_TRACEMESSAGES = CONIG_PROPS_EIDAS_ZMRCLIENT + + ".debug.logfullmessages"; + public static final String CONIG_PROPS_EIDAS_ZMRCLIENT_TIMEOUT_CONNECTION = CONIG_PROPS_EIDAS_ZMRCLIENT + + ".timeout.connection"; + public static final String CONIG_PROPS_EIDAS_ZMRCLIENT_TIMEOUT_RESPONSE = CONIG_PROPS_EIDAS_ZMRCLIENT + + ".timeout.response"; + public static final String CONIG_PROPS_EIDAS_ZMRCLIENT_SSL_KEYSTORE_PATH = CONIG_PROPS_EIDAS_ZMRCLIENT + + ".ssl.keyStore.path"; + public static final String CONIG_PROPS_EIDAS_ZMRCLIENT_SSL_KEYSTORE_PASSWORD = CONIG_PROPS_EIDAS_ZMRCLIENT + + ".ssl.keyStore.password"; + public static final String CONIG_PROPS_EIDAS_ZMRCLIENT_SSL_KEYSTORE_TYPE = CONIG_PROPS_EIDAS_ZMRCLIENT + + ".ssl.keyStore.type"; + public static final String CONIG_PROPS_EIDAS_ZMRCLIENT_SSL_KEYSTORE_NAME = CONIG_PROPS_EIDAS_ZMRCLIENT + + ".ssl.keyStore.name"; + public static final String CONIG_PROPS_EIDAS_ZMRCLIENT_SSL_KEYS_ALIAS = CONIG_PROPS_EIDAS_ZMRCLIENT + + ".ssl.key.alias"; + public static final String CONIG_PROPS_EIDAS_ZMRCLIENT_SSL_KEY_PASSWORD = CONIG_PROPS_EIDAS_ZMRCLIENT + + ".ssl.key.password"; + public static final String CONIG_PROPS_EIDAS_ZMRCLIENT_SSL_TRUSTSTORE_PATH = CONIG_PROPS_EIDAS_ZMRCLIENT + + ".ssl.trustStore.path"; + public static final String CONIG_PROPS_EIDAS_ZMRCLIENT_SSL_TRUSTSTORE_PASSWORD = CONIG_PROPS_EIDAS_ZMRCLIENT + + ".ssl.trustStore.password"; + public static final String CONIG_PROPS_EIDAS_ZMRCLIENT_SSL_TRUSTSTORE_TYPE = CONIG_PROPS_EIDAS_ZMRCLIENT + + ".ssl.trustStore.type"; + public static final String CONIG_PROPS_EIDAS_ZMRCLIENT_SSL_TRUSTSTORE_NAME = CONIG_PROPS_EIDAS_ZMRCLIENT + + ".ssl.trustStore.name"; + + public static final String CONIG_PROPS_EIDAS_ZMRCLIENT_REQ_ORGANIZATION_NR = CONIG_PROPS_EIDAS_ZMRCLIENT + + ".req.organisation.behoerdennr"; + public static final String CONIG_PROPS_EIDAS_ZMRCLIENT_REQ_UPDATE_REASON_CODE = CONIG_PROPS_EIDAS_ZMRCLIENT + + ".req.update.reason.code"; + public static final String CONIG_PROPS_EIDAS_ZMRCLIENT_REQ_UPDATE_REASON_TEXT = CONIG_PROPS_EIDAS_ZMRCLIENT + + ".req.update.reason.text"; + + + // SZR Client configuration properties public static final String CONIG_PROPS_EIDAS_SZRCLIENT = CONIG_PROPS_EIDAS_PREFIX + ".szrclient"; public static final String CONIG_PROPS_EIDAS_SZRCLIENT_USETESTSERVICE = CONIG_PROPS_EIDAS_SZRCLIENT + ".useTestService"; @@ -100,10 +166,22 @@ public class Constants { + ".ssl.keyStore.path"; public static final String CONIG_PROPS_EIDAS_SZRCLIENT_SSL_KEYSTORE_PASSWORD = CONIG_PROPS_EIDAS_SZRCLIENT + ".ssl.keyStore.password"; + public static final String CONIG_PROPS_EIDAS_SZRCLIENT_SSL_KEYSTORE_TYPE = CONIG_PROPS_EIDAS_SZRCLIENT + + ".ssl.keyStore.type"; + public static final String CONIG_PROPS_EIDAS_SZRCLIENT_SSL_KEYSTORE_NAME = CONIG_PROPS_EIDAS_SZRCLIENT + + ".ssl.keyStore.name"; + public static final String CONIG_PROPS_EIDAS_SZRCLIENT_SSL_KEYS_ALIAS = CONIG_PROPS_EIDAS_SZRCLIENT + + ".ssl.key.alias"; + public static final String CONIG_PROPS_EIDAS_SZRCLIENT_SSL_KEY_PASSWORD = CONIG_PROPS_EIDAS_SZRCLIENT + + ".ssl.key.password"; public static final String CONIG_PROPS_EIDAS_SZRCLIENT_SSL_TRUSTSTORE_PATH = CONIG_PROPS_EIDAS_SZRCLIENT + ".ssl.trustStore.path"; public static final String CONIG_PROPS_EIDAS_SZRCLIENT_SSL_TRUSTSTORE_PASSWORD = CONIG_PROPS_EIDAS_SZRCLIENT + ".ssl.trustStore.password"; + public static final String CONIG_PROPS_EIDAS_SZRCLIENT_SSL_TRUSTSTORE_TYPE = CONIG_PROPS_EIDAS_SZRCLIENT + + ".ssl.trustStore.type"; + public static final String CONIG_PROPS_EIDAS_SZRCLIENT_SSL_TRUSTSTORE_NAME = CONIG_PROPS_EIDAS_SZRCLIENT + + ".ssl.trustStore.name"; public static final String CONIG_PROPS_EIDAS_SZRCLIENT_PARAMS_EDOCUMENTTYPE = CONIG_PROPS_EIDAS_SZRCLIENT + ".params.documenttype"; @@ -149,13 +227,27 @@ public class Constants { public static final String eIDAS_ATTR_PLACEOFBIRTH = "PlaceOfBirth"; public static final String eIDAS_ATTR_BIRTHNAME = "BirthName"; public static final String eIDAS_ATTR_CURRENTADDRESS = "CurrentAddress"; + public static final String eIDAS_ATTR_TAXREFERENCE = "TaxReference"; public static final String eIDAS_ATTR_LEGALPERSONIDENTIFIER = "LegalPersonIdentifier"; public static final String eIDAS_ATTR_LEGALNAME = "LegalName"; + + //eIDAS attribute URN + public static final String eIDAS_ATTRURN_PREFIX = "http://eidas.europa.eu/attributes/"; + public static final String eIDAS_ATTRURN_PREFIX_NATURAL = eIDAS_ATTRURN_PREFIX + "naturalperson/"; + + public static final String eIDAS_ATTRURN_PERSONALIDENTIFIER = + eIDAS_ATTRURN_PREFIX_NATURAL + eIDAS_ATTR_PERSONALIDENTIFIER; + public static final String eIDAS_ATTRURN_PLACEOFBIRTH = + eIDAS_ATTRURN_PREFIX_NATURAL + eIDAS_ATTR_PLACEOFBIRTH; + public static final String eIDAS_ATTRURN_BIRTHNAME = + eIDAS_ATTRURN_PREFIX_NATURAL + eIDAS_ATTR_BIRTHNAME; + + public static final String eIDAS_REQ_PARAM_SECTOR_PUBLIC = "public"; public static final String eIDAS_REQ_PARAM_SECTOR_PRIVATE = "private"; - + public static final String POLICY_DEFAULT_ALLOWED_TARGETS = EaafConstants.URN_PREFIX_CDID.replaceAll("\\.", "\\\\.").replaceAll("\\+", "\\\\+") + ".*"; @@ -184,4 +276,39 @@ public class Constants { "AJZyj/+sdCMDRq9RkvbFcgSTVn/OfS8EUE81ddwP8MNuJ1kd1SWBUJPaQX2JLJHrL54mkOhrkhH2M/zcuOTu8nW9TOEg" + "XGjrRB/0HpiYKpV+VDJViyyc/GacNLxN4Anw4pima6gHYaJIw9hQkL/nuO2hyh8PGJd7rxeFXJmbLy+X"; + public static final String COUNTRY_CODE_DE = "DE"; + public static final String COUNTRY_CODE_IT = "IT"; + + /** + * {@link at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks.CreateNewErnpEntryTask}. + */ + public static final String TRANSITION_TO_CREATE_NEW_ERNP_ENTRY_TASK = "TASK_CreateNewErnpEntryTask"; + + /** + * {@link at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks.GenerateOtherLoginMethodGuiTask}. + */ + public static final String TRANSITION_TO_GENERATE_OTHER_LOGIN_METHOD_GUI_TASK = + "TASK_GenerateOtherLoginMethodGuiTask"; + + /** + * {@link at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks.GenerateAustrianResidenceGuiTask}. + */ + public static final String TRANSITION_TO_GENERATE_GUI_QUERY_AUSTRIAN_RESIDENCE_TASK = + "TASK_GenerateAustrianResidenceGuiTask"; + + /** + * {@link at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks.GenerateMobilePhoneSignatureRequestTask}. + */ + public static final String TRANSITION_TO_GENERATE_MOBILE_PHONE_SIGNATURE_REQUEST_TASK = + "TASK_GenerateMobilePhoneSignatureRequestTask"; + + /** + * {@link at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks.GenerateAuthnRequestTask}. + */ + public static final String TRANSITION_TO_GENERATE_EIDAS_LOGIN = "TASK_GenerateAlternativeEidasAuthn"; + + /** + * Stores login selection from user. + */ + public static final String REQ_SELECTED_LOGIN_METHOD_PARAMETER = "loginSelection"; } diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/EidasAuthenticationSpringResourceProvider.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/EidasAuthenticationSpringResourceProvider.java index 535e4f97..e5b10185 100644 --- a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/EidasAuthenticationSpringResourceProvider.java +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/EidasAuthenticationSpringResourceProvider.java @@ -45,8 +45,10 @@ public class EidasAuthenticationSpringResourceProvider implements SpringResource public Resource[] getResourcesToLoad() { final ClassPathResource eidasAuthConfig = new ClassPathResource("/eidas_v2_auth.beans.xml", EidasAuthenticationSpringResourceProvider.class); - - return new Resource[] { eidasAuthConfig }; + final ClassPathResource eidasRefImplConfig = new ClassPathResource("/eidas_v2_auth_ref_impl_config.beans.xml", + EidasAuthenticationSpringResourceProvider.class); + + return new Resource[] { eidasRefImplConfig, eidasAuthConfig }; } } diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/clients/AbstractSoapClient.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/clients/AbstractSoapClient.java new file mode 100644 index 00000000..a039881c --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/clients/AbstractSoapClient.java @@ -0,0 +1,199 @@ +package at.asitplus.eidas.specific.modules.auth.eidas.v2.clients; + +import java.security.KeyManagementException; +import java.security.KeyStore; +import java.security.NoSuchAlgorithmException; +import java.security.Provider; +import java.util.ArrayList; +import java.util.List; +import java.util.Map; + +import javax.net.ssl.SSLContext; +import javax.xml.ws.BindingProvider; +import javax.xml.ws.handler.Handler; + +import org.apache.commons.lang3.StringUtils; +import org.apache.cxf.configuration.jsse.TLSClientParameters; +import org.apache.cxf.endpoint.Client; +import org.apache.cxf.frontend.ClientProxy; +import org.apache.cxf.jaxws.DispatchImpl; +import org.apache.cxf.transport.http.HTTPConduit; +import org.apache.cxf.transports.http.configuration.HTTPClientPolicy; +import org.apache.http.ssl.SSLContextBuilder; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.lang.Nullable; + +import at.asitplus.eidas.specific.modules.auth.eidas.v2.utils.LoggingHandler; +import at.gv.egiz.eaaf.core.api.idp.IConfiguration; +import at.gv.egiz.eaaf.core.exceptions.EaafConfigurationException; +import at.gv.egiz.eaaf.core.exceptions.EaafException; +import at.gv.egiz.eaaf.core.impl.credential.EaafKeyStoreFactory; +import at.gv.egiz.eaaf.core.impl.credential.KeyStoreConfiguration; +import at.gv.egiz.eaaf.core.impl.credential.KeyStoreConfiguration.KeyStoreType; +import at.gv.egiz.eaaf.core.impl.data.Pair; +import at.gv.egiz.eaaf.core.impl.http.HttpUtils; +import lombok.Builder; +import lombok.Getter; +import lombok.extern.slf4j.Slf4j; + +@Slf4j +public class AbstractSoapClient { + + @Autowired + protected IConfiguration basicConfig; + @Autowired + EaafKeyStoreFactory keyStoreFactory; + + @Builder + @Getter + public static class HttpClientConfig { + + private final String clientName; + + private final String clientUrl; + private final String clientType; + + private final String connectionTimeout; + private final String responseTimeout; + + private final KeyStoreConfiguration keyStoreConfig; + private final String keyAlias; + private final String keyPassword; + + private final KeyStoreConfiguration trustStoreConfig; + + @Builder.Default + private final boolean trustAll = false; + + } + + /** + * Build a validated KeyStore Configuration-Object from configuration keys. + * + * @param keyStoreTypeKey Configuration key for type + * @param keyStorePathKey Configuration key for path + * @param keyStorePasswordKey Configuration key for password + * @param keyStoreNameKey Configuration key for name + * @param friendlyName Friendlyname for logging and errorhandling + * @return Valid KeyStore configuration or <code>null</code> if no type was + * defined + * @throws EaafConfigurationException In case of validation error + */ + @Nullable + protected KeyStoreConfiguration buildKeyStoreConfiguration(String keyStoreTypeKey, String keyStorePathKey, + String keyStorePasswordKey, String keyStoreNameKey, String friendlyName) + throws EaafConfigurationException { + if (StringUtils.isNotEmpty(basicConfig.getBasicConfiguration(keyStoreTypeKey))) { + log.debug("Starting configuration of: {} ... ", friendlyName); + final KeyStoreConfiguration config = new KeyStoreConfiguration(); + config.setFriendlyName(friendlyName); + config.setKeyStoreType(basicConfig.getBasicConfiguration(keyStoreTypeKey, KeyStoreType.PKCS12.name())); + config.setKeyStoreName(basicConfig.getBasicConfiguration(keyStoreNameKey)); + config.setSoftKeyStoreFilePath(basicConfig.getBasicConfiguration(keyStorePathKey)); + config.setSoftKeyStorePassword(basicConfig.getBasicConfiguration(keyStorePasswordKey)); + + // validate keystore configuration + config.validate(); + + return config; + + } else { + log.info("Skipping configuration of: {}", friendlyName); + return null; + + } + + } + + protected void injectHttpClient(Object raw, HttpClientConfig config) { + // extract client from implementation + Client client; + if (raw instanceof DispatchImpl<?>) { + client = ((DispatchImpl<?>) raw).getClient(); + } else if (raw instanceof Client) { + client = ClientProxy.getClient(raw); + } else { + throw new RuntimeException("SOAP Client for SZR connection is of UNSUPPORTED type: " + raw.getClass() + .getName()); + } + + // set basic connection policies + final HTTPConduit http = (HTTPConduit) client.getConduit(); + + // set timeout policy + final HTTPClientPolicy httpClientPolicy = new HTTPClientPolicy(); + httpClientPolicy.setConnectionTimeout(Integer.parseInt(config.getConnectionTimeout()) * 1000L); + httpClientPolicy.setReceiveTimeout(Integer.parseInt(config.getResponseTimeout()) * 1000L); + http.setClient(httpClientPolicy); + + // inject SSL context in case of https + if (config.getClientUrl().toLowerCase().startsWith("https")) { + try { + log.debug("Adding SSLContext to client: " + config.getClientType() + " ... "); + + final TLSClientParameters tlsParams = new TLSClientParameters(); + if (config.getKeyStoreConfig() != null) { + final SSLContext sslContext = HttpUtils.buildSslContextWithSslClientAuthentication( + keyStoreFactory.buildNewKeyStore(config.getKeyStoreConfig()), + config.getKeyAlias(), + config.getKeyPassword(), + loadTrustStore(config.getTrustStoreConfig(), config.getClientName()), + config.isTrustAll(), + config.getClientName()); + tlsParams.setSSLSocketFactory(sslContext.getSocketFactory()); + + } else { + log.debug( + "No KeyStore for SSL Client Auth. found. Initializing SSLContext for: {} without authentication ... ", + config.getClientName()); + tlsParams.setSSLSocketFactory(SSLContextBuilder.create().build().getSocketFactory()); + + } + + http.setTlsClientParameters(tlsParams); + log.info("SSLContext initialized for client: " + config.getClientType()); + + } catch (EaafException | KeyManagementException | NoSuchAlgorithmException e) { + log.error("SSLContext initialization FAILED.", e); + throw new RuntimeException("SSLContext initialization FAILED.", e); + + } + } + } + + private Pair<KeyStore, Provider> loadTrustStore(KeyStoreConfiguration trustStoreConfig, String friendlyName) + throws EaafException { + if (trustStoreConfig != null) { + log.info("Build custom SSL truststore for: {}", friendlyName); + return keyStoreFactory.buildNewKeyStore(trustStoreConfig); + + } else { + log.info("Use default SSL truststore for: {}", friendlyName); + return null; + + } + + } + + protected void injectBindingProvider(BindingProvider bindingProvider, String clientType, String szrUrl, + boolean enableTraceLogging) { + final Map<String, Object> requestContext = bindingProvider.getRequestContext(); + requestContext.put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, szrUrl); + + log.trace("Adding JAX-WS request/response trace handler to client: " + clientType); + List<Handler> handlerList = bindingProvider.getBinding().getHandlerChain(); + if (handlerList == null) { + handlerList = new ArrayList<>(); + bindingProvider.getBinding().setHandlerChain(handlerList); + + } + + // add logging handler to trace messages if required + if (enableTraceLogging) { + final LoggingHandler loggingHandler = new LoggingHandler(); + handlerList.add(loggingHandler); + + } + bindingProvider.getBinding().setHandlerChain(handlerList); + } +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/clients/szr/SzrClient.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/clients/szr/SzrClient.java new file mode 100644 index 00000000..397cbe46 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/clients/szr/SzrClient.java @@ -0,0 +1,548 @@ +/* + * Copyright 2018 A-SIT Plus GmbH + * AT-specific eIDAS Connector has been developed in a cooperation between EGIZ, + * A-SIT Plus GmbH, A-SIT, and Graz University of Technology. + * + * Licensed under the EUPL, Version 1.2 or - as soon they will be approved by + * the European Commission - subsequent versions of the EUPL (the "License"); + * You may not use this work except in compliance with the License. + * You may obtain a copy of the License at: + * https://joinup.ec.europa.eu/news/understanding-eupl-v12 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This product combines work with different licenses. See the "NOTICE" text + * file for details on the various modules and licenses. + * The "NOTICE" text file is part of the distribution. Any derivative works + * that you distribute must include a readable copy of the "NOTICE" text file. + */ + +package at.asitplus.eidas.specific.modules.auth.eidas.v2.clients.szr; + +import java.io.ByteArrayInputStream; +import java.io.ByteArrayOutputStream; +import java.net.URL; +import java.nio.charset.StandardCharsets; +import java.util.Collections; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import javax.annotation.PostConstruct; +import javax.xml.XMLConstants; +import javax.xml.bind.JAXBContext; +import javax.xml.bind.Marshaller; +import javax.xml.namespace.QName; +import javax.xml.transform.Source; +import javax.xml.transform.Transformer; +import javax.xml.transform.TransformerException; +import javax.xml.transform.TransformerFactory; +import javax.xml.transform.stream.StreamResult; +import javax.xml.transform.stream.StreamSource; +import javax.xml.ws.BindingProvider; +import javax.xml.ws.Dispatch; + +import org.apache.commons.lang3.StringUtils; +import org.apache.xpath.XPathAPI; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.stereotype.Service; +import org.w3c.dom.Document; +import org.w3c.dom.Element; + +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.databind.ObjectMapper; + +import at.asitplus.eidas.specific.modules.auth.eidas.v2.Constants; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.clients.AbstractSoapClient; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.clients.AbstractSoapClient.HttpClientConfig.HttpClientConfigBuilder; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.MatchedPersonResult; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.SimpleEidasData; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.SzrCommunicationException; +import at.gv.e_government.reference.namespace.persondata._20020228.AlternativeNameType; +import at.gv.e_government.reference.namespace.persondata._20020228.IdentificationType; +import at.gv.e_government.reference.namespace.persondata._20020228.PersonNameType; +import at.gv.e_government.reference.namespace.persondata._20020228.PhysicalPersonType; +import at.gv.egiz.eaaf.core.api.data.EaafConstants; +import at.gv.egiz.eaaf.core.api.data.PvpAttributeDefinitions; +import at.gv.egiz.eaaf.core.api.data.XmlNamespaceConstants; +import at.gv.egiz.eaaf.core.exceptions.EaafConfigurationException; +import at.gv.egiz.eaaf.core.impl.utils.DomUtils; +import szrservices.GetBPK; +import szrservices.GetBPKResponse; +import szrservices.GetIdentityLinkEidas; +import szrservices.GetIdentityLinkEidasResponse; +import szrservices.IdentityLinkType; +import szrservices.JwsHeaderParam; +import szrservices.ObjectFactory; +import szrservices.PersonInfoType; +import szrservices.SZR; +import szrservices.SZRException_Exception; +import szrservices.SignContent; +import szrservices.SignContentEntry; +import szrservices.SignContentResponseType; +import szrservices.TravelDocumentType; + + +@Service("SZRClientForeIDAS") +public class SzrClient extends AbstractSoapClient { + private static final Logger log = LoggerFactory.getLogger(SzrClient.class); + + private static final String CLIENT_DEFAULT = "DefaultClient"; + private static final String CLIENT_RAW = "RawClient"; + + private static final String ATTR_NAME_VSZ = "urn:eidgvat:attributes.vsz.value"; + private static final String ATTR_NAME_PUBKEYS = "urn:eidgvat:attributes.user.pubkeys"; + private static final String ATTR_NAME_STATUS = "urn:eidgvat:attributes.eid.status"; + private static final String KEY_BC_BIND = "bcBindReq"; + private static final String JOSE_HEADER_USERCERTPINNING_TYPE = "urn:at.gv.eid:bindtype"; + private static final String JOSE_HEADER_USERCERTPINNING_EIDASBIND = "urn:at.gv.eid:eidasBind"; + public static final String ATTR_NAME_MDS = "urn:eidgvat:mds"; + + // client for anything, without identitylink + private SZR szr = null; + + // RAW client is needed for identitylink + private Dispatch<Source> dispatch = null; + + final ObjectMapper mapper = new ObjectMapper(); + + /** + * Get IdentityLink of a person. + * + * + * @param eidData minimum dataset of person + * @return IdentityLink + * @throws SzrCommunicationException In case of a SZR error + */ + public IdentityLinkType getIdentityLinkInRawMode(SimpleEidasData eidData) + throws SzrCommunicationException { + try { + final GetIdentityLinkEidas getIdl = new GetIdentityLinkEidas(); + getIdl.setPersonInfo(generateSzrRequest(eidData)); + + return getIdentityLinkGeneric(getIdl); + + } catch (final Exception e) { + log.warn("SZR communication FAILED. Reason: " + e.getMessage(), e); + throw new SzrCommunicationException("ernb.02", new Object[]{e.getMessage()}, e); + + } + } + + /** + * Get IdentityLink of a person. + * + * + * @param matchedPersonData eID information of an already matched person. + * @return IdentityLink + * @throws SzrCommunicationException In case of a SZR error + */ + public IdentityLinkType getIdentityLinkInRawMode(MatchedPersonResult matchedPersonData) + throws SzrCommunicationException { + try { + final GetIdentityLinkEidas getIdl = new GetIdentityLinkEidas(); + getIdl.setPersonInfo(generateSzrRequest(matchedPersonData)); + + return getIdentityLinkGeneric(getIdl); + + } catch (final Exception e) { + log.warn("SZR communication FAILED. Reason: " + e.getMessage(), e); + throw new SzrCommunicationException("ernb.02", new Object[]{e.getMessage()}, e); + + } + } + + /** + * Get bPK of person. + * + * + * @param eidData Minimum dataset of person + * @param target requested bPK target + * @param vkz Verfahrenskennzeichen + * @return bPK for this person + * @throws SzrCommunicationException In case of a SZR error + */ + public List<String> getBpk(SimpleEidasData eidData, String target, String vkz) + throws SzrCommunicationException { + try { + final GetBPK parameters = new GetBPK(); + parameters.setPersonInfo(generateSzrRequest(eidData)); + parameters.getBereichsKennung().add(target); + parameters.setVKZ(vkz); + final GetBPKResponse result = this.szr.getBPK(parameters); + + return result.getGetBPKReturn(); + + } catch (final SZRException_Exception e) { + log.warn("SZR communication FAILED. Reason: " + e.getMessage(), e); + throw new SzrCommunicationException("ernb.02", new Object[]{e.getMessage()}, e); + + } + + } + + /** + * Creates a new ERnP entry. + * TODO Is this correct? Ask BMI. + * + * @param eidasData Minimum dataset of person + * @return encrypted baseId + * @throws SzrCommunicationException In case of a SZR error + */ + public String createNewErnpEntry(final SimpleEidasData eidasData) throws SzrCommunicationException { + final String resp; + try { + resp = this.szr.getStammzahlEncrypted(generateSzrRequest(eidasData), true); + } catch (SZRException_Exception e) { + throw new SzrCommunicationException("ernb.02", new Object[]{e.getMessage()}, e); + } + if (StringUtils.isEmpty(resp)) { + throw new SzrCommunicationException("ernb.01", new Object[]{"Stammzahl response empty"}); // TODO error handling + } + return resp; + } + + /** + * Request a encrypted baseId from SZR. + * + * <b>Note</b>: Previously, this method did create a new ERnP entry, if it did not exist. This is + * <b>not</b> the case any more. See {@link #createNewErnpEntry(SimpleEidasData)} for that functionality. + * + * @param eidData Minimum dataset of person + * @return encrypted baseId + * @throws SzrCommunicationException In case of a SZR error + */ + public String getEncryptedStammzahl(final SimpleEidasData eidData) + throws SzrCommunicationException { + final String resp; + try { + resp = this.szr.getStammzahlEncrypted(generateSzrRequest(eidData), false); + } catch (SZRException_Exception e) { + throw new SzrCommunicationException("ernb.02", new Object[]{e.getMessage()}, e); + } + + if (StringUtils.isEmpty(resp)) { + throw new SzrCommunicationException("ernb.01", new Object[]{"Stammzahl response empty"}); // TODO error handling + } + + return resp; + + } + + /** + * Request a encrypted baseId from SZR. + * + * @param matchedPersonData eID information of an already matched person. + * @return encrypted baseId + * @throws SzrCommunicationException In case of a SZR error + */ + public String getEncryptedStammzahl(MatchedPersonResult matchedPersonData) throws SzrCommunicationException { + final String resp; + try { + resp = this.szr.getStammzahlEncrypted(generateSzrRequest(matchedPersonData), false); + + } catch (SZRException_Exception e) { + throw new SzrCommunicationException("ernb.02", new Object[]{e.getMessage()}, e); + + } + + if (StringUtils.isEmpty(resp)) { + throw new SzrCommunicationException("ernb.01", new Object[]{"Stammzahl response empty"}); // TODO error handling + + } + + return resp; + + } + + /** + * Sign an eidasBind data-structure that combines vsz with user's pubKey and E-ID status. + * + * @param vsz encrypted baseId + * @param bindingPubKey binding PublicKey as PKCS1# (ASN.1) container + * @param eidStatus Status of the E-ID + * @param eidData eID information that was used for ERnP registration + * @return bPK for this person + * @throws SzrCommunicationException In case of a SZR error + */ + public String getEidasBind(final String vsz, final String bindingPubKey, final String eidStatus, + SimpleEidasData eidData)throws SzrCommunicationException { + + final Map<String, Object> eidsaBindMap = new HashMap<>(); + eidsaBindMap.put(ATTR_NAME_VSZ, vsz); + eidsaBindMap.put(ATTR_NAME_STATUS, eidStatus); + eidsaBindMap.put(ATTR_NAME_PUBKEYS, Collections.singletonList(bindingPubKey)); + eidsaBindMap.put(PvpAttributeDefinitions.EID_ISSUING_NATION_NAME, eidData.getCitizenCountryCode()); + injectMdsIfAvailableAndActive(eidsaBindMap, eidData); + + try { + final String serializedEidasBind = mapper.writeValueAsString(eidsaBindMap); + final SignContent req = new SignContent(); + final SignContentEntry eidasBindInfo = new SignContentEntry(); + eidasBindInfo.setKey(KEY_BC_BIND); + eidasBindInfo.setValue(serializedEidasBind); + req.getIn().add(eidasBindInfo); + req.setAppendCert(false); + final JwsHeaderParam eidasBindJoseHeader = new JwsHeaderParam(); + eidasBindJoseHeader.setKey(JOSE_HEADER_USERCERTPINNING_TYPE); + eidasBindJoseHeader.setValue(JOSE_HEADER_USERCERTPINNING_EIDASBIND); + req.getJWSHeaderParam().add(eidasBindJoseHeader); + + log.trace("Requesting SZR to sign bcBind datastructure ... "); + final SignContentResponseType resp = szr.signContent(req.isAppendCert(), req.getJWSHeaderParam(), req.getIn()); + log.trace("Receive SZR response on bcBind siging operation "); + + if (resp == null || resp.getOut() == null + || resp.getOut().isEmpty() + || StringUtils.isEmpty(resp.getOut().get(0).getValue())) { + throw new SzrCommunicationException("ernb.01", new Object[]{"BcBind response empty"}); + } + + return resp.getOut().get(0).getValue(); + + } catch (final JsonProcessingException | SZRException_Exception e) { + log.warn("Requesting bcBind by using SZR FAILED.", e); + throw new SzrCommunicationException("ernb.02", + new Object[]{e.getMessage()}, e); + } + } + + private PersonInfoType generateSzrRequest(MatchedPersonResult matchedPersonData) { + log.trace("Starting connecting SZR Gateway"); + final PersonInfoType personInfo = new PersonInfoType(); + final PersonNameType personName = new PersonNameType(); + final PhysicalPersonType naturalPerson = new PhysicalPersonType(); + IdentificationType bpk = new IdentificationType(); + + naturalPerson.setName(personName); + personInfo.setPerson(naturalPerson); + naturalPerson.setIdentification(bpk); + + // person information + personName.setFamilyName(matchedPersonData.getFamilyName()); + personName.setGivenName(matchedPersonData.getGivenName()); + naturalPerson.setDateOfBirth(matchedPersonData.getDateOfBirth()); + bpk.setValue(matchedPersonData.getBpk()); + bpk.setType(EaafConstants.URN_PREFIX_CDID + "ZP"); + + return personInfo; + } + + private PersonInfoType generateSzrRequest(SimpleEidasData eidData) { + log.trace("Starting connecting SZR Gateway"); + final PersonInfoType personInfo = new PersonInfoType(); + final PersonNameType personName = new PersonNameType(); + final PhysicalPersonType naturalPerson = new PhysicalPersonType(); + final TravelDocumentType eDocument = new TravelDocumentType(); + + naturalPerson.setName(personName); + personInfo.setPerson(naturalPerson); + personInfo.setTravelDocument(eDocument); + + // person information + personName.setFamilyName(eidData.getFamilyName()); + personName.setGivenName(eidData.getGivenName()); + naturalPerson.setDateOfBirth(eidData.getDateOfBirth()); + + //TODO: need to be updated to new eIDAS document interface!!!! + eDocument.setIssuingCountry(eidData.getCitizenCountryCode()); + eDocument.setDocumentNumber(eidData.getPseudonym()); + + // eID document information + String documentType = basicConfig + .getBasicConfiguration(Constants.CONIG_PROPS_EIDAS_SZRCLIENT_PARAMS_EDOCUMENTTYPE, + Constants.SZR_CONSTANTS_DEFAULT_DOCUMENT_TYPE); + eDocument.setDocumentType(documentType); + + // set PlaceOfBirth if available + if (eidData.getPlaceOfBirth() != null) { + log.trace("Find 'PlaceOfBirth' attribute: " + eidData.getPlaceOfBirth()); + boolean setPlaceOfBirth = basicConfig + .getBasicConfigurationBoolean(Constants.CONIG_PROPS_EIDAS_SZRCLIENT_PARAMS_SETPLACEOFBIRTHIFAVAILABLE, true); + if (setPlaceOfBirth) { + naturalPerson.setPlaceOfBirth(eidData.getPlaceOfBirth()); + log.trace("Adding 'PlaceOfBirth' to ERnB request ... "); + } + } + + // set BirthName if available + if (eidData.getBirthName() != null) { + log.trace("Find 'BirthName' attribute: " + eidData.getBirthName()); + boolean setBirthName = basicConfig + .getBasicConfigurationBoolean(Constants.CONIG_PROPS_EIDAS_SZRCLIENT_PARAMS_SETBIRTHNAMEIFAVAILABLE, true); + if (setBirthName) { + final AlternativeNameType alternativeName = new AlternativeNameType(); + naturalPerson.setAlternativeName(alternativeName); + alternativeName.setFamilyName(eidData.getBirthName()); + log.trace("Adding 'BirthName' to ERnB request ... "); + } + } + + return personInfo; + } + + private IdentityLinkType getIdentityLinkGeneric(GetIdentityLinkEidas getIdl) throws Exception { + final JAXBContext jaxbContext = JAXBContext.newInstance(ObjectFactory.class); + final Marshaller jaxbMarshaller = jaxbContext.createMarshaller(); + + final ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); + jaxbMarshaller.marshal(getIdl, outputStream); + outputStream.flush(); + + final Source source = new StreamSource(new ByteArrayInputStream(outputStream.toByteArray())); + outputStream.close(); + + log.trace("Requesting SZR ... "); + final Source response = dispatch.invoke(source); + log.trace("Receive RAW response from SZR"); + + final byte[] szrResponse = sourceToByteArray(response); + final GetIdentityLinkEidasResponse jaxbElement = (GetIdentityLinkEidasResponse) jaxbContext + .createUnmarshaller().unmarshal(new ByteArrayInputStream(szrResponse)); + + // build response + log.trace(new String(szrResponse, StandardCharsets.UTF_8)); + + // ok, we have success + final Document doc = DomUtils.parseDocument( + new ByteArrayInputStream(szrResponse), + true, + XmlNamespaceConstants.ALL_SCHEMA_LOCATIONS + " " + Constants.SZR_SCHEMA_LOCATIONS, + null, null); + final String xpathExpression = "//saml:Assertion"; + final Element nsNode = doc.createElementNS("urn:oasis:names:tc:SAML:1.0:assertion", "saml:NSNode"); + + log.trace("Selecting signed doc " + xpathExpression); + final Element documentNode = (Element) XPathAPI.selectSingleNode(doc, + xpathExpression, nsNode); + log.trace("Signed document: " + DomUtils.serializeNode(documentNode)); + + final IdentityLinkType idl = new IdentityLinkType(); + idl.setAssertion(documentNode); + idl.setPersonInfo(jaxbElement.getGetIdentityLinkReturn().getPersonInfo()); + + return idl; + + } + + @PostConstruct + private void initialize() throws EaafConfigurationException { + log.info("Starting SZR-Client initialization .... "); + final URL url = SzrClient.class.getResource("/wsdl/szr_client/SZR_v4.0.wsdl"); + + final boolean useTestSzr = basicConfig.getBasicConfigurationBoolean( + Constants.CONIG_PROPS_EIDAS_SZRCLIENT_USETESTSERVICE, + true); + + SzrService szrService; + QName qname; + String szrUrl; + if (useTestSzr) { + log.debug("Initializing SZR test environment configuration."); + qname = SzrService.SZRTestumgebung; + szrService = new SzrService(url, new QName("urn:SZRServices", "SZRService")); + szr = szrService.getSzrTestumgebung(); + szrUrl = basicConfig.getBasicConfiguration(Constants.CONIG_PROPS_EIDAS_SZRCLIENT_ENDPOINT_TEST); + + } else { + log.debug("Initializing SZR productive configuration."); + qname = SzrService.SZRProduktionsumgebung; + szrService = new SzrService(url, new QName("urn:SZRServices", "SZRService")); + szr = szrService.getSzrProduktionsumgebung(); + szrUrl = basicConfig.getBasicConfiguration(Constants.CONIG_PROPS_EIDAS_SZRCLIENT_ENDPOINT_PROD); + + } + + // create raw client; + dispatch = szrService.createDispatch(qname, Source.class, javax.xml.ws.Service.Mode.PAYLOAD); + + if (StringUtils.isEmpty(szrUrl)) { + log.error("No SZR service-URL found. SZR-Client initalisiation failed."); + throw new RuntimeException("No SZR service URL found. SZR-Client initalisiation failed."); + + } + + // check if Clients can be initialized + if (szr == null) { + log.error("SZR " + CLIENT_DEFAULT + " is 'NULL'. Something goes wrong"); + throw new RuntimeException("SZR " + CLIENT_DEFAULT + " is 'NULL'. Something goes wrong"); + + } + if (dispatch == null) { + log.error("SZR " + CLIENT_RAW + " is 'NULL'. Something goes wrong"); + throw new RuntimeException("SZR " + CLIENT_RAW + " is 'NULL'. Something goes wrong"); + + } + + // inject handler + log.info("Use SZR service-URL: " + szrUrl); + injectBindingProvider((BindingProvider) szr, CLIENT_DEFAULT, szrUrl, + basicConfig.getBasicConfigurationBoolean(Constants.CONIG_PROPS_EIDAS_SZRCLIENT_DEBUG_TRACEMESSAGES, false)); + injectBindingProvider(dispatch, CLIENT_RAW, szrUrl, + basicConfig.getBasicConfigurationBoolean(Constants.CONIG_PROPS_EIDAS_SZRCLIENT_DEBUG_TRACEMESSAGES, false)); + + // inject http parameters and SSL context + log.debug("Inject HTTP client settings ... "); + HttpClientConfigBuilder httpClientBuilder = HttpClientConfig.builder() + .clientName("SZR Client") + .clientUrl(szrUrl) + .connectionTimeout(basicConfig.getBasicConfiguration( + Constants.CONIG_PROPS_EIDAS_SZRCLIENT_TIMEOUT_CONNECTION, + Constants.HTTP_CLIENT_DEFAULT_TIMEOUT_CONNECTION)) + .responseTimeout(basicConfig.getBasicConfiguration( + Constants.CONIG_PROPS_EIDAS_SZRCLIENT_TIMEOUT_RESPONSE, + Constants.HTTP_CLIENT_DEFAULT_TIMEOUT_RESPONSE)) + .keyStoreConfig(buildKeyStoreConfiguration( + Constants.CONIG_PROPS_EIDAS_SZRCLIENT_SSL_KEYSTORE_TYPE, + Constants.CONIG_PROPS_EIDAS_SZRCLIENT_SSL_KEYSTORE_PATH, + Constants.CONIG_PROPS_EIDAS_SZRCLIENT_SSL_KEYSTORE_PASSWORD, + Constants.CONIG_PROPS_EIDAS_SZRCLIENT_SSL_KEYSTORE_NAME, + "SZR SSL Client-Authentication KeyStore")) + .keyAlias(basicConfig.getBasicConfiguration(Constants.CONIG_PROPS_EIDAS_SZRCLIENT_SSL_KEYS_ALIAS)) + .keyPassword(basicConfig.getBasicConfiguration(Constants.CONIG_PROPS_EIDAS_SZRCLIENT_SSL_KEY_PASSWORD)) + .trustAll(false) + .trustStoreConfig(buildKeyStoreConfiguration( + Constants.CONIG_PROPS_EIDAS_SZRCLIENT_SSL_TRUSTSTORE_TYPE, + Constants.CONIG_PROPS_EIDAS_SZRCLIENT_SSL_TRUSTSTORE_PATH, + Constants.CONIG_PROPS_EIDAS_SZRCLIENT_SSL_TRUSTSTORE_PASSWORD, + Constants.CONIG_PROPS_EIDAS_SZRCLIENT_SSL_TRUSTSTORE_NAME, + "SZR SSL Client-Authentication KeyStore")); + + injectHttpClient(szr, httpClientBuilder.clientType(CLIENT_DEFAULT).build()); + injectHttpClient(dispatch, httpClientBuilder.clientType(CLIENT_RAW).build()); + + log.info("SZR-Client initialization successfull"); + } + + private void injectMdsIfAvailableAndActive(Map<String, Object> eidsaBindMap, SimpleEidasData eidData) { + if (basicConfig.getBasicConfigurationBoolean( + Constants.CONIG_PROPS_EIDAS_SZRCLIENT_SET_MDS_TO_EIDASBIND, false)) { + log.info("Injecting MDS into eidasBind ... "); + final Map<String, Object> mds = new HashMap<>(); + mds.put(PvpAttributeDefinitions.PRINCIPAL_NAME_NAME, eidData.getFamilyName()); + mds.put(PvpAttributeDefinitions.GIVEN_NAME_NAME, eidData.getGivenName()); + mds.put(PvpAttributeDefinitions.BIRTHDATE_NAME, eidData.getDateOfBirth()); + eidsaBindMap.put(ATTR_NAME_MDS, mds); + + } + } + + private byte[] sourceToByteArray(Source result) throws TransformerException { + final TransformerFactory factory = TransformerFactory.newInstance(); + factory.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, true); + final Transformer transformer = factory.newTransformer(); + transformer.setOutputProperty("omit-xml-declaration", "yes"); + transformer.setOutputProperty("method", "xml"); + final ByteArrayOutputStream out = new ByteArrayOutputStream(); + final StreamResult streamResult = new StreamResult(); + streamResult.setOutputStream(out); + transformer.transform(result, streamResult); + return out.toByteArray(); + } + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/szr/SzrService.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/clients/szr/SzrService.java index dde868b1..590f88a4 100644 --- a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/szr/SzrService.java +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/clients/szr/SzrService.java @@ -21,7 +21,7 @@ * that you distribute must include a readable copy of the "NOTICE" text file. */ -package at.asitplus.eidas.specific.modules.auth.eidas.v2.szr; +package at.asitplus.eidas.specific.modules.auth.eidas.v2.clients.szr; import java.net.URL; @@ -52,7 +52,7 @@ public class SzrService extends Service { "SZRBusinesspartnerTestumgebung"); static { - URL url = SzrService.class.getResource("./src/main/resources/szr_client/SZR-1.WSDL"); + URL url = SzrService.class.getResource("./src/main/resources/wsdl/szr_client/SZR-1.WSDL"); if (url == null) { url = SzrService.class.getClassLoader().getResource("/szr_client/SZR-1.WSDL"); } diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/clients/zmr/IZmrClient.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/clients/zmr/IZmrClient.java new file mode 100644 index 00000000..c4e8ece0 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/clients/zmr/IZmrClient.java @@ -0,0 +1,98 @@ +/* + * Copyright 2020 A-SIT Plus GmbH + * AT-specific eIDAS Connector has been developed in a cooperation between EGIZ, + * A-SIT Plus GmbH, A-SIT, and Graz University of Technology. + * + * Licensed under the EUPL, Version 1.2 or - as soon they will be approved by + * the European Commission - subsequent versions of the EUPL (the "License"); + * You may not use this work except in compliance with the License. + * You may obtain a copy of the License at: + * https://joinup.ec.europa.eu/news/understanding-eupl-v12 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This product combines work with different licenses. See the "NOTICE" text + * file for details on the various modules and licenses. + * The "NOTICE" text file is part of the distribution. Any derivative works + * that you distribute must include a readable copy of the "NOTICE" text file. + */ + +package at.asitplus.eidas.specific.modules.auth.eidas.v2.clients.zmr; + +import java.math.BigInteger; + +import javax.annotation.Nonnull; +import javax.annotation.Nullable; + +import at.asitplus.eidas.specific.modules.auth.eidas.v2.clients.zmr.ZmrSoapClient.ZmrRegisterResult; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.RegisterResult; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.SimpleEidasData; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.EidasSAuthenticationException; +import at.gv.bmi.namespace.zmr_su.zmr._20040201.PersonSuchenRequest; + +public interface IZmrClient { + + /** + * Search person based on eIDAS personal identifier. + * + * @param zmrProzessId ProcessId from ZMR or <code>null</code> if no processId exists + * @param personIdentifier Full eIDAS personal identifier with prefix + * @param citizenCountryCode CountryCode of the eIDAS proxy-service + * @return Search result but never <code>null</code> + * @throws EidasSAuthenticationException In case of a communication error + */ + @Nonnull + ZmrRegisterResult searchWithPersonIdentifier(@Nullable BigInteger zmrProzessId, @Nonnull String personIdentifier, + @Nonnull String citizenCountryCode) throws EidasSAuthenticationException; + + /** + * Search person based on eIDSA MDS information. + * + * @param zmrProzessId ProcessId from ZMR or <code>null</code> if no processId exists + * @param givenName eIDAS given name + * @param familyName eIDAS principle name + * @param dateOfBirth eIDAS date-of-birth + * @param citizenCountryCode CountryCode of the eIDAS proxy-service + * @return Search result but never <code>null</code> + * @throws EidasSAuthenticationException In case of a communication error + */ + @Nonnull + ZmrRegisterResult searchWithMds(@Nullable BigInteger zmrProzessId, @Nonnull String givenName, + @Nonnull String familyName, @Nonnull String dateOfBirth, @Nonnull String citizenCountryCode) + throws EidasSAuthenticationException; + + /** + * Search person based on country-specific natural person set. + * + * @param zmrProzessId ProcessId from ZMR or <code>null</code> if no processId exists + * @param personSearchDao Specific set of natural person informations. + * @param citizenCountryCode CountryCode of the eIDAS proxy-service + * @return Search result but never <code>null</code> + * @throws EidasSAuthenticationException In case of a communication error + */ + @Nonnull + ZmrRegisterResult searchCountrySpecific(@Nullable BigInteger zmrProzessId, + @Nonnull PersonSuchenRequest personSearchDao, @Nonnull String citizenCountryCode) + throws EidasSAuthenticationException; + + /** + * Update ZMR entry to KITT existing ZMR identity with this eIDAS authentication. + * + * @param zmrProzessId zmrProzessId ProcessId from ZMR or <code>null</code> if no processId exists + * @param registerResult Already matched eIDAS identity that should be KITT + * @param eidData eIDAS eID information from current authentication process + * @return Update result but never <code>null</code> + * @throws EidasSAuthenticationException In case of a communication error + */ + @Nonnull + ZmrRegisterResult update(@Nullable BigInteger zmrProzessId, RegisterResult registerResult, SimpleEidasData eidData) + throws EidasSAuthenticationException; + + ZmrRegisterResult searchWithResidenceData(@Nullable BigInteger zmrProzessId, String givenName, String familyName, + String dateOfBirth, String zipcode, String city, String street); + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/clients/zmr/ZmrSoapClient.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/clients/zmr/ZmrSoapClient.java new file mode 100644 index 00000000..29914e21 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/clients/zmr/ZmrSoapClient.java @@ -0,0 +1,775 @@ +package at.asitplus.eidas.specific.modules.auth.eidas.v2.clients.zmr; + +import java.math.BigInteger; +import java.net.URL; +import java.text.MessageFormat; +import java.util.Arrays; +import java.util.Collection; +import java.util.Collections; +import java.util.HashSet; +import java.util.List; +import java.util.Objects; +import java.util.Optional; +import java.util.Set; +import java.util.stream.Collectors; + +import javax.annotation.Nonnull; +import javax.annotation.PostConstruct; +import javax.xml.ws.BindingProvider; + +import org.apache.commons.lang3.StringUtils; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.lang.NonNull; +import org.springframework.lang.Nullable; + +import at.asitplus.eidas.specific.modules.auth.eidas.v2.Constants; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.clients.AbstractSoapClient; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.RegisterResult; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.SimpleEidasData; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.EidasSAuthenticationException; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.WorkflowException; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.ZmrCommunicationException; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.utils.VersionHolder; +import at.gv.bmi.namespace.zmr_su.base._20040201.ClientInfoType; +import at.gv.bmi.namespace.zmr_su.base._20040201.Organisation; +import at.gv.bmi.namespace.zmr_su.base._20040201.RequestType; +import at.gv.bmi.namespace.zmr_su.base._20040201.ResponseType; +import at.gv.bmi.namespace.zmr_su.base._20040201.WorkflowInfoClient; +import at.gv.bmi.namespace.zmr_su.base._20040201.WorkflowInfoServer; +import at.gv.bmi.namespace.zmr_su.base._20040201_.Service; +import at.gv.bmi.namespace.zmr_su.base._20040201_.ServiceFault; +import at.gv.bmi.namespace.zmr_su.base._20040201_.ServicePort; +import at.gv.bmi.namespace.zmr_su.zmr._20040201.EidasIdentitaetAnlageType; +import at.gv.bmi.namespace.zmr_su.zmr._20040201.EidasIdentitaetErgebnisType; +import at.gv.bmi.namespace.zmr_su.zmr._20040201.EidasSuchdatenType; +import at.gv.bmi.namespace.zmr_su.zmr._20040201.ErgebniskriterienType; +import at.gv.bmi.namespace.zmr_su.zmr._20040201.NatuerlichePersonErgebnisType; +import at.gv.bmi.namespace.zmr_su.zmr._20040201.PersonAendernInfoType; +import at.gv.bmi.namespace.zmr_su.zmr._20040201.PersonAendernRequest; +import at.gv.bmi.namespace.zmr_su.zmr._20040201.PersonErgebnisSatzType; +import at.gv.bmi.namespace.zmr_su.zmr._20040201.PersonErgebnisType; +import at.gv.bmi.namespace.zmr_su.zmr._20040201.PersonReferenzType; +import at.gv.bmi.namespace.zmr_su.zmr._20040201.PersonSuchenRequest; +import at.gv.bmi.namespace.zmr_su.zmr._20040201.PersonSuchenResponse; +import at.gv.bmi.namespace.zmr_su.zmr._20040201.PersonensucheInfoType; +import at.gv.bmi.namespace.zmr_su.zmr._20040201.SuchkriterienType; +import at.gv.e_government.reference.namespace.persondata.de._20040201.IdentificationType; +import at.gv.e_government.reference.namespace.persondata.de._20040201.NatuerlichePersonTyp; +import at.gv.e_government.reference.namespace.persondata.de._20040201.PersonenNameTyp; +import at.gv.egiz.eaaf.core.api.data.EaafConstants; +import at.gv.egiz.eaaf.core.exceptions.EaafAuthenticationException; +import at.gv.egiz.eaaf.core.exceptions.EaafConfigurationException; +import lombok.AllArgsConstructor; +import lombok.Getter; +import lombok.extern.slf4j.Slf4j; + +/** + * ZMR client implementation for eIDAS matching operations. + * + * @author tlenz + * + */ +@Slf4j +public class ZmrSoapClient extends AbstractSoapClient implements IZmrClient { + + private static final String ERROR_MATCHING_01 = "module.eidasauth.matching.01"; + private static final String ERROR_MATCHING_02 = "module.eidasauth.matching.02"; + private static final String ERROR_MATCHING_99 = "module.eidasauth.matching.99"; + + private static final String LOGMSG_MISSING_CONFIG = "Missing configuration with key: {0}"; + + private static final String LOGMSG_ZMR_ERROR = + "Receive an error from ZMR during '{}' operation with msg: {}"; + private static final String LOGMSG_ZMR_RESP_PROCESS = + "Proces ZMR response during '{}' operation failes with msg: {}"; + + private static final String LOGMSG_ZMR_SOAP_ERROR = + "ZMR anwser for transaction: {} with code: {} and message: {}"; + + private static final String PROCESS_GENERAL = "eIDAS_Matching"; + private static final String PROCESS_SEARCH_PERSONAL_IDENTIFIER = + "Searching " + Constants.eIDAS_ATTR_PERSONALIDENTIFIER; + private static final String PROCESS_SEARCH_MDS_ONLY = "Searching with MDS only"; + private static final String PROCESS_SEARCH_COUNTRY_SPECIFIC = "Searching {} specific"; + + private static final String PROCESS_KITT_GENERAL = "KITT general-processing"; + private static final String PROCESS_KITT_IDENITIES_GET = "KITT get-latest-version"; + private static final String PROCESS_KITT_IDENITIES_UPDATE = "KITT update dataset"; + + private static final String CLIENT_INFO = "eIDAS MS-Connector v{0}"; + private static final String CLIENT_DEFAULT = "ZMR Client"; + + + @Autowired VersionHolder versionHolder; + + private ServicePort zmrClient; + + + @AllArgsConstructor + @Getter + public static class ZmrRegisterResult { + private final List<RegisterResult> personResult; + private final BigInteger processId; + + } + + @Override + public ZmrRegisterResult searchWithPersonIdentifier(BigInteger zmrProzessId, String personPseudonym, + String citizenCountryCode) throws EidasSAuthenticationException { + + try { + // build search request + final RequestType req = new RequestType(); + + // set eIDAS person information + final PersonSuchenRequest searchPersonReq = new PersonSuchenRequest(); + req.setPersonSuchenRequest(searchPersonReq); + final EidasSuchdatenType eidasInfos = new EidasSuchdatenType(); + searchPersonReq.getEidasSuchdaten().add(eidasInfos); + eidasInfos.setEidasArt(Constants.eIDAS_ATTRURN_PERSONALIDENTIFIER); + eidasInfos.setEidasWert(personPseudonym); + + // set work-flow client information + req.setWorkflowInfoClient(generateWorkFlowInfos(PROCESS_SEARCH_PERSONAL_IDENTIFIER, null)); + req.setClientInfo(generateClientInfos()); + + // set additionl search parameters + searchPersonReq.setPersonensucheInfo(generateSearchCriteria(false, true, false)); + + // request ZMR + log.trace("Requesting ZMR for '{}' operation", PROCESS_SEARCH_PERSONAL_IDENTIFIER); + final ResponseType resp = zmrClient.service(req, null); + + // parse ZMR response + return processZmrResponse(resp, citizenCountryCode, true, PROCESS_SEARCH_PERSONAL_IDENTIFIER); + + } catch (final ServiceFault e) { + final String errorMsg = extractReasonFromError(e); + log.warn(LOGMSG_ZMR_ERROR, PROCESS_SEARCH_PERSONAL_IDENTIFIER, errorMsg); + throw new ZmrCommunicationException(ERROR_MATCHING_01, new Object[] { errorMsg }, e); + + } catch (EidasSAuthenticationException e) { + throw e; + + } catch (final Exception e) { + log.warn(LOGMSG_ZMR_RESP_PROCESS, PROCESS_SEARCH_PERSONAL_IDENTIFIER, e.getMessage()); + throw new EidasSAuthenticationException(ERROR_MATCHING_99, new Object[] { e.getMessage() }, e); + + } + } + + @Override + public ZmrRegisterResult searchWithMds(BigInteger zmrProzessId, String givenName, String familyName, + String dateOfBirth, String citizenCountryCode) throws EidasSAuthenticationException { + try { + // build search request + final RequestType req = new RequestType(); + + // set eIDAS person information + final PersonSuchenRequest searchPersonReq = new PersonSuchenRequest(); + req.setPersonSuchenRequest(searchPersonReq); + + final NatuerlichePersonTyp searchNatPerson = new NatuerlichePersonTyp(); + searchPersonReq.setNatuerlichePerson(searchNatPerson); + final PersonenNameTyp searchNatPersonName = new PersonenNameTyp(); + searchNatPerson.setPersonenName(searchNatPersonName); + + searchNatPersonName.setFamilienname(familyName); + searchNatPersonName.setVorname(givenName); + searchNatPerson.setGeburtsdatum(dateOfBirth); + + // set work-flow client information + req.setWorkflowInfoClient(generateWorkFlowInfos(PROCESS_SEARCH_MDS_ONLY, zmrProzessId)); + req.setClientInfo(generateClientInfos()); + + // set additionl search parameters + searchPersonReq.setPersonensucheInfo(generateSearchCriteria(false, true, false)); + + // request ZMR + log.trace("Requesting ZMR for '{}' operation", PROCESS_SEARCH_MDS_ONLY); + final ResponseType resp = zmrClient.service(req, null); + + // parse ZMR response + return processZmrResponse(resp, citizenCountryCode, false, PROCESS_SEARCH_MDS_ONLY); + + } catch (final ServiceFault e) { + final String errorMsg = extractReasonFromError(e); + log.warn(LOGMSG_ZMR_ERROR, PROCESS_SEARCH_MDS_ONLY, errorMsg); + throw new ZmrCommunicationException(ERROR_MATCHING_01, new Object[] { errorMsg }, e); + + } catch (EidasSAuthenticationException e) { + throw e; + + } catch (final Exception e) { + log.warn(LOGMSG_ZMR_RESP_PROCESS, PROCESS_SEARCH_MDS_ONLY, e.getMessage()); + throw new EidasSAuthenticationException(ERROR_MATCHING_99, new Object[] { e.getMessage() }, e); + + } + + } + + @Override + public ZmrRegisterResult searchCountrySpecific(BigInteger zmrProzessId, PersonSuchenRequest personSearchDao, + String citizenCountryCode) + throws EidasSAuthenticationException { + final String friendlyMsg = MessageFormat.format(PROCESS_SEARCH_COUNTRY_SPECIFIC, citizenCountryCode); + + try { + // build search request + final RequestType req = new RequestType(); + + // set eIDAS person information + req.setPersonSuchenRequest(personSearchDao); + + // set work-flow client information + req.setWorkflowInfoClient(generateWorkFlowInfos(friendlyMsg, zmrProzessId)); + req.setClientInfo(generateClientInfos()); + + // set additionl search parameters + personSearchDao.setPersonensucheInfo(generateSearchCriteria(false, true, false)); + + // request ZMR + log.trace("Requesting ZMR for '{}' operation", friendlyMsg); + final ResponseType resp = zmrClient.service(req, null); + + // parse ZMR response + return processZmrResponse(resp, citizenCountryCode, true, + friendlyMsg); + + } catch (final ServiceFault e) { + final String errorMsg = extractReasonFromError(e); + log.warn(LOGMSG_ZMR_ERROR, friendlyMsg, errorMsg); + throw new ZmrCommunicationException(ERROR_MATCHING_01, new Object[] { errorMsg }, e); + + } catch (EidasSAuthenticationException e) { + throw e; + + } catch (final Exception e) { + log.warn(LOGMSG_ZMR_RESP_PROCESS, friendlyMsg, e.getMessage()); + throw new EidasSAuthenticationException(ERROR_MATCHING_99, new Object[] { e.getMessage() }, e); + + } + } + + @Override + public ZmrRegisterResult update(BigInteger zmrProzessId, RegisterResult registerResult, + SimpleEidasData eidData) throws EidasSAuthenticationException { + try { + //search person with register result, because update needs information from search response + PersonErgebnisType zmrPersonToKitt = searchPersonForUpdate(zmrProzessId, registerResult); + + // select elements that have to be updated + Collection<? extends EidasIdentitaetAnlageType> eidasDocumentToAdd = + selectEidasDocumentsToAdd(zmrPersonToKitt, eidData); + + if (eidasDocumentToAdd.isEmpty()) { + log.info("Find no eIDAS document for update during: {}. Looks strange but nothing todo", + PROCESS_KITT_GENERAL); + return new ZmrRegisterResult(Arrays.asList(registerResult), zmrProzessId); + + } else { + log.info("Find #{} eIDAS documents for update during: {}", eidasDocumentToAdd.size(), PROCESS_KITT_GENERAL); + + // update entry based on selected update info's and results from search response + return updatePersonInZmr(zmrPersonToKitt, eidasDocumentToAdd, eidData.getCitizenCountryCode()); + + } + + } catch (final ServiceFault e) { + final String errorMsg = extractReasonFromError(e); + log.warn(LOGMSG_ZMR_ERROR, PROCESS_KITT_GENERAL, errorMsg); + throw new ZmrCommunicationException(ERROR_MATCHING_01, new Object[] { errorMsg }, e); + + } catch (EidasSAuthenticationException e) { + throw e; + + } catch (final Exception e) { + log.warn(LOGMSG_ZMR_RESP_PROCESS, PROCESS_KITT_GENERAL, e.getMessage()); + throw new EidasSAuthenticationException(ERROR_MATCHING_99, new Object[] { e.getMessage() }, e); + + } + + } + + @Override + public ZmrRegisterResult searchWithResidenceData(BigInteger zmrProzessId, String givenName, String familyName, + String dateOfBirth, String zipcode, String city, String street) { + // TODO Auto-generated method stub + return null; + } + + @PostConstruct + private void initialize() throws EaafConfigurationException { + // set-up the ZMR client + initializeTechnicalZmrClient(); + + // validate additional ZMR communication parameters + valdiateAdditionalConfigParameters(); + + } + + private void initializeTechnicalZmrClient() throws EaafConfigurationException { + log.info("Starting ZMR-Client initialization .... "); + final URL url = ZmrSoapClient.class.getResource("/wsdl/zmr_client/wsdl/Service.wsdl"); + final Service zmrService = new Service(url); + zmrClient = zmrService.getService(); + + final String zmrServiceUrl = basicConfig.getBasicConfiguration( + Constants.CONIG_PROPS_EIDAS_ZMRCLIENT_ENDPOINT); + if (StringUtils.isEmpty(zmrServiceUrl)) { + log.error("No ZMR service-URL found. ZMR-Client initalisiation failed."); + throw new RuntimeException("No ZMR service URL found. ZMR-Client initalisiation failed."); + + } + + // inject handler + log.info("Use ZMR service-URL: " + zmrServiceUrl); + injectBindingProvider((BindingProvider) zmrClient, CLIENT_DEFAULT, zmrServiceUrl, + basicConfig.getBasicConfigurationBoolean(Constants.CONIG_PROPS_EIDAS_ZMRCLIENT_DEBUG_TRACEMESSAGES, + false)); + + // inject http parameters and SSL context + log.debug("Inject HTTP client settings ... "); + injectHttpClient(zmrClient, HttpClientConfig.builder() + .clientName(CLIENT_DEFAULT) + .clientType(CLIENT_DEFAULT) + .clientUrl(zmrServiceUrl) + .connectionTimeout(basicConfig.getBasicConfiguration( + Constants.CONIG_PROPS_EIDAS_ZMRCLIENT_TIMEOUT_CONNECTION, + Constants.HTTP_CLIENT_DEFAULT_TIMEOUT_CONNECTION)) + .responseTimeout(basicConfig.getBasicConfiguration( + Constants.CONIG_PROPS_EIDAS_ZMRCLIENT_TIMEOUT_RESPONSE, + Constants.HTTP_CLIENT_DEFAULT_TIMEOUT_RESPONSE)) + .keyStoreConfig(buildKeyStoreConfiguration( + Constants.CONIG_PROPS_EIDAS_ZMRCLIENT_SSL_KEYSTORE_TYPE, + Constants.CONIG_PROPS_EIDAS_ZMRCLIENT_SSL_KEYSTORE_PATH, + Constants.CONIG_PROPS_EIDAS_ZMRCLIENT_SSL_KEYSTORE_PASSWORD, + Constants.CONIG_PROPS_EIDAS_ZMRCLIENT_SSL_KEYSTORE_NAME, + "ZMR SSL Client-Authentication KeyStore")) + .keyAlias(basicConfig.getBasicConfiguration(Constants.CONIG_PROPS_EIDAS_ZMRCLIENT_SSL_KEYS_ALIAS)) + .keyPassword(basicConfig.getBasicConfiguration( + Constants.CONIG_PROPS_EIDAS_ZMRCLIENT_SSL_KEY_PASSWORD)) + .trustAll(false) + .trustStoreConfig(buildKeyStoreConfiguration( + Constants.CONIG_PROPS_EIDAS_ZMRCLIENT_SSL_TRUSTSTORE_TYPE, + Constants.CONIG_PROPS_EIDAS_ZMRCLIENT_SSL_TRUSTSTORE_PATH, + Constants.CONIG_PROPS_EIDAS_ZMRCLIENT_SSL_TRUSTSTORE_PASSWORD, + Constants.CONIG_PROPS_EIDAS_ZMRCLIENT_SSL_TRUSTSTORE_NAME, + "ZMR SSL Client-Authentication TrustStore")) + .build()); + + } + + private void valdiateAdditionalConfigParameters() { + checkConfigurationValue(Constants.CONIG_PROPS_EIDAS_ZMRCLIENT_REQ_ORGANIZATION_NR); + checkConfigurationValue(Constants.CONIG_PROPS_EIDAS_ZMRCLIENT_REQ_UPDATE_REASON_CODE); + + } + + private void checkConfigurationValue(String key) { + if (StringUtils.isEmpty(basicConfig.getBasicConfiguration(key))) { + throw new RuntimeException(MessageFormat.format(LOGMSG_MISSING_CONFIG, key)); + + } + } + + @Nonnull + private WorkflowInfoClient generateWorkFlowInfos(@Nonnull String subStepName, + @Nullable BigInteger prozessInstanzId) { + final WorkflowInfoClient infos = new WorkflowInfoClient(); + infos.setProzessName(PROCESS_GENERAL); + infos.setVorgangName(subStepName); + + //set processId that we received from ZMR before, if already available + if (prozessInstanzId != null) { + infos.setProzessInstanzID(prozessInstanzId); + + } + + return infos; + + } + + @Nonnull + private PersonensucheInfoType generateSearchCriteria(boolean searchInErnp, + boolean searchInZmrHistory, boolean includeHistoryResults) { + final PersonensucheInfoType personSearchInfo = new PersonensucheInfoType(); + final SuchkriterienType searchCriteria = new SuchkriterienType(); + final ErgebniskriterienType resultCriteria = new ErgebniskriterienType(); + personSearchInfo.setSuchkriterien(searchCriteria); + personSearchInfo.setErgebniskriterien(resultCriteria); + + // TODO: are these flags valid? + searchCriteria.setInclusivERnP(searchInErnp); + searchCriteria.setInclusivHistorie(searchInZmrHistory); + + // TODO: check 'processSearchPersonResponse' if we change this to 'true' + resultCriteria.setInclusivHistorie(includeHistoryResults); + + return personSearchInfo; + + } + + @Nonnull + private ClientInfoType generateClientInfos() { + final ClientInfoType clientInfo = new ClientInfoType(); + final Organisation clientOrganisation = new Organisation(); + clientInfo.setOrganisation(clientOrganisation); + + // set client information + clientInfo.setClient(MessageFormat.format(CLIENT_INFO, versionHolder.getVersion())); + + // set Behoerdennummer as organization identifier + clientOrganisation.setBehoerdenNr(basicConfig.getBasicConfiguration( + Constants.CONIG_PROPS_EIDAS_ZMRCLIENT_REQ_ORGANIZATION_NR)); + + return clientInfo; + } + + @Nonnull + private String extractReasonFromError(ServiceFault e) { + if (e.getFaultInfo() != null) { + return MessageFormat.format(LOGMSG_ZMR_SOAP_ERROR, + e.getFaultInfo().getServerTransaktionNr(), + e.getFaultInfo().getErrorCode(), + e.getFaultInfo().getErrorMessage()); + + } else { + log.error("ZMR response without error code", e); + return e.getMessage(); + + } + } + + @Nonnull + private ZmrRegisterResult processZmrResponse(@Nonnull ResponseType resp, + @Nonnull String citizenCountryCode, + boolean forceSinglePersonMatch, @Nonnull String processStepFiendlyname) + throws EaafAuthenticationException { + final PersonSuchenResponse searchPersonResp = resp.getPersonSuchenResponse(); + if (searchPersonResp.getPersonensuchergebnis() == null + || searchPersonResp.getPersonensuchergebnis().getPersonErgebnisSatz().isEmpty()) { + log.debug("ZMR result contains NO 'Personensuchergebnis' or 'PersonErgebnisSatz' is empty"); + return new ZmrRegisterResult(Collections.emptyList(), extractZmrProcessId(resp.getWorkflowInfoServer())); + + } else { + // TODO: what we to with ERnP results? + log.debug("Get #{} person results from '{}' operation", + searchPersonResp.getPersonensuchergebnis().getGefundeneSaetze(), processStepFiendlyname); + + if (forceSinglePersonMatch) { + return new ZmrRegisterResult(processSearchPersonResponseSingleResult( + searchPersonResp.getPersonensuchergebnis().getPersonErgebnisSatz(), + citizenCountryCode, processStepFiendlyname), + extractZmrProcessId(resp.getWorkflowInfoServer())); + + } else { + return new ZmrRegisterResult(processSearchPersonResponse( + searchPersonResp.getPersonensuchergebnis().getPersonErgebnisSatz(), citizenCountryCode), + extractZmrProcessId(resp.getWorkflowInfoServer())); + + } + } + } + + private BigInteger extractZmrProcessId(WorkflowInfoServer workflowInfoServer) { + return workflowInfoServer != null ? workflowInfoServer.getProzessInstanzID() : null; + + } + + @Nonnull + private List<RegisterResult> processSearchPersonResponse( + @Nonnull List<PersonErgebnisSatzType> personErgebnisSatz, + @Nonnull String citizenCountryCode) throws EaafAuthenticationException { + + return personErgebnisSatz.stream() + .map(el -> { + try { + return processPersonResult(el, citizenCountryCode); + + } catch (final EaafAuthenticationException e) { + log.warn("Skip ZMR person result by reason: {}", e.getMessage(), e); + return null; + + } + }) + .filter(Objects::nonNull) + .collect(Collectors.toList()); + + } + + @NonNull + private List<RegisterResult> processSearchPersonResponseSingleResult( + @Nonnull List<PersonErgebnisSatzType> personErgebnisSatz, + @Nonnull String citizenCountryCode, String processStepFiendlyname) throws EaafAuthenticationException { + if (personErgebnisSatz.size() > 1) { + log.error("Find more-than-one ZMR entry with search criteria that has to be unique"); + throw new WorkflowException(processStepFiendlyname, + "Find more-than-one ZMR entry with search criteria that has to be unique", true); + + } else { + return Arrays.asList(processPersonResult(personErgebnisSatz.get(0), citizenCountryCode)); + + } + } + + @Nonnull + private RegisterResult processPersonResult( + @Nonnull PersonErgebnisSatzType personEl, @Nonnull String citizenCountryCode) + throws EaafAuthenticationException { + // TODO: maybe check on 'null' if ERnP data is also allowed + log.debug("Find #{} data sets in person information", + personEl.getPersonendaten().getPersonErgebnis().size()); + + if (personEl.getPersonendaten().getPersonErgebnis().size() > 1) { + log.error("Find more than on person with eIDAS personalIdentifier."); + throw new EaafAuthenticationException(ERROR_MATCHING_02, null); + + } else { + return mapZmrResponseToRegisterResult( + personEl.getPersonendaten().getPersonErgebnis().get(0), citizenCountryCode); + + } + + } + + @Nonnull + private RegisterResult mapZmrResponseToRegisterResult(@Nonnull PersonErgebnisType person, + @Nonnull String citizenCountryCode) { + // TODO: kann ich bei historischen daten davon ausgehen dass die Reihenfolge der + // Ergebnisse von aktuell --> alt ist? + + // build result + return RegisterResult.builder() + .pseudonym(selectAllEidasDocument(person, citizenCountryCode, + Constants.eIDAS_ATTRURN_PERSONALIDENTIFIER)) + .familyName(person.getNatuerlichePerson().getPersonenName().getFamilienname()) + .givenName(person.getNatuerlichePerson().getPersonenName().getVorname()) + .dateOfBirth(person.getNatuerlichePerson().getGeburtsdatum()) + .bpk(extractBpkZp(person.getNatuerlichePerson())) + .placeOfBirth(selectSingleEidasDocument(person, citizenCountryCode, + Constants.eIDAS_ATTRURN_PLACEOFBIRTH)) + .birthName(selectSingleEidasDocument(person, citizenCountryCode, + Constants.eIDAS_ATTRURN_BIRTHNAME)) + .build(); + + } + + private String extractBpkZp(NatuerlichePersonErgebnisType natuerlichePerson) { + String bpk = natuerlichePerson.getIdentification().stream() + .filter(el -> Constants.MATCHING_INTERNAL_BPK_TARGET.equals(el.getType())) + .findFirst() + .map(el -> el.getValue()) + .orElse(null); + if (StringUtils.isEmpty(bpk)) { + log.warn("ZMR response contains no 'bPK' for target: 'ZP'"); + + } + return bpk; + + } + + /** + * Get all eIDAS document with the specified country code and document type. + * + * @param person Person information from ZMR + * @param citizenCountryCode Country code of the eIDAS attribute + * @param eidasAttrurnPersonalidentifier eIDAS attribute identifier + * @return {@link List} of eIDAS attribute values or an empty list if's not + * found + */ + @NonNull + private List<String> selectAllEidasDocument(PersonErgebnisType person, String citizenCountryCode, + String eidasAttrurnPersonalidentifier) { + return person.getEidasIdentitaet().stream() + .filter(el -> eidasAttrurnPersonalidentifier.equals(el.getEidasArt()) + && el.getStaatscode2().equals(citizenCountryCode)) + .map(el -> el.getEidasWert()) + .collect(Collectors.toList()); + + } + + /** + * Get the first eIDAS document with the specified country code and document + * type. + * + * @param person Person information from ZMR + * @param citizenCountryCode Country code of the eIDAS attribute + * @param eidasAttrurnPersonalidentifier eIDAS attribute identifier + * @return Value of this eIDAS attribute or <code>null</code> if's not found + */ + @Nullable + private String selectSingleEidasDocument(PersonErgebnisType person, String citizenCountryCode, + String eidasAttrurnPersonalidentifier) { + return person.getEidasIdentitaet().stream() + .filter(el -> eidasAttrurnPersonalidentifier.equals(el.getEidasArt()) + && el.getStaatscode2().equals(citizenCountryCode)) + .findFirst() + .map(el -> el.getEidasWert()) + .orElse(null); + + } + + private PersonErgebnisType searchPersonForUpdate(BigInteger zmrProzessId, RegisterResult registerResult) + throws ServiceFault, WorkflowException { + // build search request + final RequestType req = new RequestType(); + + // set eIDAS person information + final PersonSuchenRequest searchPersonReq = new PersonSuchenRequest(); + req.setPersonSuchenRequest(searchPersonReq); + NatuerlichePersonTyp natPersonInfos = new NatuerlichePersonTyp(); + searchPersonReq.setNatuerlichePerson(natPersonInfos); + PersonenNameTyp nameInfo = new PersonenNameTyp(); + natPersonInfos.setPersonenName(nameInfo); + IdentificationType bpkInfo = new IdentificationType(); + natPersonInfos.getIdentification().add(bpkInfo); + + // set MDS + nameInfo.setVorname(registerResult.getGivenName()); + nameInfo.setFamilienname(registerResult.getFamilyName()); + natPersonInfos.setGeburtsdatum(registerResult.getDateOfBirth()); + + //set bPK + bpkInfo.setValue(registerResult.getBpk()); + bpkInfo.setType(EaafConstants.URN_PREFIX_CDID + "ZP"); + + // set work-flow client information + req.setWorkflowInfoClient(generateWorkFlowInfos(PROCESS_KITT_IDENITIES_GET, zmrProzessId)); + req.setClientInfo(generateClientInfos()); + + // set additionl search parameters + searchPersonReq.setPersonensucheInfo(generateSearchCriteria(false, true, false)); + + // request ZMR + log.trace("Requesting ZMR for '{}' operation", PROCESS_KITT_IDENITIES_GET); + ResponseType resp = zmrClient.service(req, null); + log.trace("Receive response from ZMR for '{}' operation", PROCESS_KITT_IDENITIES_GET); + + return extractPersonResultForUpdaste(resp); + + } + + private PersonErgebnisType extractPersonResultForUpdaste(ResponseType resp) throws WorkflowException { + final PersonSuchenResponse searchPersonResp = resp.getPersonSuchenResponse(); + if (searchPersonResp.getPersonensuchergebnis() == null + || searchPersonResp.getPersonensuchergebnis().getPersonErgebnisSatz().isEmpty()) { + log.error("ZMR result contains NO 'Personensuchergebnis' or 'PersonErgebnisSatz' is empty"); + throw new WorkflowException(PROCESS_KITT_IDENITIES_GET, + "Find NO data-set with already matchted eID during ZMR KITT process"); + + } else { + List<PersonErgebnisSatzType> personErgebnisSatz = + searchPersonResp.getPersonensuchergebnis().getPersonErgebnisSatz(); + if (personErgebnisSatz.size() > 1) { + log.error("Find more than on person with aleady matched information."); + throw new WorkflowException(PROCESS_KITT_IDENITIES_GET, + "Find MORE-THAN-ONE data-sets with already matchted eID during ZMR KITT process"); + + } else { + return personErgebnisSatz.get(0).getPersonendaten().getPersonErgebnis().get(0); + + } + } + } + + private Collection<? extends EidasIdentitaetAnlageType> selectEidasDocumentsToAdd( + PersonErgebnisType zmrPersonToKitt, SimpleEidasData eidData) { + + //TODO: maybe we should re-factor SimpleEidasData to a generic data-model to facilitate arbitrary eIDAS attributes + Set<EidasIdentitaetAnlageType> result = new HashSet<>(); + addEidasDocumentIfNotAvailable(result, zmrPersonToKitt, eidData.getCitizenCountryCode(), + Constants.eIDAS_ATTRURN_PERSONALIDENTIFIER, eidData.getPseudonym(), true); + addEidasDocumentIfNotAvailable(result, zmrPersonToKitt, eidData.getCitizenCountryCode(), + Constants.eIDAS_ATTRURN_PLACEOFBIRTH, eidData.getPlaceOfBirth(), false); + addEidasDocumentIfNotAvailable(result, zmrPersonToKitt, eidData.getCitizenCountryCode(), + Constants.eIDAS_ATTRURN_BIRTHNAME, eidData.getBirthName(), false); + + return result; + + } + + private void addEidasDocumentIfNotAvailable(Set<EidasIdentitaetAnlageType> result, + PersonErgebnisType zmrPersonToKitt, String citizenCountryCode, + String attrName, String attrValue, boolean allowMoreThanOneEntry) { + + if (StringUtils.isEmpty(attrValue)) { + log.trace("No eIDAS document: {}. Nothing todo for KITT process ... ", attrName); + return; + + } + + // check if eIDAS attribute is already includes an eIDAS-Document + boolean alreadyExist = zmrPersonToKitt.getEidasIdentitaet().stream() + .filter(el -> el.getEidasWert().equals(attrValue) + && el.getEidasArt().equals(attrName) + && el.getStaatscode2().equals(citizenCountryCode)) + .findAny() + .isPresent(); + + if (!alreadyExist) { + // check eIDAS documents already contains a document with this pair of country-code and attribute-name + Optional<EidasIdentitaetErgebnisType> oneDocWithNameExists = zmrPersonToKitt.getEidasIdentitaet().stream() + .filter(el -> el.getStaatscode2().equals(citizenCountryCode) + && el.getEidasArt().equals(attrName)) + .findAny(); + + if (!allowMoreThanOneEntry && oneDocWithNameExists.isPresent() + && !oneDocWithNameExists.get().getEidasWert().equals(attrValue)) { + log.warn("eIDAS document: {} already exists for country: {} but attribute-value does not match. " + + "Skip update process because no multi-value allowed for this ... ", + attrName, citizenCountryCode); + + } else { + EidasIdentitaetAnlageType eidasDocToAdd = new EidasIdentitaetAnlageType(); + eidasDocToAdd.setStaatscode2(citizenCountryCode); + eidasDocToAdd.setEidasArt(attrName); + eidasDocToAdd.setEidasWert(attrValue); + log.info("Add eIDAS document: {} for country: {} to ZMR person", attrName, citizenCountryCode); + result.add(eidasDocToAdd); + + } + + } else { + log.debug("eIDAS document: {} already exists for country: {}. Skip update process for this ... ", + attrName, citizenCountryCode); + + } + } + + private ZmrRegisterResult updatePersonInZmr(PersonErgebnisType zmrPersonToKitt, + Collection<? extends EidasIdentitaetAnlageType> eidasDocumentToAdd, String citizenCountryCode) + throws ServiceFault { + final RequestType req = new RequestType(); + PersonAendernRequest updateReq = new PersonAendernRequest(); + req.setPersonAendernRequest(updateReq); + + // set reference elements for person update + PersonReferenzType updateRef = new PersonReferenzType(); + updateRef.setTechnisch(zmrPersonToKitt.getEntityErgebnisReferenz().getTechnisch()); + updateRef.setZMRZahl(zmrPersonToKitt.getZMRZahl()); + updateReq.setPersonReferenz(updateRef); + + // set reason from this update + PersonAendernInfoType updateInfo = new PersonAendernInfoType(); + updateInfo.setGrundCode(basicConfig.getBasicConfiguration( + Constants.CONIG_PROPS_EIDAS_ZMRCLIENT_REQ_UPDATE_REASON_CODE)); + updateInfo.setGrundFreitext(basicConfig.getBasicConfiguration( + Constants.CONIG_PROPS_EIDAS_ZMRCLIENT_REQ_UPDATE_REASON_TEXT)); + updateReq.setPersonAendernInfo(updateInfo); + + // add new eIDAS documents that should be added + updateReq.getEidasIdentitaetAnlage().addAll(eidasDocumentToAdd); + + // request ZMR + log.trace("Requesting ZMR for '{}' operation", PROCESS_KITT_IDENITIES_UPDATE); + ResponseType resp = zmrClient.service(req, null); + log.trace("Receive response from ZMR for '{}' operation", PROCESS_KITT_IDENITIES_UPDATE); + + return new ZmrRegisterResult(Arrays.asList( + mapZmrResponseToRegisterResult(resp.getPersonAendernResponse().getPersonErgebnis(), citizenCountryCode)), + extractZmrProcessId(resp.getWorkflowInfoServer())); + + } + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/config/EidasConnectorMessageSource.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/config/EidasConnectorMessageSource.java new file mode 100644 index 00000000..7a9f472a --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/config/EidasConnectorMessageSource.java @@ -0,0 +1,21 @@ +package at.asitplus.eidas.specific.modules.auth.eidas.v2.config; + +import java.util.Arrays; +import java.util.List; + +import at.gv.egiz.eaaf.core.api.logging.IMessageSourceLocation; + +/** + * Inject eIDAS Connector specific messages into Spring based message-source. + * + * @author tlenz + * + */ +public class EidasConnectorMessageSource implements IMessageSourceLocation { + + @Override + public List<String> getMessageSourceLocation() { + return Arrays.asList("classpath:/messages/eidas_connector_message"); + } + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/dao/ErnbEidData.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/dao/ErnbEidData.java deleted file mode 100644 index 6c7eeb6b..00000000 --- a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/dao/ErnbEidData.java +++ /dev/null @@ -1,115 +0,0 @@ -/* - * Copyright 2018 A-SIT Plus GmbH - * AT-specific eIDAS Connector has been developed in a cooperation between EGIZ, - * A-SIT Plus GmbH, A-SIT, and Graz University of Technology. - * - * Licensed under the EUPL, Version 1.2 or - as soon they will be approved by - * the European Commission - subsequent versions of the EUPL (the "License"); - * You may not use this work except in compliance with the License. - * You may obtain a copy of the License at: - * https://joinup.ec.europa.eu/news/understanding-eupl-v12 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" basis, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * This product combines work with different licenses. See the "NOTICE" text - * file for details on the various modules and licenses. - * The "NOTICE" text file is part of the distribution. Any derivative works - * that you distribute must include a readable copy of the "NOTICE" text file. -*/ - -package at.asitplus.eidas.specific.modules.auth.eidas.v2.dao; - -import java.text.SimpleDateFormat; - -import org.joda.time.DateTime; - -import at.gv.e_government.reference.namespace.persondata._20020228.PostalAddressType; - -public class ErnbEidData { - - private String citizenCountryCode = null; - - // MDS - private String pseudonym = null; - private String givenName = null; - private String familyName = null; - private DateTime dateOfBirth = null; - - // additional attributes - private String placeOfBirth = null; - private String birthName = null; - private PostalAddressType address = null; - - public String getCitizenCountryCode() { - return citizenCountryCode; - } - - public void setCitizenCountryCode(String citizenCountryCode) { - this.citizenCountryCode = citizenCountryCode; - } - - public String getPseudonym() { - return pseudonym; - } - - public void setPseudonym(String pseudonym) { - this.pseudonym = pseudonym; - } - - public String getGivenName() { - return givenName; - } - - public void setGivenName(String givenName) { - this.givenName = givenName; - } - - public String getFamilyName() { - return familyName; - } - - public void setFamilyName(String familyName) { - this.familyName = familyName; - } - - public DateTime getDateOfBirth() { - return dateOfBirth; - } - - public void setDateOfBirth(DateTime dateOfBirth) { - this.dateOfBirth = dateOfBirth; - } - - public String getPlaceOfBirth() { - return placeOfBirth; - } - - public void setPlaceOfBirth(String placeOfBirth) { - this.placeOfBirth = placeOfBirth; - } - - public String getBirthName() { - return birthName; - } - - public void setBirthName(String birthName) { - this.birthName = birthName; - } - - public PostalAddressType getAddress() { - return address; - } - - public void setAddress(PostalAddressType address) { - this.address = address; - } - - public String getFormatedDateOfBirth() { - return new SimpleDateFormat("yyyy-MM-dd").format(dateOfBirth.toDate()); - } - -} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/dao/MatchedPersonResult.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/dao/MatchedPersonResult.java new file mode 100644 index 00000000..1e8fcecf --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/dao/MatchedPersonResult.java @@ -0,0 +1,41 @@ +package at.asitplus.eidas.specific.modules.auth.eidas.v2.dao; + +import lombok.Builder; +import lombok.Getter; + +/** + * Information about a natural person that is already matched. + * + * @author tlenz + * + */ +@Getter +@Builder +public class MatchedPersonResult { + + /** + * Matched person result from matching result. + * + * @param matchingResult Result of the matching process + * @param citizenCountryCode Country-Code of the eIDAS Proxy-Service + */ + public static MatchedPersonResult generateFormMatchingResult(RegisterResult matchingResult, + String citizenCountryCode) { + return MatchedPersonResult.builder() + .familyName(matchingResult.getFamilyName()) + .givenName(matchingResult.getGivenName()) + .dateOfBirth(matchingResult.getDateOfBirth()) + .bpk(matchingResult.getBpk()) + .countryCode(citizenCountryCode) + .build(); + } + + private final String countryCode; + private final String givenName; + private final String familyName; + private final String dateOfBirth; + private final String bpk; + + private String vsz; + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/dao/RegisterResult.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/dao/RegisterResult.java new file mode 100644 index 00000000..aa82d806 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/dao/RegisterResult.java @@ -0,0 +1,51 @@ +/* + * Copyright 2020 A-SIT Plus GmbH + * AT-specific eIDAS Connector has been developed in a cooperation between EGIZ, + * A-SIT Plus GmbH, A-SIT, and Graz University of Technology. + * + * Licensed under the EUPL, Version 1.2 or - as soon they will be approved by + * the European Commission - subsequent versions of the EUPL (the "License"); + * You may not use this work except in compliance with the License. + * You may obtain a copy of the License at: + * https://joinup.ec.europa.eu/news/understanding-eupl-v12 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This product combines work with different licenses. See the "NOTICE" text + * file for details on the various modules and licenses. + * The "NOTICE" text file is part of the distribution. Any derivative works + * that you distribute must include a readable copy of the "NOTICE" text file. + */ + +package at.asitplus.eidas.specific.modules.auth.eidas.v2.dao; + +import java.util.List; + +import at.gv.e_government.reference.namespace.persondata._20020228.PostalAddressType; +import lombok.Builder; +import lombok.Getter; + +@Builder +@Getter +public class RegisterResult { + + // MDS + private final List<String> pseudonym; + private final String givenName; + private final String familyName; + private final String dateOfBirth; + + // additional attributes + private String placeOfBirth; + private String birthName; + private String taxNumber; + private PostalAddressType address; + + private String bpk; + + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/dao/SelectedLoginMethod.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/dao/SelectedLoginMethod.java new file mode 100644 index 00000000..f8e2ff2e --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/dao/SelectedLoginMethod.java @@ -0,0 +1,5 @@ +package at.asitplus.eidas.specific.modules.auth.eidas.v2.dao; + +public enum SelectedLoginMethod { + EIDAS_LOGIN, MOBILE_PHONE_SIGNATURE_LOGIN, NO_OTHER_LOGIN +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/dao/SimpleEidasData.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/dao/SimpleEidasData.java new file mode 100644 index 00000000..35f353f4 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/dao/SimpleEidasData.java @@ -0,0 +1,99 @@ +/* + * Copyright 2020 A-SIT Plus GmbH + * AT-specific eIDAS Connector has been developed in a cooperation between EGIZ, + * A-SIT Plus GmbH, A-SIT, and Graz University of Technology. + * + * Licensed under the EUPL, Version 1.2 or - as soon they will be approved by + * the European Commission - subsequent versions of the EUPL (the "License"); + * You may not use this work except in compliance with the License. + * You may obtain a copy of the License at: + * https://joinup.ec.europa.eu/news/understanding-eupl-v12 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This product combines work with different licenses. See the "NOTICE" text + * file for details on the various modules and licenses. + * The "NOTICE" text file is part of the distribution. Any derivative works + * that you distribute must include a readable copy of the "NOTICE" text file. + */ + +package at.asitplus.eidas.specific.modules.auth.eidas.v2.dao; + +import org.apache.commons.lang3.builder.EqualsBuilder; + +import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.WorkflowException; +import at.gv.e_government.reference.namespace.persondata._20020228.PostalAddressType; +import lombok.Builder; +import lombok.Data; + +@Data +@Builder +public class SimpleEidasData { + + /** + * Full eIDAS personal identifier with prefix. + */ + private final String personalIdentifier; + + /** + * Citizen country-code from eIDAS personal-identifier. + */ + private final String citizenCountryCode; + + // MDS + /** + * eIDAS personal identifier without prefix. + */ + private final String pseudonym; + private final String givenName; + private final String familyName; + private final String dateOfBirth; + + // additional attributes + private final String placeOfBirth; + private final String birthName; + private final PostalAddressType address; + private final String taxNumber; + + /** + * Compares the register result with the eidas data. + * + * @param result The register data to use for comparison + * @return true or false depending of the data matches + * @throws WorkflowException if multiple results have been found + */ + public boolean equalsRegisterData(RegisterResult result) throws WorkflowException { + /*TODO: maybe this is check is not valid, because only the minimum data-set (personalIdentifer, givenName, + * familyName, dateOfBirth) has to be always available. Any other attributes are optional. + * This check will always evaluate to false if register has more information as current eIDAS process!!! + */ + + return new EqualsBuilder() + .append(result.getGivenName(), givenName) + .append(result.getFamilyName(), familyName) + .append(result.getDateOfBirth(), dateOfBirth) + .append(result.getPlaceOfBirth(), placeOfBirth) + .append(result.getBirthName(), birthName) + .append(result.getTaxNumber(), taxNumber) + .isEquals() && result.getPseudonym().stream() + .anyMatch(el -> el.equals(pseudonym)); + } + + /** + * Checks if the MDS (<code>givenName</code>, <code>familyName</code>, + * <code>dateOfBirth</code>) matches. + */ + public boolean equalsMds(SimpleEidasData other) { + return new EqualsBuilder() + .append(other.givenName, givenName) + .append(other.familyName, familyName) + .append(other.dateOfBirth, dateOfBirth) + .isEquals(); + } + + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/dao/SimpleMobileSignatureData.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/dao/SimpleMobileSignatureData.java new file mode 100644 index 00000000..92e727ea --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/dao/SimpleMobileSignatureData.java @@ -0,0 +1,53 @@ +/* + * Copyright 2020 A-SIT Plus GmbH + * AT-specific eIDAS Connector has been developed in a cooperation between EGIZ, + * A-SIT Plus GmbH, A-SIT, and Graz University of Technology. + * + * Licensed under the EUPL, Version 1.2 or - as soon they will be approved by + * the European Commission - subsequent versions of the EUPL (the "License"); + * You may not use this work except in compliance with the License. + * You may obtain a copy of the License at: + * https://joinup.ec.europa.eu/news/understanding-eupl-v12 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This product combines work with different licenses. See the "NOTICE" text + * file for details on the various modules and licenses. + * The "NOTICE" text file is part of the distribution. Any derivative works + * that you distribute must include a readable copy of the "NOTICE" text file. + */ + +package at.asitplus.eidas.specific.modules.auth.eidas.v2.dao; + +import org.apache.commons.lang3.builder.EqualsBuilder; + +import lombok.Builder; +import lombok.Data; + +@Data +@Builder +public class SimpleMobileSignatureData { + + private final String bpk; + private final String givenName; + private final String familyName; + private final String dateOfBirth; + + /** + * Compares the received authentication data from the mobile phone signature with the eid data received via eIDAS. + * + * @param simpleEidasData The extracted eIDAS data + * @return Returns true, if the eIDAS data matches the mobile phone signature data and false otherwise. + */ + public boolean equalsSimpleEidasData(SimpleEidasData simpleEidasData) { + return new EqualsBuilder() + .append(simpleEidasData.getGivenName(), givenName) + .append(simpleEidasData.getFamilyName(), familyName) + .append(simpleEidasData.getDateOfBirth(), dateOfBirth) + .isEquals(); + } +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/ernp/DummyErnpClient.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/ernp/DummyErnpClient.java new file mode 100644 index 00000000..77f5e3cd --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/ernp/DummyErnpClient.java @@ -0,0 +1,74 @@ +/* + * Copyright 2020 A-SIT Plus GmbH + * AT-specific eIDAS Connector has been developed in a cooperation between EGIZ, + * A-SIT Plus GmbH, A-SIT, and Graz University of Technology. + * + * Licensed under the EUPL, Version 1.2 or - as soon they will be approved by + * the European Commission - subsequent versions of the EUPL (the "License"); + * You may not use this work except in compliance with the License. + * You may obtain a copy of the License at: + * https://joinup.ec.europa.eu/news/understanding-eupl-v12 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This product combines work with different licenses. See the "NOTICE" text + * file for details on the various modules and licenses. + * The "NOTICE" text file is part of the distribution. Any derivative works + * that you distribute must include a readable copy of the "NOTICE" text file. + */ + +package at.asitplus.eidas.specific.modules.auth.eidas.v2.ernp; + +import java.util.Collections; +import java.util.List; + +import org.springframework.stereotype.Service; + +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.RegisterResult; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.SimpleEidasData; + +@Service("ErnbClientForeIDAS") +public class DummyErnpClient implements IErnpClient { + + @Override + public List<RegisterResult> searchWithPersonIdentifier(String personIdentifier) { + return Collections.emptyList(); + } + + @Override + public List<RegisterResult> searchWithMds(String givenName, String familyName, String dateOfBirth) { + //TODO will I only receive matches where all three values match perfectly? + return Collections.emptyList(); + } + + @Override + public List<RegisterResult> searchDeSpecific(String givenName, String familyName, String dateOfBirth, + String birthPlace, String birthName) { + //TODO + return Collections.emptyList(); + } + + @Override + public List<RegisterResult> searchItSpecific(String taxNumber) { + //TODO + return Collections.emptyList(); + } + + @Override + public RegisterResult update(RegisterResult registerResult, SimpleEidasData eidData) { + //TODO + return null; + } + + @Override + public List<RegisterResult> searchWithBpkZp(String bpkzp) { + //TODO + return Collections.emptyList(); + } + + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/ernp/IErnpClient.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/ernp/IErnpClient.java new file mode 100644 index 00000000..b2a9005b --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/ernp/IErnpClient.java @@ -0,0 +1,46 @@ +/* + * Copyright 2020 A-SIT Plus GmbH + * AT-specific eIDAS Connector has been developed in a cooperation between EGIZ, + * A-SIT Plus GmbH, A-SIT, and Graz University of Technology. + * + * Licensed under the EUPL, Version 1.2 or - as soon they will be approved by + * the European Commission - subsequent versions of the EUPL (the "License"); + * You may not use this work except in compliance with the License. + * You may obtain a copy of the License at: + * https://joinup.ec.europa.eu/news/understanding-eupl-v12 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This product combines work with different licenses. See the "NOTICE" text + * file for details on the various modules and licenses. + * The "NOTICE" text file is part of the distribution. Any derivative works + * that you distribute must include a readable copy of the "NOTICE" text file. + */ + +package at.asitplus.eidas.specific.modules.auth.eidas.v2.ernp; + +import java.util.List; + +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.RegisterResult; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.SimpleEidasData; + +public interface IErnpClient { + + List<RegisterResult> searchWithPersonIdentifier(String personIdentifier); + + List<RegisterResult> searchWithMds(String givenName, String familyName, String dateOfBirth); + + List<RegisterResult> searchDeSpecific(String givenName, String familyName, String dateOfBirth, + String birthPlace, String birthName); + + List<RegisterResult> searchItSpecific(String taxNumber); + + RegisterResult update(RegisterResult registerResult, SimpleEidasData eidData); + + List<RegisterResult> searchWithBpkZp(String bpkzp); + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/exception/InvalidUserInputException.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/exception/InvalidUserInputException.java new file mode 100644 index 00000000..c7df56d0 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/exception/InvalidUserInputException.java @@ -0,0 +1,34 @@ +/* + * Copyright 2020 A-SIT Plus GmbH + * AT-specific eIDAS Connector has been developed in a cooperation between EGIZ, + * A-SIT Plus GmbH, A-SIT, and Graz University of Technology. + * + * Licensed under the EUPL, Version 1.2 or - as soon they will be approved by + * the European Commission - subsequent versions of the EUPL (the "License"); + * You may not use this work except in compliance with the License. + * You may obtain a copy of the License at: + * https://joinup.ec.europa.eu/news/understanding-eupl-v12 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This product combines work with different licenses. See the "NOTICE" text + * file for details on the various modules and licenses. + * The "NOTICE" text file is part of the distribution. Any derivative works + * that you distribute must include a readable copy of the "NOTICE" text file. + */ + +package at.asitplus.eidas.specific.modules.auth.eidas.v2.exception; + +public class InvalidUserInputException extends EidasSAuthenticationException { + private static final long serialVersionUID = 1L; + + public InvalidUserInputException(String errorCode) { + super(errorCode, null); + + } + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/exception/ManualFixNecessaryException.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/exception/ManualFixNecessaryException.java new file mode 100644 index 00000000..cf69bd2c --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/exception/ManualFixNecessaryException.java @@ -0,0 +1,44 @@ +/* + * Copyright 2020 A-SIT Plus GmbH + * AT-specific eIDAS Connector has been developed in a cooperation between EGIZ, + * A-SIT Plus GmbH, A-SIT, and Graz University of Technology. + * + * Licensed under the EUPL, Version 1.2 or - as soon they will be approved by + * the European Commission - subsequent versions of the EUPL (the "License"); + * You may not use this work except in compliance with the License. + * You may obtain a copy of the License at: + * https://joinup.ec.europa.eu/news/understanding-eupl-v12 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This product combines work with different licenses. See the "NOTICE" text + * file for details on the various modules and licenses. + * The "NOTICE" text file is part of the distribution. Any derivative works + * that you distribute must include a readable copy of the "NOTICE" text file. +*/ + +package at.asitplus.eidas.specific.modules.auth.eidas.v2.exception; + +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.SimpleEidasData; + +public class ManualFixNecessaryException extends EidasSAuthenticationException { + private static final long serialVersionUID = 1L; + + //TODO: should we pass some infos? + public ManualFixNecessaryException(String personIdentifier) { + super("module.eidasauth.matching.04", new Object[] { personIdentifier }); + } + + public ManualFixNecessaryException(SimpleEidasData eidData) { + super("module.eidasauth.matching.04", new Object[] { eidData.getPseudonym() }); + } + + public ManualFixNecessaryException(SimpleEidasData eidData, Throwable e) { + super("module.eidasauth.matching.04", new Object[] { eidData.getPseudonym() }, e); + } + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/exception/WorkflowException.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/exception/WorkflowException.java new file mode 100644 index 00000000..795b4386 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/exception/WorkflowException.java @@ -0,0 +1,94 @@ +/* + * Copyright 2020 A-SIT Plus GmbH + * AT-specific eIDAS Connector has been developed in a cooperation between EGIZ, + * A-SIT Plus GmbH, A-SIT, and Graz University of Technology. + * + * Licensed under the EUPL, Version 1.2 or - as soon they will be approved by + * the European Commission - subsequent versions of the EUPL (the "License"); + * You may not use this work except in compliance with the License. + * You may obtain a copy of the License at: + * https://joinup.ec.europa.eu/news/understanding-eupl-v12 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This product combines work with different licenses. See the "NOTICE" text + * file for details on the various modules and licenses. + * The "NOTICE" text file is part of the distribution. Any derivative works + * that you distribute must include a readable copy of the "NOTICE" text file. + */ + +package at.asitplus.eidas.specific.modules.auth.eidas.v2.exception; + +import lombok.Getter; + +@Getter +public class WorkflowException extends EidasSAuthenticationException { + private static final long serialVersionUID = 1L; + + private String processStepName; + private String errorReason; + private boolean requiresManualFix = false; + + /** + * In case of a error during matching work-flow. + * + * @param processStep Matching step identifier + * @param errorReason Reason for this error + */ + public WorkflowException(String processStep, String errorReason) { + super("module.eidasauth.matching.03", new Object[]{processStep, errorReason}); + this.processStepName = processStep; + this.errorReason = errorReason; + + } + + /** + * In case of a error during matching work-flow. + * + * @param processStep Matching step identifier + * @param errorReason Reason for this error + * @param e Catched exception + */ + public WorkflowException(String processStep, String errorReason, Throwable e) { + super("module.eidasauth.matching.03", new Object[]{processStep, errorReason}, e); + this.processStepName = processStep; + this.errorReason = errorReason; + + } + + /** + * In case of a error during matching work-flow. + * + * @param processStep Matching step identifier + * @param errorReason Reason for this error + * @param needsManualFix Mark this work-flow as manually fixable + */ + public WorkflowException(String processStep, String errorReason, boolean needsManualFix) { + super("module.eidasauth.matching.03", new Object[]{processStep, errorReason}); + this.processStepName = processStep; + this.errorReason = errorReason; + this.requiresManualFix = needsManualFix; + + } + + /** + * In case of a error during matching work-flow. + * + * @param processStep Matching step identifier + * @param errorReason Reason for this error + * @param needsManualFix Mark this work-flow as manually fixable + * @param e Catched exception + */ + public WorkflowException(String processStep, String errorReason, boolean needsManualFix, Throwable e) { + super("module.eidasauth.matching.03", new Object[]{processStep, errorReason}, e); + this.processStepName = processStep; + this.errorReason = errorReason; + this.requiresManualFix = needsManualFix; + + } + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/exception/ZmrCommunicationException.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/exception/ZmrCommunicationException.java new file mode 100644 index 00000000..a6978458 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/exception/ZmrCommunicationException.java @@ -0,0 +1,38 @@ +/* + * Copyright 2018 A-SIT Plus GmbH + * AT-specific eIDAS Connector has been developed in a cooperation between EGIZ, + * A-SIT Plus GmbH, A-SIT, and Graz University of Technology. + * + * Licensed under the EUPL, Version 1.2 or - as soon they will be approved by + * the European Commission - subsequent versions of the EUPL (the "License"); + * You may not use this work except in compliance with the License. + * You may obtain a copy of the License at: + * https://joinup.ec.europa.eu/news/understanding-eupl-v12 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This product combines work with different licenses. See the "NOTICE" text + * file for details on the various modules and licenses. + * The "NOTICE" text file is part of the distribution. Any derivative works + * that you distribute must include a readable copy of the "NOTICE" text file. +*/ + +package at.asitplus.eidas.specific.modules.auth.eidas.v2.exception; + +public class ZmrCommunicationException extends EidasSAuthenticationException { + + private static final long serialVersionUID = 1L; + + public ZmrCommunicationException(String internalMsgId, Object[] params) { + super(internalMsgId, params); + } + + public ZmrCommunicationException(String internalMsgId, Object[] params, Throwable e) { + super(internalMsgId, params, e); + } + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/handler/AbstractEidProcessor.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/handler/AbstractEidProcessor.java index 90be9a7a..64c6adeb 100644 --- a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/handler/AbstractEidProcessor.java +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/handler/AbstractEidProcessor.java @@ -23,6 +23,11 @@ package at.asitplus.eidas.specific.modules.auth.eidas.v2.handler; + + +import static at.asitplus.eidas.specific.modules.auth.eidas.v2.utils.EidasResponseUtils.processCountryCode; +import static at.asitplus.eidas.specific.modules.auth.eidas.v2.utils.EidasResponseUtils.processDateOfBirthToString; + import java.nio.charset.StandardCharsets; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; @@ -33,15 +38,13 @@ import java.util.regex.Pattern; import org.apache.commons.lang3.StringUtils; import org.joda.time.DateTime; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.lang.NonNull; import com.google.common.collect.ImmutableSortedSet; import at.asitplus.eidas.specific.modules.auth.eidas.v2.Constants; -import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.ErnbEidData; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.SimpleEidasData; import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.EidPostProcessingException; import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.EidasAttributeException; import at.asitplus.eidas.specific.modules.auth.eidas.v2.service.EidasAttributeRegistry; @@ -51,15 +54,14 @@ import at.gv.egiz.eaaf.core.api.IRequest; import at.gv.egiz.eaaf.core.api.data.EaafConstants; import at.gv.egiz.eaaf.core.api.idp.IConfigurationWithSP; import at.gv.egiz.eaaf.core.api.idp.ISpConfiguration; -import at.gv.egiz.eaaf.core.impl.data.Triple; import eu.eidas.auth.commons.attribute.AttributeDefinition; import eu.eidas.auth.commons.attribute.ImmutableAttributeMap; import eu.eidas.auth.commons.light.impl.LightRequest.Builder; import eu.eidas.auth.commons.protocol.eidas.SpType; -import eu.eidas.auth.commons.protocol.eidas.impl.PostalAddress; +import lombok.extern.slf4j.Slf4j; +@Slf4j public abstract class AbstractEidProcessor implements INationalEidProcessor { - private static final Logger log = LoggerFactory.getLogger(AbstractEidProcessor.class); @Autowired protected EidasAttributeRegistry attrRegistry; @@ -72,39 +74,40 @@ public abstract class AbstractEidProcessor implements INationalEidProcessor { buildLevelOfAssurance(pendingReq.getServiceProviderConfiguration(), authnRequestBuilder); buildProviderNameAndRequesterIdAttribute(pendingReq, authnRequestBuilder); buildRequestedAttributes(authnRequestBuilder); - } @Override - public final ErnbEidData postProcess(Map<String, Object> eidasAttrMap) throws EidPostProcessingException, + public final SimpleEidasData postProcess(Map<String, Object> eidasAttrMap) throws EidPostProcessingException, EidasAttributeException { - final ErnbEidData result = new ErnbEidData(); - - final Object eIdentifierObj = eidasAttrMap.get(Constants.eIDAS_ATTR_PERSONALIDENTIFIER); - final Triple<String, String, String> eIdentifier = - EidasResponseUtils.parseEidasPersonalIdentifier((String) eIdentifierObj); - result.setCitizenCountryCode(eIdentifier.getFirst()); - - // MDS attributes - result.setPseudonym(processPseudonym(eidasAttrMap.get(Constants.eIDAS_ATTR_PERSONALIDENTIFIER))); - result.setFamilyName(processFamilyName(eidasAttrMap.get(Constants.eIDAS_ATTR_CURRENTFAMILYNAME))); - result.setGivenName(processGivenName(eidasAttrMap.get(Constants.eIDAS_ATTR_CURRENTGIVENNAME))); - result.setDateOfBirth(processDateOfBirth(eidasAttrMap.get(Constants.eIDAS_ATTR_DATEOFBIRTH))); - - // additional attributes - result.setPlaceOfBirth(processPlaceOfBirth(eidasAttrMap.get(Constants.eIDAS_ATTR_PLACEOFBIRTH))); - result.setBirthName(processBirthName(eidasAttrMap.get(Constants.eIDAS_ATTR_BIRTHNAME))); - result.setAddress(processAddress(eidasAttrMap.get(Constants.eIDAS_ATTR_CURRENTADDRESS))); - - return result; - + SimpleEidasData.SimpleEidasDataBuilder builder = SimpleEidasData.builder() + .personalIdentifier(EidasResponseUtils.processPersonalIdentifier( + eidasAttrMap.get(Constants.eIDAS_ATTR_PERSONALIDENTIFIER))) + + // MDS attributes + .citizenCountryCode(processCountryCode(eidasAttrMap.get(Constants.eIDAS_ATTR_PERSONALIDENTIFIER))) + .pseudonym(processPseudonym(eidasAttrMap.get(Constants.eIDAS_ATTR_PERSONALIDENTIFIER))) + .familyName(processFamilyName(eidasAttrMap.get(Constants.eIDAS_ATTR_CURRENTFAMILYNAME))) + .givenName(processGivenName(eidasAttrMap.get(Constants.eIDAS_ATTR_CURRENTGIVENNAME))) + .dateOfBirth(processDateOfBirthToString(eidasAttrMap.get(Constants.eIDAS_ATTR_DATEOFBIRTH))) + + // additional attributes + .placeOfBirth(processPlaceOfBirth(eidasAttrMap.get(Constants.eIDAS_ATTR_PLACEOFBIRTH))) + .birthName(processBirthName(eidasAttrMap.get(Constants.eIDAS_ATTR_BIRTHNAME))) + .address(processAddress(eidasAttrMap.get(Constants.eIDAS_ATTR_CURRENTADDRESS))); + + if (eidasAttrMap.containsKey(Constants.eIDAS_ATTR_TAXREFERENCE)) { + builder.taxNumber(EidasResponseUtils.processTaxReference(eidasAttrMap.get(Constants.eIDAS_ATTR_TAXREFERENCE))); + + } + + return builder.build(); } - + /** * Get a Map of country-specific requested attributes. - * + * * @return */ @NonNull @@ -112,7 +115,7 @@ public abstract class AbstractEidProcessor implements INationalEidProcessor { /** * Post-Process the eIDAS CurrentAddress attribute. - * + * * @param currentAddressObj eIDAS current address information * @return current address or null if no attribute is available * @throws EidPostProcessingException if post-processing fails @@ -120,34 +123,12 @@ public abstract class AbstractEidProcessor implements INationalEidProcessor { */ protected PostalAddressType processAddress(Object currentAddressObj) throws EidPostProcessingException, EidasAttributeException { - - if (currentAddressObj != null) { - if (currentAddressObj instanceof PostalAddress) { - final PostalAddressType result = new PostalAddressType(); - result.setPostalCode(((PostalAddress) currentAddressObj).getPostCode()); - result.setMunicipality(((PostalAddress) currentAddressObj).getPostName()); - - // TODO: add more mappings - - return result; - - } else { - log.warn("eIDAS attr: " + Constants.eIDAS_ATTR_CURRENTADDRESS + " is of WRONG type"); - throw new EidasAttributeException(Constants.eIDAS_ATTR_CURRENTADDRESS); - - } - - } else { - log.debug("NO '" + Constants.eIDAS_ATTR_CURRENTADDRESS + "' attribute. Post-Processing skipped ... "); - } - - return null; - + return EidasResponseUtils.processAddress(currentAddressObj); } /** * Post-Process the eIDAS BirthName attribute. - * + * * @param birthNameObj eIDAS birthname information * @return birthName or null if no attribute is available * @throws EidPostProcessingException if post-processing fails @@ -155,27 +136,12 @@ public abstract class AbstractEidProcessor implements INationalEidProcessor { */ protected String processBirthName(Object birthNameObj) throws EidPostProcessingException, EidasAttributeException { - if (birthNameObj != null) { - if (birthNameObj instanceof String) { - return (String) birthNameObj; - - } else { - log.warn("eIDAS attr: " + Constants.eIDAS_ATTR_BIRTHNAME + " is of WRONG type"); - throw new EidasAttributeException(Constants.eIDAS_ATTR_BIRTHNAME); - - } - - } else { - log.debug("NO '" + Constants.eIDAS_ATTR_BIRTHNAME + "' attribute. Post-Processing skipped ... "); - } - - return null; - + return EidasResponseUtils.processBirthName(birthNameObj); } /** * Post-Process the eIDAS PlaceOfBirth attribute. - * + * * @param placeOfBirthObj eIDAS Place-of-Birth information * @return place of Birth or null if no attribute is available * @throws EidPostProcessingException if post-processing fails @@ -183,27 +149,12 @@ public abstract class AbstractEidProcessor implements INationalEidProcessor { */ protected String processPlaceOfBirth(Object placeOfBirthObj) throws EidPostProcessingException, EidasAttributeException { - if (placeOfBirthObj != null) { - if (placeOfBirthObj instanceof String) { - return (String) placeOfBirthObj; - - } else { - log.warn("eIDAS attr: " + Constants.eIDAS_ATTR_PLACEOFBIRTH + " is of WRONG type"); - throw new EidasAttributeException(Constants.eIDAS_ATTR_PLACEOFBIRTH); - - } - - } else { - log.debug("NO '" + Constants.eIDAS_ATTR_PLACEOFBIRTH + "' attribute. Post-Processing skipped ... "); - } - - return null; - + return EidasResponseUtils.processPlaceOfBirth(placeOfBirthObj); } /** * Post-Process the eIDAS DateOfBirth attribute. - * + * * @param dateOfBirthObj eIDAS date-of-birth attribute information * @return formated user's date-of-birth * @throws EidasAttributeException if NO attribute is available @@ -211,17 +162,12 @@ public abstract class AbstractEidProcessor implements INationalEidProcessor { */ protected DateTime processDateOfBirth(Object dateOfBirthObj) throws EidPostProcessingException, EidasAttributeException { - if (dateOfBirthObj == null || !(dateOfBirthObj instanceof DateTime)) { - throw new EidasAttributeException(Constants.eIDAS_ATTR_DATEOFBIRTH); - } - - return (DateTime) dateOfBirthObj; - + return EidasResponseUtils.processDateOfBirth(dateOfBirthObj); } /** * Post-Process the eIDAS GivenName attribute. - * + * * @param givenNameObj eIDAS givenName attribute information * @return formated user's givenname * @throws EidasAttributeException if NO attribute is available @@ -229,17 +175,12 @@ public abstract class AbstractEidProcessor implements INationalEidProcessor { */ protected String processGivenName(Object givenNameObj) throws EidPostProcessingException, EidasAttributeException { - if (givenNameObj == null || !(givenNameObj instanceof String)) { - throw new EidasAttributeException(Constants.eIDAS_ATTR_CURRENTGIVENNAME); - } - - return (String) givenNameObj; - + return EidasResponseUtils.processGivenName(givenNameObj); } /** * Post-Process the eIDAS FamilyName attribute. - * + * * @param familyNameObj eIDAS familyName attribute information * @return formated user's familyname * @throws EidasAttributeException if NO attribute is available @@ -247,17 +188,12 @@ public abstract class AbstractEidProcessor implements INationalEidProcessor { */ protected String processFamilyName(Object familyNameObj) throws EidPostProcessingException, EidasAttributeException { - if (familyNameObj == null || !(familyNameObj instanceof String)) { - throw new EidasAttributeException(Constants.eIDAS_ATTR_CURRENTFAMILYNAME); - } - - return (String) familyNameObj; - + return EidasResponseUtils.processFamilyName(familyNameObj); } /** * Post-Process the eIDAS pseudonym to ERnB unique identifier. - * + * * @param personalIdObj eIDAS PersonalIdentifierAttribute * @return Unique personal identifier without country-code information * @throws EidasAttributeException if NO attribute is available @@ -265,15 +201,7 @@ public abstract class AbstractEidProcessor implements INationalEidProcessor { */ protected String processPseudonym(Object personalIdObj) throws EidPostProcessingException, EidasAttributeException { - if (personalIdObj == null || !(personalIdObj instanceof String)) { - throw new EidasAttributeException(Constants.eIDAS_ATTR_PERSONALIDENTIFIER); - } - - final Triple<String, String, String> eIdentifier = - EidasResponseUtils.parseEidasPersonalIdentifier((String) personalIdObj); - - return eIdentifier.getThird(); - + return EidasResponseUtils.processPseudonym(personalIdObj); } /** @@ -389,7 +317,7 @@ public abstract class AbstractEidProcessor implements INationalEidProcessor { return builder.build(); } - + private void buildLevelOfAssurance(ISpConfiguration spConfig, Builder authnRequestBuilder) { // TODO: set matching mode if eIDAS ref. impl. support this method @@ -412,7 +340,7 @@ public abstract class AbstractEidProcessor implements INationalEidProcessor { log.debug("Request eIdAS node with LoA: " + loa); authnRequestBuilder.levelOfAssurance(loa); - + } } diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/handler/CountrySpecificDetailSearchProcessor.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/handler/CountrySpecificDetailSearchProcessor.java new file mode 100644 index 00000000..c2a62f5c --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/handler/CountrySpecificDetailSearchProcessor.java @@ -0,0 +1,56 @@ +/* + * Copyright 2020 A-SIT Plus GmbH + * AT-specific eIDAS Connector has been developed in a cooperation between EGIZ, + * A-SIT Plus GmbH, A-SIT, and Graz University of Technology. + * + * Licensed under the EUPL, Version 1.2 or - as soon they will be approved by + * the European Commission - subsequent versions of the EUPL (the "License"); + * You may not use this work except in compliance with the License. + * You may obtain a copy of the License at: + * https://joinup.ec.europa.eu/news/understanding-eupl-v12 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This product combines work with different licenses. See the "NOTICE" text + * file for details on the various modules and licenses. + * The "NOTICE" text file is part of the distribution. Any derivative works + * that you distribute must include a readable copy of the "NOTICE" text file. + */ + +package at.asitplus.eidas.specific.modules.auth.eidas.v2.handler; + +import javax.annotation.Nonnull; + +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.SimpleEidasData; +import at.gv.bmi.namespace.zmr_su.zmr._20040201.PersonSuchenRequest; + +public interface CountrySpecificDetailSearchProcessor { + + /** + * Get a friendlyName of this post-processor implementation. + */ + String getName(); + + /** + * Check if this postProcessor is sensitive for a specific country. + * + * @param countryCode of the eID data that should be processed + * @param eidData eID information from eIDAS Proxy-Service + * @return true if this implementation can handle the country, otherwise false + */ + boolean canHandle(String countryCode, SimpleEidasData eidData); + + /** + * Builds a country-specific search person request for ZMR. + * + * @param eidData eID information from eIDAS Proxy-Service + * @return {@link PersonSuchenRequest} but never <code>null</code> + */ + @Nonnull + PersonSuchenRequest generateSearchRequest(SimpleEidasData eidData); + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/handler/DeSpecificDetailSearchProcessor.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/handler/DeSpecificDetailSearchProcessor.java new file mode 100644 index 00000000..e05fe86b --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/handler/DeSpecificDetailSearchProcessor.java @@ -0,0 +1,82 @@ +/* + * Copyright 2020 A-SIT Plus GmbH + * AT-specific eIDAS Connector has been developed in a cooperation between EGIZ, + * A-SIT Plus GmbH, A-SIT, and Graz University of Technology. + * + * Licensed under the EUPL, Version 1.2 or - as soon they will be approved by + * the European Commission - subsequent versions of the EUPL (the "License"); + * You may not use this work except in compliance with the License. + * You may obtain a copy of the License at: + * https://joinup.ec.europa.eu/news/understanding-eupl-v12 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This product combines work with different licenses. See the "NOTICE" text + * file for details on the various modules and licenses. + * The "NOTICE" text file is part of the distribution. Any derivative works + * that you distribute must include a readable copy of the "NOTICE" text file. + */ + +package at.asitplus.eidas.specific.modules.auth.eidas.v2.handler; + +import org.apache.commons.lang3.StringUtils; + +import at.asitplus.eidas.specific.modules.auth.eidas.v2.Constants; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.SimpleEidasData; +import at.gv.bmi.namespace.zmr_su.zmr._20040201.EidasSuchdatenType; +import at.gv.bmi.namespace.zmr_su.zmr._20040201.PersonSuchenRequest; +import at.gv.e_government.reference.namespace.persondata.de._20040201.NatuerlichePersonTyp; +import at.gv.e_government.reference.namespace.persondata.de._20040201.PersonenNameTyp; + +public class DeSpecificDetailSearchProcessor implements CountrySpecificDetailSearchProcessor { + + @Override + public String getName() { + return this.getClass().getSimpleName(); + } + + @Override + public boolean canHandle(String countryCode, SimpleEidasData eidData) { + return countryCode.equalsIgnoreCase(Constants.COUNTRY_CODE_DE) + && StringUtils.isNotEmpty(eidData.getBirthName()) + && StringUtils.isNotEmpty(eidData.getPlaceOfBirth()); + + } + + @Override + public PersonSuchenRequest generateSearchRequest(SimpleEidasData eidData) { + PersonSuchenRequest req = new PersonSuchenRequest(); + + //set basic MDS information + final NatuerlichePersonTyp searchNatPerson = new NatuerlichePersonTyp(); + req.setNatuerlichePerson(searchNatPerson); + final PersonenNameTyp searchNatPersonName = new PersonenNameTyp(); + searchNatPerson.setPersonenName(searchNatPersonName); + searchNatPersonName.setFamilienname(eidData.getFamilyName()); + searchNatPersonName.setVorname(eidData.getGivenName()); + searchNatPerson.setGeburtsdatum(eidData.getDateOfBirth()); + + //add addtional eIDAS attributes from DE + req.getEidasSuchdaten().add(buildEidasSuchData( + Constants.eIDAS_ATTRURN_PLACEOFBIRTH, eidData.getPlaceOfBirth())); + req.getEidasSuchdaten().add(buildEidasSuchData( + Constants.eIDAS_ATTRURN_BIRTHNAME, eidData.getBirthName())); + + return req; + + } + + private EidasSuchdatenType buildEidasSuchData(String attrName, String attrValue) { + EidasSuchdatenType eidasInfos = new EidasSuchdatenType(); + eidasInfos.setStaatscode2(Constants.COUNTRY_CODE_DE); + eidasInfos.setEidasArt(attrName); + eidasInfos.setEidasWert(attrValue); + return eidasInfos; + + } + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/handler/INationalEidProcessor.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/handler/INationalEidProcessor.java index 577efbcd..79a261fe 100644 --- a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/handler/INationalEidProcessor.java +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/handler/INationalEidProcessor.java @@ -25,7 +25,7 @@ package at.asitplus.eidas.specific.modules.auth.eidas.v2.handler; import java.util.Map; -import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.ErnbEidData; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.SimpleEidasData; import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.EidasAttributeException; import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.EidPostProcessingException; import at.gv.egiz.eaaf.core.api.IRequest; @@ -36,7 +36,7 @@ public interface INationalEidProcessor { /** * Get a friendlyName of this post-processor implementation. - * + * * @return */ String getName(); @@ -46,34 +46,34 @@ public interface INationalEidProcessor { * If more than one Post-Processor implementations can handle the eID data, the * post-processor with the highest priority are selected. The Default-Processor * has priority '0' - * + * * @return Priority of this handler */ int getPriority(); /** * Check if this postProcessor is sensitive for a specific country. - * + * * @param countryCode of the eID data that should be processed * @return true if this implementation can handle the country, otherwise false - * + * */ boolean canHandle(String countryCode); /** * Post-Process eIDAS eID data into national format. - * + * * @param eidasAttrMap Map of eIDAS attributes in format friendlyName and * attribute * @throws EidPostProcessingException In case of a post-processing error * @throws EidasAttributeException In case of an invalid eIDAS attribute */ - ErnbEidData postProcess(Map<String, Object> eidasAttrMap) throws EidPostProcessingException, + SimpleEidasData postProcess(Map<String, Object> eidasAttrMap) throws EidPostProcessingException, EidasAttributeException; /** * Pre-Process eIDAS Request to national requirements. - * + * * @param pendingReq current pending request * @param authnRequestBuilder eIDAS {@link ILightRequest} builder */ diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/handler/ItSpecificDetailSearchProcessor.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/handler/ItSpecificDetailSearchProcessor.java new file mode 100644 index 00000000..b49c355d --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/handler/ItSpecificDetailSearchProcessor.java @@ -0,0 +1,53 @@ +/* + * Copyright 2020 A-SIT Plus GmbH + * AT-specific eIDAS Connector has been developed in a cooperation between EGIZ, + * A-SIT Plus GmbH, A-SIT, and Graz University of Technology. + * + * Licensed under the EUPL, Version 1.2 or - as soon they will be approved by + * the European Commission - subsequent versions of the EUPL (the "License"); + * You may not use this work except in compliance with the License. + * You may obtain a copy of the License at: + * https://joinup.ec.europa.eu/news/understanding-eupl-v12 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This product combines work with different licenses. See the "NOTICE" text + * file for details on the various modules and licenses. + * The "NOTICE" text file is part of the distribution. Any derivative works + * that you distribute must include a readable copy of the "NOTICE" text file. + */ + +package at.asitplus.eidas.specific.modules.auth.eidas.v2.handler; + +import org.apache.commons.lang3.StringUtils; + +import at.asitplus.eidas.specific.modules.auth.eidas.v2.Constants; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.SimpleEidasData; +import at.gv.bmi.namespace.zmr_su.zmr._20040201.PersonSuchenRequest; + +public class ItSpecificDetailSearchProcessor implements CountrySpecificDetailSearchProcessor { + + @Override + public String getName() { + return this.getClass().getSimpleName(); + } + + @Override + public boolean canHandle(String countryCode, SimpleEidasData eidData) { + return countryCode.equalsIgnoreCase(Constants.COUNTRY_CODE_IT) + && StringUtils.isNotEmpty(eidData.getTaxNumber()); + + } + + @Override + public PersonSuchenRequest generateSearchRequest(SimpleEidasData eidData) { + + //TODO: add IT specific search request if TaxNumber attribute is defined by IT + return new PersonSuchenRequest(); + + } +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/idaustriaclient/IdAustriaClientAuthConstants.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/idaustriaclient/IdAustriaClientAuthConstants.java new file mode 100644 index 00000000..46d0e77d --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/idaustriaclient/IdAustriaClientAuthConstants.java @@ -0,0 +1,106 @@ +package at.asitplus.eidas.specific.modules.auth.eidas.v2.idaustriaclient; + + +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; + +import at.gv.egiz.eaaf.core.api.data.EaafConstants; +import at.gv.egiz.eaaf.core.api.data.PvpAttributeDefinitions; +import at.gv.egiz.eaaf.core.impl.data.Triple; + + +public class IdAustriaClientAuthConstants { + + private IdAustriaClientAuthConstants() { + + } + + public static final String ERRORCODE_02 = "module.eidasauth.idaustria.02"; + public static final String ERRORCODE_05 = "module.eidasauth.idaustria.05"; + + public static final String SAML2_STATUSCODE_USERSTOP = "1005"; + + public static final String MODULE_NAME_FOR_LOGGING = "ID Austria Client"; + + public static final int METADATA_VALIDUNTIL_IN_HOURS = 24; + + // public static final String HTTP_PARAM_CENTRAL_EIDAS_AUTH_SELECTION = + // AuthHandlerConstants.HTTP_PARAM_EIDAS_PROCESS; + + public static final String ENDPOINT_POST = "/sp/idaustria/post"; + public static final String ENDPOINT_REDIRECT = "/sp/idaustria/redirect"; + public static final String ENDPOINT_METADATA = "/sp/idaustria/metadata"; + + public static final String CONFIG_PROPS_PREFIX = "modules.idaustriaclient."; + public static final String CONFIG_PROPS_KEYSTORE_TYPE = CONFIG_PROPS_PREFIX + "keystore.type"; + public static final String CONFIG_PROPS_KEYSTORE_NAME = CONFIG_PROPS_PREFIX + "keystore.name"; + public static final String CONFIG_PROPS_KEYSTORE_PATH = CONFIG_PROPS_PREFIX + "keystore.path"; + public static final String CONFIG_PROPS_KEYSTORE_PASSWORD = CONFIG_PROPS_PREFIX + "keystore.password"; + public static final String CONFIG_PROPS_SIGN_METADATA_KEY_PASSWORD = CONFIG_PROPS_PREFIX + + "metadata.sign.password"; + public static final String CONFIG_PROPS_SIGN_METADATA_ALIAS = CONFIG_PROPS_PREFIX + + "metadata.sign.alias"; + public static final String CONFIG_PROPS_SIGN_SIGNING_KEY_PASSWORD = CONFIG_PROPS_PREFIX + + "request.sign.password"; + public static final String CONFIG_PROPS_SIGN_SIGNING_ALIAS = CONFIG_PROPS_PREFIX + + "request.sign.alias"; + public static final String CONFIG_PROPS_ENCRYPTION_KEY_PASSWORD = CONFIG_PROPS_PREFIX + + "response.encryption.password"; + public static final String CONFIG_PROPS_ENCRYPTION_ALIAS = CONFIG_PROPS_PREFIX + + "response.encryption.alias"; + + public static final String CONFIG_PROPS_TRUSTSTORE_TYPE = CONFIG_PROPS_PREFIX + "truststore.type"; + public static final String CONFIG_PROPS_TRUSTSTORE_NAME = CONFIG_PROPS_PREFIX + "truststore.name"; + public static final String CONFIG_PROPS_TRUSTSTORE_PATH = CONFIG_PROPS_PREFIX + "truststore.path"; + public static final String CONFIG_PROPS_TRUSTSTORE_PASSWORD = CONFIG_PROPS_PREFIX + "truststore.password"; + + public static final String CONFIG_PROPS_REQUIRED_PVP_ATTRIBUTES_LIST = CONFIG_PROPS_PREFIX + + "required.additional.attributes"; + public static final String CONFIG_PROPS_REQUIRED_LOA = CONFIG_PROPS_PREFIX + + "required.loa"; + public static final String CONFIG_PROPS_ID_AUSTRIA_ENTITYID = CONFIG_PROPS_PREFIX + "idaustria.idp.entityId"; + public static final String CONFIG_PROPS_ID_AUSTRIA_METADATAURL = CONFIG_PROPS_PREFIX + "idaustria.idp.metadataUrl"; + + public static final String CONFIG_DEFAULT_LOA_EIDAS_LEVEL = EaafConstants.EIDAS_LOA_HIGH; + + public static final List<Triple<String, String, Boolean>> DEFAULT_REQUIRED_PVP_ATTRIBUTES = + Collections.unmodifiableList(new ArrayList<Triple<String, String, Boolean>>() { + private static final long serialVersionUID = 1L; + + { + // add PVP Version attribute + add(Triple.newInstance(PvpAttributeDefinitions.PVP_VERSION_NAME, + PvpAttributeDefinitions.PVP_VERSION_FRIENDLY_NAME, true)); + + // entity metadata information + add(Triple.newInstance(PvpAttributeDefinitions.EID_CITIZEN_EIDAS_QAA_LEVEL_NAME, + PvpAttributeDefinitions.EID_CITIZEN_EIDAS_QAA_LEVEL_FRIENDLY_NAME, true)); + add(Triple.newInstance(PvpAttributeDefinitions.EID_ISSUING_NATION_NAME, + PvpAttributeDefinitions.EID_ISSUING_NATION_FRIENDLY_NAME, true)); + + add(Triple.newInstance(PvpAttributeDefinitions.PRINCIPAL_NAME_NAME, + PvpAttributeDefinitions.PRINCIPAL_NAME_FRIENDLY_NAME, true)); + add(Triple.newInstance(PvpAttributeDefinitions.GIVEN_NAME_NAME, + PvpAttributeDefinitions.GIVEN_NAME_FRIENDLY_NAME, true)); + add(Triple.newInstance(PvpAttributeDefinitions.BIRTHDATE_NAME, + PvpAttributeDefinitions.BIRTHDATE_FRIENDLY_NAME, true)); + add(Triple.newInstance(PvpAttributeDefinitions.BPK_NAME, + PvpAttributeDefinitions.BPK_FRIENDLY_NAME, true)); + + } + }); + + public static final List<String> DEFAULT_REQUIRED_PVP_ATTRIBUTE_NAMES = + + Collections.unmodifiableList(new ArrayList<String>() { + private static final long serialVersionUID = 1L; + + { + for (final Triple<String, String, Boolean> el : DEFAULT_REQUIRED_PVP_ATTRIBUTES) { + add(el.getFirst()); + } + } + }); + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/idaustriaclient/IdAustriaClientAuthEventConstants.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/idaustriaclient/IdAustriaClientAuthEventConstants.java new file mode 100644 index 00000000..03e570fc --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/idaustriaclient/IdAustriaClientAuthEventConstants.java @@ -0,0 +1,7 @@ +package at.asitplus.eidas.specific.modules.auth.eidas.v2.idaustriaclient; + +public class IdAustriaClientAuthEventConstants { + + public static final int AUTHPROCESS_ID_AUSTRIA_RESPONSE_RECEIVED = 6202; + public static final int AUTHPROCESS_ID_AUSTRIA_RESPONSE_RECEIVED_ERROR = 6203; +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/idaustriaclient/IdAustriaClientAuthMetadataConfiguration.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/idaustriaclient/IdAustriaClientAuthMetadataConfiguration.java new file mode 100644 index 00000000..4527ced4 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/idaustriaclient/IdAustriaClientAuthMetadataConfiguration.java @@ -0,0 +1,463 @@ +package at.asitplus.eidas.specific.modules.auth.eidas.v2.idaustriaclient; + + +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Collection; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import org.opensaml.saml.saml2.core.Attribute; +import org.opensaml.saml.saml2.core.NameIDType; +import org.opensaml.saml.saml2.metadata.ContactPerson; +import org.opensaml.saml.saml2.metadata.Organization; +import org.opensaml.saml.saml2.metadata.RequestedAttribute; +import org.opensaml.security.credential.Credential; + +import at.asitplus.eidas.specific.modules.auth.eidas.v2.idaustriaclient.provider.IdAustriaClientAuthCredentialProvider; +import at.gv.egiz.eaaf.core.exceptions.EaafException; +import at.gv.egiz.eaaf.core.impl.data.Pair; +import at.gv.egiz.eaaf.core.impl.data.Triple; +import at.gv.egiz.eaaf.modules.pvp2.api.IPvp2BasicConfiguration; +import at.gv.egiz.eaaf.modules.pvp2.api.credential.EaafX509Credential; +import at.gv.egiz.eaaf.modules.pvp2.api.metadata.IPvpMetadataBuilderConfiguration; +import at.gv.egiz.eaaf.modules.pvp2.exception.CredentialsNotAvailableException; +import at.gv.egiz.eaaf.modules.pvp2.impl.builder.PvpAttributeBuilder; +import lombok.extern.slf4j.Slf4j; + +/** + * Configuration object to generate PVP S-Profile metadata for SAML2 client. + * + * @author tlenz + * + */ +@Slf4j +public class IdAustriaClientAuthMetadataConfiguration implements IPvpMetadataBuilderConfiguration { + + private Collection<RequestedAttribute> additionalAttributes = null; + + private final String authUrl; + private final IdAustriaClientAuthCredentialProvider credentialProvider; + private final IPvp2BasicConfiguration pvpConfiguration; + + /** + * Configuration object to create PVP2 S-Profile metadata information. + * + * @param authUrl Public URL prefix of the application + * @param credentialProvider Credentials used by PVP2 S-Profile end-point + * @param pvpConfiguration Basic PVP2 S-Profile end-point configuration + */ + public IdAustriaClientAuthMetadataConfiguration(String authUrl, + IdAustriaClientAuthCredentialProvider credentialProvider, + IPvp2BasicConfiguration pvpConfiguration) { + this.authUrl = authUrl; + this.credentialProvider = credentialProvider; + this.pvpConfiguration = pvpConfiguration; + } + + /* + * (non-Javadoc) + * + * @see + * at.gv.egovernment.moa.id.protocols.pvp2x.builder.AbstractPVPMetadataBuilder# + * getMetadataValidUntil() + */ + @Override + public int getMetadataValidUntil() { + return IdAustriaClientAuthConstants.METADATA_VALIDUNTIL_IN_HOURS; + + } + + /* + * (non-Javadoc) + * + * @see + * at.gv.egovernment.moa.id.protocols.pvp2x.builder.AbstractPVPMetadataBuilder# + * buildEntitiesDescriptorAsRootElement() + */ + @Override + public boolean buildEntitiesDescriptorAsRootElement() { + return false; + + } + + /* + * (non-Javadoc) + * + * @see + * at.gv.egovernment.moa.id.protocols.pvp2x.builder.AbstractPVPMetadataBuilder# + * buildIDPSSODescriptor() + */ + @Override + public boolean buildIdpSsoDescriptor() { + return false; + + } + + /* + * (non-Javadoc) + * + * @see + * at.gv.egovernment.moa.id.protocols.pvp2x.builder.AbstractPVPMetadataBuilder# + * buildSPSSODescriptor() + */ + @Override + public boolean buildSpSsoDescriptor() { + return true; + + } + + /* + * (non-Javadoc) + * + * @see + * at.gv.egovernment.moa.id.protocols.pvp2x.builder.AbstractPVPMetadataBuilder# + * getEntityIDPostfix() + */ + @Override + public String getEntityID() { + return authUrl + IdAustriaClientAuthConstants.ENDPOINT_METADATA; + + } + + /* + * (non-Javadoc) + * + * @see + * at.gv.egovernment.moa.id.protocols.pvp2x.builder.AbstractPVPMetadataBuilder# + * getEntityFriendlyName() + */ + @Override + public String getEntityFriendlyName() { + return null; + } + + /* + * (non-Javadoc) + * + * @see + * at.gv.egovernment.moa.id.protocols.pvp2x.builder.AbstractPVPMetadataBuilder# + * getContactPersonInformation() + */ + @Override + public List<ContactPerson> getContactPersonInformation() { + try { + return pvpConfiguration.getIdpContacts(); + + } catch (final EaafException e) { + log.warn("Can not load Metadata entry: Contect Person", e); + return null; + + } + + } + + /* + * (non-Javadoc) + * + * @see + * at.gv.egovernment.moa.id.protocols.pvp2x.builder.AbstractPVPMetadataBuilder# + * getOrgansiationInformation() + */ + @Override + public Organization getOrgansiationInformation() { + try { + return pvpConfiguration.getIdpOrganisation(); + + } catch (final EaafException e) { + log.warn("Can not load Metadata entry: Organisation", e); + return null; + + } + } + + /* + * (non-Javadoc) + * + * @see + * at.gv.egovernment.moa.id.protocols.pvp2x.builder.AbstractPVPMetadataBuilder# + * getMetadataSigningCredentials() + */ + @Override + public EaafX509Credential getMetadataSigningCredentials() throws CredentialsNotAvailableException { + return credentialProvider.getMetaDataSigningCredential(); + + } + + /* + * (non-Javadoc) + * + * @see + * at.gv.egovernment.moa.id.protocols.pvp2x.builder.AbstractPVPMetadataBuilder# + * getRequestorResponseSigningCredentials() + */ + @Override + public Credential getRequestorResponseSigningCredentials() throws CredentialsNotAvailableException { + return credentialProvider.getMessageSigningCredential(); + + } + + /* + * (non-Javadoc) + * + * @see + * at.gv.egovernment.moa.id.protocols.pvp2x.builder.AbstractPVPMetadataBuilder# + * getEncryptionCredentials() + */ + @Override + public Credential getEncryptionCredentials() throws CredentialsNotAvailableException { + return credentialProvider.getMessageEncryptionCredential(); + + } + + /* + * (non-Javadoc) + * + * @see + * at.gv.egovernment.moa.id.protocols.pvp2x.builder.AbstractPVPMetadataBuilder# + * getIDPWebSSOPostBindingURL() + */ + @Override + public String getIdpWebSsoPostBindingUrl() { + return null; + } + + /* + * (non-Javadoc) + * + * @see + * at.gv.egovernment.moa.id.protocols.pvp2x.builder.AbstractPVPMetadataBuilder# + * getIDPWebSSORedirectBindingURL() + */ + @Override + public String getIdpWebSsoRedirectBindingUrl() { + return null; + } + + /* + * (non-Javadoc) + * + * @see + * at.gv.egovernment.moa.id.protocols.pvp2x.builder.AbstractPVPMetadataBuilder# + * getIDPSLOPostBindingURL() + */ + @Override + public String getIdpSloPostBindingUrl() { + return null; + } + + /* + * (non-Javadoc) + * + * @see + * at.gv.egovernment.moa.id.protocols.pvp2x.builder.AbstractPVPMetadataBuilder# + * getIDPSLORedirectBindingURL() + */ + @Override + public String getIdpSloRedirectBindingUrl() { + return null; + } + + /* + * (non-Javadoc) + * + * @see + * at.gv.egovernment.moa.id.protocols.pvp2x.builder.AbstractPVPMetadataBuilder# + * getSPAssertionConsumerServicePostBindingURL() + */ + @Override + public String getSpAssertionConsumerServicePostBindingUrl() { + return authUrl + IdAustriaClientAuthConstants.ENDPOINT_POST; + } + + /* + * (non-Javadoc) + * + * @see + * at.gv.egovernment.moa.id.protocols.pvp2x.builder.AbstractPVPMetadataBuilder# + * getSPAssertionConsumerServiceRedirectBindingURL() + */ + @Override + public String getSpAssertionConsumerServiceRedirectBindingUrl() { + return authUrl + IdAustriaClientAuthConstants.ENDPOINT_REDIRECT; + } + + /* + * (non-Javadoc) + * + * @see + * at.gv.egovernment.moa.id.protocols.pvp2x.builder.AbstractPVPMetadataBuilder# + * getSPSLOPostBindingURL() + */ + @Override + public String getSpSloPostBindingUrl() { + return null; + } + + /* + * (non-Javadoc) + * + * @see + * at.gv.egovernment.moa.id.protocols.pvp2x.builder.AbstractPVPMetadataBuilder# + * getSPSLORedirectBindingURL() + */ + @Override + public String getSpSloRedirectBindingUrl() { + return null; + } + + /* + * (non-Javadoc) + * + * @see + * at.gv.egovernment.moa.id.protocols.pvp2x.builder.AbstractPVPMetadataBuilder# + * getSPSLOSOAPBindingURL() + */ + @Override + public String getSpSloSoapBindingUrl() { + return null; + } + + /* + * (non-Javadoc) + * + * @see + * at.gv.egovernment.moa.id.protocols.pvp2x.builder.AbstractPVPMetadataBuilder# + * getIDPPossibleAttributes() + */ + @Override + public List<Attribute> getIdpPossibleAttributes() { + return null; + } + + /* + * (non-Javadoc) + * + * @see + * at.gv.egovernment.moa.id.protocols.pvp2x.builder.AbstractPVPMetadataBuilder# + * getIDPPossibleNameITTypes() + */ + @Override + public List<String> getIdpPossibleNameIdTypes() { + return null; + } + + + + /* + * (non-Javadoc) + * + * @see + * at.gv.egovernment.moa.id.protocols.pvp2x.builder.AbstractPVPMetadataBuilder# + * getSPRequiredAttributes() + */ + @Override + public Collection<RequestedAttribute> getSpRequiredAttributes() { + final Map<String, RequestedAttribute> requestedAttributes = new HashMap<>(); + + + log.trace("Build required attributes for ID Austria operaton ... "); + injectDefinedAttributes(requestedAttributes, + IdAustriaClientAuthConstants.DEFAULT_REQUIRED_PVP_ATTRIBUTES); + + + + if (additionalAttributes != null) { + log.trace("Add additional PVP attributes into metadata ... "); + for (final RequestedAttribute el : additionalAttributes) { + if (requestedAttributes.containsKey(el.getName())) { + log.debug("Attribute " + el.getName() + + " is already added by default configuration. Overwrite it by user configuration"); + } + requestedAttributes.put(el.getName(), el); + } + } + + return requestedAttributes.values(); + + } + + + + /* + * (non-Javadoc) + * + * @see + * at.gv.egovernment.moa.id.protocols.pvp2x.builder.AbstractPVPMetadataBuilder# + * getSPAllowedNameITTypes() + */ + @Override + public List<String> getSpAllowedNameIdTypes() { + return Arrays.asList(NameIDType.PERSISTENT); + + } + + /* + * (non-Javadoc) + * + * @see at.gv.egovernment.moa.id.protocols.pvp2x.config. + * IPVPMetadataBuilderConfiguration#getSPNameForLogging() + */ + @Override + public String getSpNameForLogging() { + return IdAustriaClientAuthConstants.MODULE_NAME_FOR_LOGGING; + } + + /* + * (non-Javadoc) + * + * @see at.gv.egovernment.moa.id.protocols.pvp2x.config. + * IPVPMetadataBuilderConfiguration#wantAssertionSigned() + */ + @Override + public boolean wantAssertionSigned() { + return false; + } + + /* + * (non-Javadoc) + * + * @see at.gv.egovernment.moa.id.protocols.pvp2x.config. + * IPVPMetadataBuilderConfiguration#wantAuthnRequestSigned() + */ + @Override + public boolean wantAuthnRequestSigned() { + return true; + } + + /** + * Add additonal PVP attributes that are required by this deployment. + * + * @param additionalAttr List of PVP attribute name and isRequired flag + */ + public void setAdditionalRequiredAttributes(List<Pair<String, Boolean>> additionalAttr) { + if (additionalAttr != null && !additionalAttr.isEmpty()) { + additionalAttributes = new ArrayList<>(); + for (final Pair<String, Boolean> el : additionalAttr) { + final Attribute attributBuilder = PvpAttributeBuilder.buildEmptyAttribute(el.getFirst()); + if (attributBuilder != null) { + additionalAttributes.add( + PvpAttributeBuilder.buildReqAttribute( + attributBuilder.getName(), + attributBuilder.getFriendlyName(), + el.getSecond())); + + } else { + log.info("NO PVP attribute with name: " + el.getFirst()); + } + + } + } + } + + private void injectDefinedAttributes(Map<String, RequestedAttribute> requestedAttributes, + List<Triple<String, String, Boolean>> attributes) { + for (final Triple<String, String, Boolean> el : attributes) { + requestedAttributes.put(el.getFirst(), PvpAttributeBuilder.buildReqAttribute(el.getFirst(), el + .getSecond(), el.getThird())); + + } + } + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/idaustriaclient/IdAustriaClientAuthRequestBuilderConfiguration.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/idaustriaclient/IdAustriaClientAuthRequestBuilderConfiguration.java new file mode 100644 index 00000000..65b6a198 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/idaustriaclient/IdAustriaClientAuthRequestBuilderConfiguration.java @@ -0,0 +1,300 @@ +package at.asitplus.eidas.specific.modules.auth.eidas.v2.idaustriaclient; + +import java.util.List; + +import at.gv.egiz.eaaf.modules.pvp2.api.credential.EaafX509Credential; +import at.gv.egiz.eaaf.modules.pvp2.api.reqattr.EaafRequestedAttribute; +import at.gv.egiz.eaaf.modules.pvp2.sp.api.IPvpAuthnRequestBuilderConfiguruation; + +import org.opensaml.saml.saml2.core.AuthnContextComparisonTypeEnumeration; +import org.opensaml.saml.saml2.core.NameIDType; +import org.opensaml.saml.saml2.metadata.EntityDescriptor; +import org.w3c.dom.Element; + +public class IdAustriaClientAuthRequestBuilderConfiguration implements IPvpAuthnRequestBuilderConfiguruation { + + private boolean isPassive; + private String spEntityId; + private String qaaLevel; + private EntityDescriptor idpEntity; + private EaafX509Credential signCred; + private String scopeRequesterId; + private String providerName; + private List<EaafRequestedAttribute> requestedAttributes; + private String reqId; + + /* + * (non-Javadoc) + * + * @see at.gv.egovernment.moa.id.protocols.pvp2x.config. + * IPVPAuthnRequestBuilderConfiguruation#isPassivRequest() + */ + @Override + public Boolean isPassivRequest() { + return this.isPassive; + } + + /* + * (non-Javadoc) + * + * @see at.gv.egovernment.moa.id.protocols.pvp2x.config. + * IPVPAuthnRequestBuilderConfiguruation#getAssertionConsumerServiceId() + */ + @Override + public Integer getAssertionConsumerServiceId() { + return 0; + } + + /* + * (non-Javadoc) + * + * @see at.gv.egovernment.moa.id.protocols.pvp2x.config. + * IPVPAuthnRequestBuilderConfiguruation#getEntityID() + */ + @Override + public String getSpEntityID() { + return this.spEntityId; + } + + /* + * (non-Javadoc) + * + * @see at.gv.egovernment.moa.id.protocols.pvp2x.config. + * IPVPAuthnRequestBuilderConfiguruation#getNameIDPolicy() + */ + @Override + public String getNameIdPolicyFormat() { + return NameIDType.PERSISTENT; + } + + /* + * (non-Javadoc) + * + * @see at.gv.egovernment.moa.id.protocols.pvp2x.config. + * IPVPAuthnRequestBuilderConfiguruation#getNameIDPolicy() + */ + @Override + public boolean getNameIdPolicyAllowCreation() { + return true; + } + + /* + * (non-Javadoc) + * + * @see at.gv.egovernment.moa.id.protocols.pvp2x.config. + * IPVPAuthnRequestBuilderConfiguruation#getAuthnContextClassRef() + */ + @Override + public String getAuthnContextClassRef() { + return this.qaaLevel; + } + + /* + * (non-Javadoc) + * + * @see at.gv.egovernment.moa.id.protocols.pvp2x.config. + * IPVPAuthnRequestBuilderConfiguruation#getAuthnContextComparison() + */ + @Override + public AuthnContextComparisonTypeEnumeration getAuthnContextComparison() { + return AuthnContextComparisonTypeEnumeration.MINIMUM; + } + + /** + * Set isPassive flag in SAML2 request. + * + * @param isPassive the isPassive to set. + */ + public void setPassive(boolean isPassive) { + this.isPassive = isPassive; + } + + /** + * Set the requester EntityId. + * + * @param spEntityId EntityId of SP + */ + public void setSpEntityID(String spEntityId) { + this.spEntityId = spEntityId; + } + + /** + * Set required LoA. + * + * @param loa the LoA to set. + */ + public void setRequestedLoA(String loa) { + qaaLevel = loa; + } + + /** + * Set EntityId of IDP. + * + * @param idpEntity the idpEntity to set. + */ + public void setIdpEntity(EntityDescriptor idpEntity) { + this.idpEntity = idpEntity; + } + + /** + * Set message signing credentials. + * + * @param signCred the signCred to set. + */ + public void setSignCred(EaafX509Credential signCred) { + this.signCred = signCred; + } + + /* + * (non-Javadoc) + * + * @see at.gv.egovernment.moa.id.protocols.pvp2x.config. + * IPVPAuthnRequestBuilderConfiguruation#getAuthnRequestSigningCredential() + */ + @Override + public EaafX509Credential getAuthnRequestSigningCredential() { + return this.signCred; + } + + /* + * (non-Javadoc) + * + * @see at.gv.egovernment.moa.id.protocols.pvp2x.config. + * IPVPAuthnRequestBuilderConfiguruation#getIDPEntityDescriptor() + */ + @Override + public EntityDescriptor getIdpEntityDescriptor() { + return this.idpEntity; + } + + /* + * (non-Javadoc) + * + * @see at.gv.egovernment.moa.id.protocols.pvp2x.config. + * IPVPAuthnRequestBuilderConfiguruation#getSubjectNameID() + */ + @Override + public String getSubjectNameID() { + return null; + } + + /* + * (non-Javadoc) + * + * @see at.gv.egovernment.moa.id.protocols.pvp2x.config. + * IPVPAuthnRequestBuilderConfiguruation#getSPNameForLogging() + */ + @Override + public String getSpNameForLogging() { + return IdAustriaClientAuthConstants.MODULE_NAME_FOR_LOGGING; + } + + /* + * (non-Javadoc) + * + * @see at.gv.egovernment.moa.id.protocols.pvp2x.config. + * IPVPAuthnRequestBuilderConfiguruation#getSubjectNameIDFormat() + */ + @Override + public String getSubjectNameIdFormat() { + return null; + } + + /* + * (non-Javadoc) + * + * @see at.gv.egovernment.moa.id.protocols.pvp2x.config. + * IPVPAuthnRequestBuilderConfiguruation#getRequestID() + */ + @Override + public String getRequestID() { + return this.reqId; + } + + /* + * (non-Javadoc) + * + * @see at.gv.egovernment.moa.id.protocols.pvp2x.config. + * IPVPAuthnRequestBuilderConfiguruation#getSubjectNameIDQualifier() + */ + @Override + public String getSubjectNameIdQualifier() { + return null; + } + + /* + * (non-Javadoc) + * + * @see at.gv.egovernment.moa.id.protocols.pvp2x.config. + * IPVPAuthnRequestBuilderConfiguruation#getSubjectConformationMethode() + */ + @Override + public String getSubjectConformationMethode() { + return null; + } + + /* + * (non-Javadoc) + * + * @see at.gv.egovernment.moa.id.protocols.pvp2x.config. + * IPVPAuthnRequestBuilderConfiguruation#getSubjectConformationDate() + */ + @Override + public Element getSubjectConformationDate() { + return null; + } + + @Override + public List<EaafRequestedAttribute> getRequestedAttributes() { + return this.requestedAttributes; + + } + + @Override + public String getProviderName() { + return this.providerName; + } + + @Override + public String getScopeRequesterId() { + return this.scopeRequesterId; + } + + /** + * Set the entityId of the SP that requests the proxy for eIDAS authentication. + * + * @param scopeRequesterId RequestId in SAML2 Proxy extension + */ + public void setScopeRequesterId(String scopeRequesterId) { + this.scopeRequesterId = scopeRequesterId; + } + + /** + * Set a friendlyName for the SP that requests the proxy for eIDAS + * authentication. + * + * @param providerName SAML2 provider-name attribute-value + */ + public void setProviderName(String providerName) { + this.providerName = providerName; + } + + /** + * Set a Set of PVP attributes that a requested by using requested attributes. + * + * @param requestedAttributes Requested SAML2 attributes + */ + public void setRequestedAttributes(List<EaafRequestedAttribute> requestedAttributes) { + this.requestedAttributes = requestedAttributes; + } + + /** + * Set a RequestId for this Authn. Request. + * + * @param reqId SAML2 message requestId + */ + public void setRequestId(String reqId) { + this.reqId = reqId; + } + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/idaustriaclient/controller/IdAustriaClientAuthMetadataController.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/idaustriaclient/controller/IdAustriaClientAuthMetadataController.java new file mode 100644 index 00000000..1e4b27f7 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/idaustriaclient/controller/IdAustriaClientAuthMetadataController.java @@ -0,0 +1,122 @@ +package at.asitplus.eidas.specific.modules.auth.eidas.v2.idaustriaclient.controller; + + +import java.io.IOException; +import java.net.MalformedURLException; +import java.net.URL; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; + +import com.google.common.net.MediaType; + +import at.asitplus.eidas.specific.modules.auth.eidas.v2.idaustriaclient.IdAustriaClientAuthConstants; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.idaustriaclient.IdAustriaClientAuthMetadataConfiguration; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.idaustriaclient.provider.IdAustriaClientAuthCredentialProvider; +import at.gv.egiz.eaaf.core.exceptions.EaafAuthenticationException; +import at.gv.egiz.eaaf.core.exceptions.EaafException; +import at.gv.egiz.eaaf.core.impl.http.HttpUtils; +import at.gv.egiz.eaaf.core.impl.idp.controller.AbstractController; +import at.gv.egiz.eaaf.modules.pvp2.api.IPvp2BasicConfiguration; +import at.gv.egiz.eaaf.modules.pvp2.impl.builder.PvpMetadataBuilder; +import lombok.extern.slf4j.Slf4j; + +/** + * Controller that generates SAML2 metadata for eIDAS authentication client. + * + * @author tlenz + * + */ +@Slf4j +@Controller +public class IdAustriaClientAuthMetadataController extends AbstractController { + + private static final String ERROR_CODE_INTERNAL_00 = "eaaf.core.00"; + + @Autowired + PvpMetadataBuilder metadatabuilder; + @Autowired + IdAustriaClientAuthCredentialProvider credentialProvider; + @Autowired + IPvp2BasicConfiguration pvpConfiguration; + + /** + * Default construction with logging. + * + */ + public IdAustriaClientAuthMetadataController() { + super(); + log.debug("Registering servlet " + getClass().getName() + + " with mappings '" + IdAustriaClientAuthConstants.ENDPOINT_METADATA + + "'."); + + } + + /** + * End-point that produce PVP2 metadata for eIDAS authentication client. + * + * @param req http Request + * @param resp http Response + * @throws IOException In case of an I/O error + * @throws EaafException In case of a metadata generation error + */ + @RequestMapping(value = IdAustriaClientAuthConstants.ENDPOINT_METADATA, + method = { RequestMethod.GET }) + public void getSpMetadata(HttpServletRequest req, HttpServletResponse resp) throws IOException, + EaafException { + // check PublicURL prefix + try { + final String authUrl = getAuthUrlFromHttpContext(req); + + // initialize metadata builder configuration + final IdAustriaClientAuthMetadataConfiguration metadataConfig = + new IdAustriaClientAuthMetadataConfiguration(authUrl, credentialProvider, pvpConfiguration); + // metadataConfig.setAdditionalRequiredAttributes(getAdditionalRequiredAttributes()); + + // build metadata + final String xmlMetadata = metadatabuilder.buildPvpMetadata(metadataConfig); + + // write response + final byte[] content = xmlMetadata.getBytes("UTF-8"); + resp.setStatus(HttpServletResponse.SC_OK); + resp.setContentLength(content.length); + resp.setContentType(MediaType.XML_UTF_8.toString()); + resp.getOutputStream().write(content); + + } catch (final Exception e) { + log.warn("Build federated-authentication PVP metadata FAILED.", e); + protAuthService.handleErrorNoRedirect(e, req, resp, false); + + } + + } + + private String getAuthUrlFromHttpContext(HttpServletRequest req) throws EaafException { + // check if End-Point is valid + final String authUrlString = HttpUtils.extractAuthUrlFromRequest(req); + URL authReqUrl; + try { + authReqUrl = new URL(authUrlString); + + } catch (final MalformedURLException e) { + log.warn("Requested URL: {} is not a valid URL.", authUrlString); + throw new EaafAuthenticationException(ERROR_CODE_INTERNAL_00, new Object[] { authUrlString }, e); + + } + + final String idpAuthUrl = authConfig.validateIdpUrl(authReqUrl); + if (idpAuthUrl == null) { + log.warn("Requested URL: {} is NOT found in configuration.", authReqUrl); + throw new EaafAuthenticationException(ERROR_CODE_INTERNAL_00, new Object[] { authUrlString }); + + } + + return idpAuthUrl; + } + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/idaustriaclient/controller/IdAustriaClientAuthSignalController.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/idaustriaclient/controller/IdAustriaClientAuthSignalController.java new file mode 100644 index 00000000..eca21683 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/idaustriaclient/controller/IdAustriaClientAuthSignalController.java @@ -0,0 +1,95 @@ +package at.asitplus.eidas.specific.modules.auth.eidas.v2.idaustriaclient.controller; + + +import java.io.IOException; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.apache.commons.lang3.StringUtils; +import org.apache.commons.text.StringEscapeUtils; +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; + +import at.asitplus.eidas.specific.modules.auth.eidas.v2.idaustriaclient.IdAustriaClientAuthConstants; +import at.gv.egiz.eaaf.core.exceptions.EaafException; +import at.gv.egiz.eaaf.core.impl.idp.controller.AbstractProcessEngineSignalController; +import lombok.extern.slf4j.Slf4j; + +/** + * IdAustria client controller that receives the response from ID Austria system. + * + * @author tlenz + * + */ +@Slf4j +@Controller +public class IdAustriaClientAuthSignalController extends AbstractProcessEngineSignalController { + + public static final String HTTP_PARAM_RELAYSTATE = "RelayState"; + + /** + * Default constructor with logging. + * + */ + public IdAustriaClientAuthSignalController() { + super(); + log.debug("Registering servlet " + getClass().getName() + + " with mappings '" + IdAustriaClientAuthConstants.ENDPOINT_POST + + "' and '" + IdAustriaClientAuthConstants.ENDPOINT_REDIRECT + "'."); + + } + + /** + * HTTP end-point for incoming SAML2 Response from ID Austria system. + * + * @param req HTTP request + * @param resp HTTP response + * @throws IOException In case of a HTTP communication error + * @throws EaafException In case of a state-validation problem + */ + @RequestMapping(value = { IdAustriaClientAuthConstants.ENDPOINT_POST, + IdAustriaClientAuthConstants.ENDPOINT_REDIRECT }, + method = { RequestMethod.POST, RequestMethod.GET }) + public void performAuthentication(HttpServletRequest req, HttpServletResponse resp) + throws IOException, EaafException { + signalProcessManagement(req, resp); + + } + + /** + * Read the PendingRequestId from SAML2 RelayState parameter. + */ + @Override + public String getPendingRequestId(HttpServletRequest request) { + String relayState = StringEscapeUtils.escapeHtml4(request.getParameter(HTTP_PARAM_RELAYSTATE)); + if (StringUtils.isNotEmpty(relayState)) { + try { + String pendingReqId = transactionStorage.get(relayState, String.class); + if (StringUtils.isNotEmpty(pendingReqId)) { + + return pendingReqId; + + } else { + log.info("SAML2 RelayState from request is unknown. Can NOT restore session ... "); + + } + + } catch (EaafException e) { + log.error("Can NOT map SAML2 RelayState to pendingRequestId", e); + + } finally { + transactionStorage.remove(relayState); + + } + + } else { + log.info("No SAML2 relaystate. Can NOT restore session ... "); + + } + + return null; + + } +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/idaustriaclient/provider/IdAustriaClientAuthCredentialProvider.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/idaustriaclient/provider/IdAustriaClientAuthCredentialProvider.java new file mode 100644 index 00000000..5b6085c1 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/idaustriaclient/provider/IdAustriaClientAuthCredentialProvider.java @@ -0,0 +1,132 @@ +package at.asitplus.eidas.specific.modules.auth.eidas.v2.idaustriaclient.provider; + +import org.springframework.beans.factory.annotation.Autowired; + +import at.asitplus.eidas.specific.modules.auth.eidas.v2.Constants; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.idaustriaclient.IdAustriaClientAuthConstants; +import at.gv.egiz.eaaf.core.api.idp.IConfiguration; +import at.gv.egiz.eaaf.core.exceptions.EaafConfigurationException; +import at.gv.egiz.eaaf.core.impl.credential.KeyStoreConfiguration; +import at.gv.egiz.eaaf.core.impl.credential.KeyStoreConfiguration.KeyStoreType; +import at.gv.egiz.eaaf.modules.pvp2.impl.utils.AbstractCredentialProvider; + +/** + * Credential provider for eIDAS PVP S-Profile client. + * + * @author tlenz + * + */ +public class IdAustriaClientAuthCredentialProvider extends AbstractCredentialProvider { + + @Autowired + IConfiguration authConfig; + + private static final String FRIENDLYNAME = "ID Austria authentication"; + + @Override + public KeyStoreConfiguration getBasicKeyStoreConfig() throws EaafConfigurationException { + final KeyStoreConfiguration keyStoreConfig = new KeyStoreConfiguration(); + keyStoreConfig.setFriendlyName(FRIENDLYNAME); + keyStoreConfig.setKeyStoreType( + authConfig.getBasicConfiguration(IdAustriaClientAuthConstants.CONFIG_PROPS_KEYSTORE_TYPE, + KeyStoreType.PKCS12.getKeyStoreType())); + keyStoreConfig.setKeyStoreName( + authConfig.getBasicConfiguration(IdAustriaClientAuthConstants.CONFIG_PROPS_KEYSTORE_NAME)); + keyStoreConfig.setSoftKeyStoreFilePath(getKeyStoreFilePath()); + keyStoreConfig.setSoftKeyStorePassword( + authConfig.getBasicConfiguration(IdAustriaClientAuthConstants.CONFIG_PROPS_KEYSTORE_PASSWORD)); + + return keyStoreConfig; + + } + + private String getKeyStoreFilePath() throws EaafConfigurationException { + final String path = authConfig.getBasicConfiguration( + IdAustriaClientAuthConstants.CONFIG_PROPS_KEYSTORE_PATH); + if (path == null) { + throw new EaafConfigurationException(Constants.ERRORCODE_00, + new Object[] { IdAustriaClientAuthConstants.CONFIG_PROPS_KEYSTORE_PATH }); + + } + return path; + } + + /* + * (non-Javadoc) + * + * @see + * at.gv.egovernment.moa.id.protocols.pvp2x.signer.AbstractCredentialProvider# + * getMetadataKeyAlias() + */ + @Override + public String getMetadataKeyAlias() { + return authConfig.getBasicConfiguration( + IdAustriaClientAuthConstants.CONFIG_PROPS_SIGN_METADATA_ALIAS); + } + + /* + * (non-Javadoc) + * + * @see + * at.gv.egovernment.moa.id.protocols.pvp2x.signer.AbstractCredentialProvider# + * getMetadataKeyPassword() + */ + @Override + public String getMetadataKeyPassword() { + return authConfig.getBasicConfiguration( + IdAustriaClientAuthConstants.CONFIG_PROPS_SIGN_METADATA_KEY_PASSWORD); + } + + /* + * (non-Javadoc) + * + * @see + * at.gv.egovernment.moa.id.protocols.pvp2x.signer.AbstractCredentialProvider# + * getSignatureKeyAlias() + */ + @Override + public String getSignatureKeyAlias() { + return authConfig.getBasicConfiguration( + IdAustriaClientAuthConstants.CONFIG_PROPS_SIGN_SIGNING_ALIAS); + } + + /* + * (non-Javadoc) + * + * @see + * at.gv.egovernment.moa.id.protocols.pvp2x.signer.AbstractCredentialProvider# + * getSignatureKeyPassword() + */ + @Override + public String getSignatureKeyPassword() { + return authConfig.getBasicConfiguration( + IdAustriaClientAuthConstants.CONFIG_PROPS_SIGN_SIGNING_KEY_PASSWORD); + } + + /* + * (non-Javadoc) + * + * @see + * at.gv.egovernment.moa.id.protocols.pvp2x.signer.AbstractCredentialProvider# + * getEncryptionKeyAlias() + */ + @Override + public String getEncryptionKeyAlias() { + return authConfig.getBasicConfiguration( + IdAustriaClientAuthConstants.CONFIG_PROPS_ENCRYPTION_ALIAS); + } + + /* + * (non-Javadoc) + * + * @see + * at.gv.egovernment.moa.id.protocols.pvp2x.signer.AbstractCredentialProvider# + * getEncryptionKeyPassword() + */ + @Override + public String getEncryptionKeyPassword() { + return authConfig.getBasicConfiguration( + IdAustriaClientAuthConstants.CONFIG_PROPS_ENCRYPTION_KEY_PASSWORD); + } + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/idaustriaclient/provider/IdAustriaClientAuthHealthCheck.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/idaustriaclient/provider/IdAustriaClientAuthHealthCheck.java new file mode 100644 index 00000000..b54b501d --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/idaustriaclient/provider/IdAustriaClientAuthHealthCheck.java @@ -0,0 +1,56 @@ +package at.asitplus.eidas.specific.modules.auth.eidas.v2.idaustriaclient.provider; + +import org.apache.commons.lang3.StringUtils; +import org.opensaml.saml.saml2.metadata.EntityDescriptor; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.actuate.health.Health; +import org.springframework.boot.actuate.health.HealthIndicator; + +import at.asitplus.eidas.specific.modules.auth.eidas.v2.idaustriaclient.IdAustriaClientAuthConstants; +import at.gv.egiz.eaaf.core.api.idp.IConfiguration; +import lombok.extern.slf4j.Slf4j; +import net.shibboleth.utilities.java.support.resolver.ResolverException; + +/** + * Spring Actuator HealthCheck for ID Austria client that evaluates the current status of + * ID Austria SAML2 metadata that are loaded into MS-Connector. + * + * @author tlenz + * + */ +@Slf4j +public class IdAustriaClientAuthHealthCheck implements HealthIndicator { + + @Autowired IConfiguration authConfig; + @Autowired IdAustriaClientAuthMetadataProvider metadataService; + + @Override + public Health health() { + String msNodeEntityID = authConfig.getBasicConfiguration( + IdAustriaClientAuthConstants.CONFIG_PROPS_ID_AUSTRIA_ENTITYID); + + if (StringUtils.isEmpty(msNodeEntityID)) { + log.trace("No ID Austria EntityId in configuration. Skipping tests ... "); + return Health.unknown().build(); + + } + + try { + EntityDescriptor connectorMetadata = + metadataService.getEntityDescriptor(msNodeEntityID); + if (connectorMetadata != null) { + return Health.up().build(); + + } else { + return Health.outOfService().withDetail("Reason", "No SAML2 metadata").build(); + + } + + } catch (ResolverException e) { + return Health.down(e).build(); + + } + + } + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/idaustriaclient/provider/IdAustriaClientAuthMetadataProvider.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/idaustriaclient/provider/IdAustriaClientAuthMetadataProvider.java new file mode 100644 index 00000000..7c87548f --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/idaustriaclient/provider/IdAustriaClientAuthMetadataProvider.java @@ -0,0 +1,169 @@ +package at.asitplus.eidas.specific.modules.auth.eidas.v2.idaustriaclient.provider; + +import java.io.IOException; +import java.security.KeyStore; +import java.security.Provider; +import java.security.cert.CertificateException; +import java.text.MessageFormat; +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; + +import javax.annotation.PostConstruct; + +import org.apache.commons.lang3.StringUtils; +import org.opensaml.saml.metadata.resolver.MetadataResolver; +import org.opensaml.saml.metadata.resolver.filter.MetadataFilter; +import org.opensaml.saml.metadata.resolver.filter.MetadataFilterChain; +import org.springframework.beans.factory.annotation.Autowired; + +import at.asitplus.eidas.specific.modules.auth.eidas.v2.idaustriaclient.IdAustriaClientAuthConstants; +import at.gv.egiz.eaaf.core.api.idp.IConfiguration; +import at.gv.egiz.eaaf.core.exceptions.EaafConfigurationException; +import at.gv.egiz.eaaf.core.exceptions.EaafException; +import at.gv.egiz.eaaf.core.impl.credential.EaafKeyStoreFactory; +import at.gv.egiz.eaaf.core.impl.credential.KeyStoreConfiguration; +import at.gv.egiz.eaaf.core.impl.credential.KeyStoreConfiguration.KeyStoreType; +import at.gv.egiz.eaaf.core.impl.data.Pair; +import at.gv.egiz.eaaf.core.impl.http.IHttpClientFactory; +import at.gv.egiz.eaaf.modules.pvp2.exception.Pvp2MetadataException; +import at.gv.egiz.eaaf.modules.pvp2.impl.metadata.AbstractChainingMetadataProvider; +import at.gv.egiz.eaaf.modules.pvp2.impl.metadata.PvpMetadataResolverFactory; +import at.gv.egiz.eaaf.modules.pvp2.impl.validation.metadata.SchemaValidationFilter; +import at.gv.egiz.eaaf.modules.pvp2.impl.validation.metadata.SimpleMetadataSignatureVerificationFilter; +import lombok.extern.slf4j.Slf4j; + +/** + * SAML2 metadata-provider implementation for ID Austria client. + * + * @author tlenz + * + */ +@Slf4j +public class IdAustriaClientAuthMetadataProvider extends AbstractChainingMetadataProvider { + + private static final String FRIENDLYNAME_METADATA_TRUSTSTORE = "'ID Austria client metadata truststore'"; + private static final String PROVIDER_ID_PATTERN = "eIDAS resolver: {0}"; + public static final String PROVIDER_ID = "'ID Austria client metadata-provider'"; + + @Autowired + private IConfiguration basicConfig; + + @Autowired + private PvpMetadataResolverFactory metadataProviderFactory; + @Autowired + private IHttpClientFactory httpClientFactory; + + @Autowired + private EaafKeyStoreFactory keyStoreFactory; + + private Pair<KeyStore, Provider> metadataSigningTrustStore; + + @Override + protected String getMetadataUrl(String entityId) throws EaafConfigurationException { + log.trace("ID Austria. uses SAML2 well-known location approach. EntityId is Metadata-URL"); + return entityId; + + } + + @Override + protected MetadataResolver createNewMetadataProvider(String entityId) throws EaafConfigurationException, + IOException, CertificateException { + final List<MetadataFilter> filterList = new ArrayList<>(); + filterList.add(new SchemaValidationFilter(true)); + filterList.add(new SimpleMetadataSignatureVerificationFilter( + metadataSigningTrustStore.getFirst(), entityId)); + + final MetadataFilterChain filter = new MetadataFilterChain(); + filter.setFilters(filterList); + + try { + return metadataProviderFactory.createMetadataProvider(getMetadataUrl(entityId), + filter, + MessageFormat.format(PROVIDER_ID_PATTERN, entityId), + httpClientFactory.getHttpClient()); + + } catch (final Pvp2MetadataException e) { + log.info("Can NOT build metadata provider for entityId: {}", entityId); + throw new EaafConfigurationException(IdAustriaClientAuthConstants.ERRORCODE_05, + new Object[] { entityId, e.getMessage() }, e); + + } + } + + @Override + protected List<String> getAllMetadataUrlsFromConfiguration() throws EaafConfigurationException { + return Collections.emptyList(); + + } + + @Override + protected String getMetadataProviderId() { + return PROVIDER_ID; + + } + + @Override + public void runGarbageCollector() { + log.trace("Garbage collection is NOT supported by: {}", getId()); + } + + @Override + public void doDestroy() { + super.fullyDestroy(); + + } + + @PostConstruct + private void initialize() throws EaafException { + // initialize truststore to validate metadata signing certificates + initializeTrustStore(); + + // load metadata with metadataURL, as backup + initializeFileSystemMetadata(); + + } + + private void initializeFileSystemMetadata() { + try { + final String metadataUrl = basicConfig.getBasicConfiguration( + IdAustriaClientAuthConstants.CONFIG_PROPS_ID_AUSTRIA_METADATAURL); + if (StringUtils.isNotEmpty(metadataUrl)) { + log.info("Use not recommended metadata-provider initialization!" + + " SAML2 'Well-Known-Location' is the preferred methode."); + log.info("Initialize 'ms-specific eIDAS node' metadata-provider with URL: {}", metadataUrl); + + addMetadataResolverIntoChain(createNewMetadataProvider(metadataUrl)); + } + + } catch (final EaafConfigurationException | CertificateException | IOException e) { + log.warn("Can NOT inject static eIDAS Node metadata-soure.", e); + log.warn("eIDAS Node communication can be FAIL."); + + } + } + + private void initializeTrustStore() throws EaafException { + // set configuration + final KeyStoreConfiguration trustStoreConfig = new KeyStoreConfiguration(); + trustStoreConfig.setFriendlyName(FRIENDLYNAME_METADATA_TRUSTSTORE); + trustStoreConfig.setKeyStoreType(basicConfig.getBasicConfiguration( + IdAustriaClientAuthConstants.CONFIG_PROPS_TRUSTSTORE_TYPE, + KeyStoreType.JKS.getKeyStoreType())); + trustStoreConfig.setKeyStoreName(basicConfig.getBasicConfiguration( + IdAustriaClientAuthConstants.CONFIG_PROPS_TRUSTSTORE_NAME)); + trustStoreConfig.setSoftKeyStoreFilePath(basicConfig.getBasicConfiguration( + IdAustriaClientAuthConstants.CONFIG_PROPS_TRUSTSTORE_PATH)); + trustStoreConfig.setSoftKeyStorePassword(basicConfig.getBasicConfiguration( + IdAustriaClientAuthConstants.CONFIG_PROPS_TRUSTSTORE_PASSWORD)); + + // validate configuration + trustStoreConfig.validate(); + + // open new TrustStore + metadataSigningTrustStore = keyStoreFactory.buildNewKeyStore(trustStoreConfig); + + } + +} + diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/service/CcSpecificEidProcessingService.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/service/CcSpecificEidProcessingService.java index 230d6052..b5493edb 100644 --- a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/service/CcSpecificEidProcessingService.java +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/service/CcSpecificEidProcessingService.java @@ -32,6 +32,7 @@ import java.util.Map.Entry; import javax.annotation.PostConstruct; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.SimpleEidasData; import org.apache.commons.lang3.StringUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -40,7 +41,6 @@ import org.springframework.context.ApplicationContext; import org.springframework.stereotype.Service; import at.asitplus.eidas.specific.modules.auth.eidas.v2.Constants; -import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.ErnbEidData; import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.EidPostProcessingException; import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.EidasAttributeException; import at.asitplus.eidas.specific.modules.auth.eidas.v2.handler.INationalEidProcessor; @@ -104,7 +104,7 @@ public class CcSpecificEidProcessingService implements ICcSpecificEidProcessingS } @Override - public ErnbEidData postProcess(Map<String, Object> eidasAttrMap) throws EidPostProcessingException, + public SimpleEidasData postProcess(Map<String, Object> eidasAttrMap) throws EidPostProcessingException, EidasAttributeException { // extract citizen country from eIDAS unique identifier final Object eIdentifierObj = eidasAttrMap.get(Constants.eIDAS_ATTR_PERSONALIDENTIFIER); diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/service/ICcSpecificEidProcessingService.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/service/ICcSpecificEidProcessingService.java index ebbc15e4..fb9ba318 100644 --- a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/service/ICcSpecificEidProcessingService.java +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/service/ICcSpecificEidProcessingService.java @@ -25,7 +25,7 @@ package at.asitplus.eidas.specific.modules.auth.eidas.v2.service; import java.util.Map; -import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.ErnbEidData; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.SimpleEidasData; import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.EidasAttributeException; import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.EidPostProcessingException; import at.gv.egiz.eaaf.core.api.IRequest; @@ -36,20 +36,20 @@ public interface ICcSpecificEidProcessingService { /** * Post-process eIDAS eID attributes into national format. - * + * * @param eidasAttrMap Map of eIDAS attributes in format friendlyName and * attribute - * + * * @return eID attributes for SZR request * @throws EidPostProcessingException In case of a post-processing error * @throws EidasAttributeException In case of an invalid eIDAS attribute value */ - ErnbEidData postProcess(Map<String, Object> eidasAttrMap) throws EidPostProcessingException, + SimpleEidasData postProcess(Map<String, Object> eidasAttrMap) throws EidPostProcessingException, EidasAttributeException; /** * Pre Process eIDAS request into national requirements. - * + * * @param selectedCC Citizen Country from selection * @param pendingReq current pending request * @param authnRequestBuilder eIDAS {@link ILightRequest} builder diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/service/RegisterSearchService.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/service/RegisterSearchService.java new file mode 100644 index 00000000..232b1d11 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/service/RegisterSearchService.java @@ -0,0 +1,339 @@ +package at.asitplus.eidas.specific.modules.auth.eidas.v2.service; + +import at.asitplus.eidas.specific.modules.auth.eidas.v2.clients.zmr.IZmrClient; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.clients.zmr.ZmrSoapClient.ZmrRegisterResult; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.RegisterResult; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.SimpleEidasData; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.ernp.IErnpClient; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.EidasSAuthenticationException; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.WorkflowException; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.ZmrCommunicationException; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.handler.CountrySpecificDetailSearchProcessor; +import lombok.AllArgsConstructor; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.extern.slf4j.Slf4j; +import org.apache.commons.collections4.ListUtils; +import org.jetbrains.annotations.Nullable; +import org.springframework.stereotype.Service; + +import javax.annotation.Nonnull; +import java.math.BigInteger; +import java.util.Arrays; +import java.util.Collections; +import java.util.List; + +@Slf4j +@Service("registerSearchService") +public class RegisterSearchService { + + private final IZmrClient zmrClient; + private final IErnpClient ernpClient; + + private final List<CountrySpecificDetailSearchProcessor> handlers; + + /** + * Service that combines ZMR and ERnP register search operations. + * + * @param handlers Available country-specific search processors + * @param zmrClient ZMR client + * @param ernpClient ERnP client + */ + public RegisterSearchService(List<CountrySpecificDetailSearchProcessor> handlers, IZmrClient zmrClient, + IErnpClient ernpClient) { + this.zmrClient = zmrClient; + this.ernpClient = ernpClient; + this.handlers = handlers; + log.info("Init with #{} search services for country-specific details", handlers.size()); + + } + + /** + * Search with Person Identifier (eIDAS Pseudonym) in ZMR and ERnP. + * + * @param eidasData Received eIDAS data + * @throws WorkflowException In case of a register interaction error + */ + @Nonnull + public RegisterStatusResults searchWithPersonIdentifier(SimpleEidasData eidasData) + throws WorkflowException { + try { + final ZmrRegisterResult resultsZmr = zmrClient.searchWithPersonIdentifier( + null, eidasData.getPseudonym(), eidasData.getCitizenCountryCode()); + final List<RegisterResult> resultsErnp = ernpClient.searchWithPersonIdentifier( + eidasData.getPersonalIdentifier()); + + return RegisterStatusResults.fromZmrAndErnp(resultsZmr, resultsErnp); + + } catch (final EidasSAuthenticationException e) { + throw new WorkflowException("searchWithPersonalIdentifier", e.getMessage(), + !(e instanceof ZmrCommunicationException), e); + + } + } + + /** + * Search with MDS (Given Name, Family Name, Date of Birth) in ZMR and ERnP. + * + * @param operationStatus Current register-operation status that contains processing informations + * @param eidasData Received eIDAS data + * @throws WorkflowException In case of a register interaction error + */ + @Nonnull + public RegisterStatusResults searchWithMds(RegisterOperationStatus operationStatus, SimpleEidasData eidasData) + throws WorkflowException { + try { + final ZmrRegisterResult resultsZmr = + zmrClient.searchWithMds(operationStatus.getZmrProcessId(), eidasData.getGivenName(), + eidasData.getFamilyName(), eidasData.getDateOfBirth(), eidasData.getCitizenCountryCode()); + + final List<RegisterResult> resultsErnp = + ernpClient.searchWithMds(eidasData.getGivenName(), eidasData.getFamilyName(), eidasData + .getDateOfBirth()); + + return RegisterStatusResults.fromZmrAndErnp(resultsZmr, resultsErnp); + + } catch (final EidasSAuthenticationException e) { + throw new WorkflowException("searchWithMDSOnly", e.getMessage(), + !(e instanceof ZmrCommunicationException), e); + + } + } + + /** + * Search with country-specific parameters based on information from available + * {@link CountrySpecificDetailSearchProcessor} implementations. + * + * @param operationStatus Current register-operation status that contains processing informations + * @param eidasData Receive eIDAS eID information + * @return Results from ZMR or ERnP search + * @throws WorkflowException In case of a register interaction error + */ + @Nonnull + public RegisterStatusResults searchWithCountrySpecifics(RegisterOperationStatus operationStatus, + SimpleEidasData eidasData) throws WorkflowException { + try { + @Nullable final CountrySpecificDetailSearchProcessor ccSpecificProcessor = findSpecificProcessor(eidasData); + if (ccSpecificProcessor != null) { + log.debug("Selecting country-specific search processor: {}", ccSpecificProcessor.getName()); + final ZmrRegisterResult resultsZmr = + zmrClient.searchCountrySpecific(operationStatus.getZmrProcessId(), + ccSpecificProcessor.generateSearchRequest(eidasData), + eidasData.getCitizenCountryCode()); + return RegisterStatusResults.fromZmr(resultsZmr); + + } else { + // TODO: add search procesfor for ERnP searching + return RegisterStatusResults.fromErnp(operationStatus, Collections.emptyList()); + + } + + } catch (final EidasSAuthenticationException e) { + throw new WorkflowException("searchWithCountrySpecifics", e.getMessage(), + !(e instanceof ZmrCommunicationException), e); + + } + } + + /** + * Search with residence infos. + * + * @param operationStatus Current register-operation status that contains processing informations + * @param zipcode Provided Zipcode + * @param city Provided City + * @param street Provided street + * @return Results from ZMR or ERnP search + */ + public RegisterStatusResults searchWithResidence(RegisterOperationStatus operationStatus, SimpleEidasData eidasData, + String zipcode, String city, String street) { + final ZmrRegisterResult resultsZmr = zmrClient.searchWithResidenceData( + operationStatus.getZmrProcessId(), eidasData.getGivenName(), eidasData.getFamilyName(), + eidasData.getDateOfBirth(), zipcode, city, street); + return RegisterStatusResults.fromZmr(resultsZmr); + + } + + /** + * Automatic process to fix the register entries. + * Called when the initial eIDAS authn leads to a match in a register. + * + * @param registerResult Result of last register search + * @param initialEidasData Received eidas data from initial authn + * @return + */ + public RegisterStatusResults step7aKittProcess(RegisterStatusResults registerResult, + SimpleEidasData initialEidasData) throws WorkflowException { + log.trace("Starting step7aKittProcess"); + // TODO verify with which data this method gets called + if (registerResult.getResultCount() != 1) { + throw new WorkflowException("step7aKittProcess", "getResultCount() != 1"); + } + try { + if (registerResult.getResultsZmr().size() == 1) { + RegisterResult entryZmr = registerResult.getResultsZmr().get(0); + ZmrRegisterResult updateZmr = zmrClient + .update(registerResult.getOperationStatus().getZmrProcessId(), entryZmr, initialEidasData); + return RegisterStatusResults.fromZmr(updateZmr); + } else { + RegisterResult entryErnp = registerResult.getResultsErnp().get(0); + RegisterResult updateErnp = ernpClient.update(entryErnp, initialEidasData); + return RegisterStatusResults.fromErnp(registerResult.operationStatus, Collections.singletonList(updateErnp)); + } + } catch (final EidasSAuthenticationException e) { + throw new WorkflowException("kittMatchedIdentitiess", e.getMessage(), + !(e instanceof ZmrCommunicationException), e); + } + } + + /** + * Automatic process to fix the register entries. + * Called when the alternative eIDAS authn leads to a match in a register. + * + * @param registerResult Result of last register search + * @param initialEidasData Received eidas data from initial authentication + * @param altEidasData Received eidas data from alternative authentication + * @return + */ + public RegisterStatusResults step7bKittProcess(RegisterStatusResults registerResult, + SimpleEidasData initialEidasData, SimpleEidasData altEidasData) + throws WorkflowException { + log.trace("Starting step7bKittProcess"); + // TODO verify with which data this method gets called + if (registerResult.getResultCount() != 1) { + throw new WorkflowException("step7bKittProcess", "getResultCount() != 1"); + } + try { + if (registerResult.getResultsZmr().size() == 1) { + RegisterResult entryZmr = registerResult.getResultsZmr().get(0); + ZmrRegisterResult updateAlt = zmrClient + .update(registerResult.getOperationStatus().getZmrProcessId(), entryZmr, altEidasData); + ZmrRegisterResult updateInitial = zmrClient + .update(registerResult.getOperationStatus().getZmrProcessId(), entryZmr, initialEidasData); + return new RegisterStatusResults(registerResult.getOperationStatus(), + ListUtils.union(updateAlt.getPersonResult(), updateInitial.getPersonResult()), + Collections.emptyList()); + } else { + RegisterResult entryErnp = registerResult.getResultsErnp().get(0); + RegisterResult updateAlt = ernpClient.update(entryErnp, altEidasData); + RegisterResult updateInitial = ernpClient.update(entryErnp, initialEidasData); + return new RegisterStatusResults(registerResult.getOperationStatus(), Collections.emptyList(), + Arrays.asList(updateAlt, updateInitial)); + } + } catch (final EidasSAuthenticationException e) { + throw new WorkflowException("kittMatchedIdentitiess", e.getMessage(), + !(e instanceof ZmrCommunicationException), e); + } + } + + @Nullable + private CountrySpecificDetailSearchProcessor findSpecificProcessor(SimpleEidasData eidasData) { + final String citizenCountry = eidasData.getCitizenCountryCode(); + for (final CountrySpecificDetailSearchProcessor processor : handlers) { + if (processor.canHandle(citizenCountry, eidasData)) { + log.debug("Found suitable search handler for {} by using: {}", citizenCountry, processor.getName()); + return processor; + } + } + return null; + } + + /** + * Register releated information that are needed for any request. + * + * @author tlenz + */ + @AllArgsConstructor + @Getter + public static class RegisterOperationStatus { + + /** + * ZMR internal processId that is required for any further request in the same process. + */ + private BigInteger zmrProcessId; + + + } + + + /** + * Response container for {@link RegisterSearchService} that holds a set of {@link RegisterResult}. + * + * @author tlenz + */ + @Getter + @RequiredArgsConstructor + public static class RegisterStatusResults { + /** + * Operation status for this result. + */ + private final RegisterOperationStatus operationStatus; + + /** + * Current ZMR search result. + */ + private final List<RegisterResult> resultsZmr; + + /** + * Current ERnP search result. + */ + private final List<RegisterResult> resultsErnp; + + /** + * Get sum of ZMR and ERnP results. + * + * @return number of results + */ + public int getResultCount() { + return resultsZmr.size() + resultsErnp.size(); + } + + /** + * Verifies that there is only one match and returns the bpk. + * + * @return bpk bpk of the match + * @throws WorkflowException if multiple results have been found + */ + public String getBpk() throws WorkflowException { + if (getResultCount() != 1) { + throw new WorkflowException("readRegisterResults", "getResultCount() != 1"); + + } + return getResult().getBpk(); + } + + /** + * Returns the results, if there is exactly one, throws exception otherwise. + * + * @return The result + * @throws WorkflowException Results does not contain exactly one result + */ + public RegisterResult getResult() throws WorkflowException { + if (getResultCount() != 1) { + throw new WorkflowException("readRegisterResults", "getResultCount() != 1"); + } + if (resultsZmr.size() == 1) { + return resultsZmr.get(0); + + } else { + return resultsErnp.get(0); + + } + } + + static RegisterStatusResults fromZmr(ZmrRegisterResult result) { + return new RegisterStatusResults(new RegisterOperationStatus(result.getProcessId()), + result.getPersonResult(), Collections.emptyList()); + } + + static RegisterStatusResults fromZmrAndErnp(ZmrRegisterResult result, List<RegisterResult> resultsErnp) { + return new RegisterStatusResults(new RegisterOperationStatus(result.getProcessId()), + result.getPersonResult(), resultsErnp); + } + + static RegisterStatusResults fromErnp(RegisterOperationStatus status, List<RegisterResult> resultsErnp) { + return new RegisterStatusResults(status, Collections.emptyList(), resultsErnp); + } + + } + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/szr/SzrClient.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/szr/SzrClient.java deleted file mode 100644 index 1f5837d6..00000000 --- a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/szr/SzrClient.java +++ /dev/null @@ -1,522 +0,0 @@ -/* - * Copyright 2018 A-SIT Plus GmbH - * AT-specific eIDAS Connector has been developed in a cooperation between EGIZ, - * A-SIT Plus GmbH, A-SIT, and Graz University of Technology. - * - * Licensed under the EUPL, Version 1.2 or - as soon they will be approved by - * the European Commission - subsequent versions of the EUPL (the "License"); - * You may not use this work except in compliance with the License. - * You may obtain a copy of the License at: - * https://joinup.ec.europa.eu/news/understanding-eupl-v12 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" basis, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - * This product combines work with different licenses. See the "NOTICE" text - * file for details on the various modules and licenses. - * The "NOTICE" text file is part of the distribution. Any derivative works - * that you distribute must include a readable copy of the "NOTICE" text file. - */ - -package at.asitplus.eidas.specific.modules.auth.eidas.v2.szr; - -import java.io.ByteArrayInputStream; -import java.io.ByteArrayOutputStream; -import java.io.IOException; -import java.net.URL; -import java.security.KeyManagementException; -import java.security.KeyStore; -import java.security.KeyStoreException; -import java.security.NoSuchAlgorithmException; -import java.security.SecureRandom; -import java.security.UnrecoverableKeyException; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.HashMap; -import java.util.List; -import java.util.Map; - -import javax.annotation.PostConstruct; -import javax.net.ssl.KeyManager; -import javax.net.ssl.KeyManagerFactory; -import javax.net.ssl.SSLContext; -import javax.net.ssl.TrustManager; -import javax.net.ssl.TrustManagerFactory; -import javax.xml.XMLConstants; -import javax.xml.bind.JAXBContext; -import javax.xml.bind.Marshaller; -import javax.xml.namespace.QName; -import javax.xml.transform.Source; -import javax.xml.transform.Transformer; -import javax.xml.transform.TransformerException; -import javax.xml.transform.TransformerFactory; -import javax.xml.transform.stream.StreamResult; -import javax.xml.transform.stream.StreamSource; -import javax.xml.ws.BindingProvider; -import javax.xml.ws.Dispatch; -import javax.xml.ws.handler.Handler; - -import org.apache.commons.lang3.StringUtils; -import org.apache.cxf.configuration.jsse.TLSClientParameters; -import org.apache.cxf.endpoint.Client; -import org.apache.cxf.frontend.ClientProxy; -import org.apache.cxf.jaxws.DispatchImpl; -import org.apache.cxf.transport.http.HTTPConduit; -import org.apache.cxf.transports.http.configuration.HTTPClientPolicy; -import org.apache.xpath.XPathAPI; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Service; -import org.w3c.dom.Document; -import org.w3c.dom.Element; - -import com.fasterxml.jackson.core.JsonProcessingException; -import com.fasterxml.jackson.databind.ObjectMapper; - -import at.asitplus.eidas.specific.modules.auth.eidas.v2.Constants; -import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.ErnbEidData; -import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.SzrCommunicationException; -import at.asitplus.eidas.specific.modules.auth.eidas.v2.utils.LoggingHandler; -import at.gv.egiz.eaaf.core.api.data.PvpAttributeDefinitions; -import at.gv.egiz.eaaf.core.api.data.XmlNamespaceConstants; -import at.gv.egiz.eaaf.core.api.idp.IConfiguration; -import at.gv.egiz.eaaf.core.impl.utils.DomUtils; -import at.gv.egiz.eaaf.core.impl.utils.FileUtils; -import at.gv.egiz.eaaf.core.impl.utils.KeyStoreUtils; -import szrservices.GetBPK; -import szrservices.GetBPKResponse; -import szrservices.GetIdentityLinkEidas; -import szrservices.GetIdentityLinkEidasResponse; -import szrservices.IdentityLinkType; -import szrservices.JwsHeaderParam; -import szrservices.ObjectFactory; -import szrservices.PersonInfoType; -import szrservices.SZR; -import szrservices.SZRException_Exception; -import szrservices.SignContent; -import szrservices.SignContentEntry; -import szrservices.SignContentResponseType; - - -@Service("SZRClientForeIDAS") -public class SzrClient { - private static final Logger log = LoggerFactory.getLogger(SzrClient.class); - - private static final String CLIENT_DEFAULT = "DefaultClient"; - private static final String CLIENT_RAW = "RawClient"; - - private static final String ATTR_NAME_VSZ = "urn:eidgvat:attributes.vsz.value"; - private static final String ATTR_NAME_PUBKEYS = "urn:eidgvat:attributes.user.pubkeys"; - private static final String ATTR_NAME_STATUS = "urn:eidgvat:attributes.eid.status"; - private static final String KEY_BC_BIND = "bcBindReq"; - private static final String JOSE_HEADER_USERCERTPINNING_TYPE = "urn:at.gv.eid:bindtype"; - private static final String JOSE_HEADER_USERCERTPINNING_EIDASBIND = "urn:at.gv.eid:eidasBind"; - public static final String ATTR_NAME_MDS = "urn:eidgvat:mds"; - - @Autowired - private IConfiguration basicConfig; - - // client for anything, without identitylink - private SZR szr = null; - - // RAW client is needed for identitylink - private Dispatch<Source> dispatch = null; - - private SzrService szrService = null; - private String szrUrl = null; - private QName qname = null; - - final ObjectMapper mapper = new ObjectMapper(); - - /** - * Get IdentityLink of a person. - * - * @param personInfo Person identification information - * @return IdentityLink - * @throws SzrCommunicationException In case of a SZR error - */ - public IdentityLinkType getIdentityLinkInRawMode(PersonInfoType personInfo) - throws SzrCommunicationException { - try { - final GetIdentityLinkEidas getIdl = new GetIdentityLinkEidas(); - getIdl.setPersonInfo(personInfo); - - final JAXBContext jaxbContext = JAXBContext.newInstance(ObjectFactory.class); - final Marshaller jaxbMarshaller = jaxbContext.createMarshaller(); - - final ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); - jaxbMarshaller.marshal(getIdl, outputStream); - outputStream.flush(); - - final Source source = new StreamSource(new ByteArrayInputStream(outputStream.toByteArray())); - outputStream.close(); - - log.trace("Requesting SZR ... "); - final Source response = dispatch.invoke(source); - log.trace("Receive RAW response from SZR"); - - final byte[] szrResponse = sourceToByteArray(response); - final GetIdentityLinkEidasResponse jaxbElement = (GetIdentityLinkEidasResponse) jaxbContext - .createUnmarshaller().unmarshal(new ByteArrayInputStream(szrResponse)); - - // build response - log.trace(new String(szrResponse, "UTF-8")); - - // ok, we have success - final Document doc = DomUtils.parseDocument( - new ByteArrayInputStream(szrResponse), - true, - XmlNamespaceConstants.ALL_SCHEMA_LOCATIONS + " " + Constants.SZR_SCHEMA_LOCATIONS, - null, null); - final String xpathExpression = "//saml:Assertion"; - final Element nsNode = doc.createElementNS("urn:oasis:names:tc:SAML:1.0:assertion", "saml:NSNode"); - - log.trace("Selecting signed doc " + xpathExpression); - final Element documentNode = (Element) XPathAPI.selectSingleNode(doc, - xpathExpression, nsNode); - log.trace("Signed document: " + DomUtils.serializeNode(documentNode)); - - final IdentityLinkType idl = new IdentityLinkType(); - idl.setAssertion(documentNode); - idl.setPersonInfo(jaxbElement.getGetIdentityLinkReturn().getPersonInfo()); - - return idl; - - } catch (final Exception e) { - log.warn("SZR communication FAILED. Reason: " + e.getMessage(), e); - throw new SzrCommunicationException("ernb.02", new Object[]{e.getMessage()}, e); - - } - - } - - /** - * Get bPK of person. - * - * @param personInfo Person identification information - * @param target requested bPK target - * @param vkz Verfahrenskennzeichen - * @return bPK for this person - * @throws SzrCommunicationException In case of a SZR error - */ - public List<String> getBpk(PersonInfoType personInfo, String target, String vkz) - throws SzrCommunicationException { - try { - final GetBPK parameters = new GetBPK(); - parameters.setPersonInfo(personInfo); - parameters.getBereichsKennung().add(target); - parameters.setVKZ(vkz); - final GetBPKResponse result = this.szr.getBPK(parameters); - - return result.getGetBPKReturn(); - - } catch (final SZRException_Exception e) { - log.warn("SZR communication FAILED. Reason: " + e.getMessage(), e); - throw new SzrCommunicationException("ernb.02", new Object[]{e.getMessage()}, e); - - } - - } - - /** - * Request a encryped baseId from SRZ. - * - * @param personInfo Minimum dataset of person - * @return encrypted baseId - * @throws SzrCommunicationException In case of a SZR error - */ - public String getEncryptedStammzahl(final PersonInfoType personInfo) - throws SzrCommunicationException { - - final String resp; - try { - resp = this.szr.getStammzahlEncrypted(personInfo, true); - } catch (SZRException_Exception e) { - throw new SzrCommunicationException("ernb.02", new Object[]{e.getMessage()}, e); - } - - if (StringUtils.isEmpty(resp)) { - throw new SzrCommunicationException("ernb.01", new Object[]{"Stammzahl response empty"}); // TODO error handling - } - - return resp; - - } - - /** - * Sign an eidasBind data-structure that combines vsz with user's pubKey and E-ID status. - * - * @param vsz encryped baseId - * @param bindingPubKey binding PublikKey as PKCS1# (ASN.1) container - * @param eidStatus Status of the E-ID - * @param eidData eID information that was used for ERnP registration - * @return bPK for this person - * @throws SzrCommunicationException In case of a SZR error - */ - public String getEidsaBind(final String vsz, final String bindingPubKey, final String eidStatus, - ErnbEidData eidData)throws SzrCommunicationException { - - final Map<String, Object> eidsaBindMap = new HashMap<>(); - eidsaBindMap.put(ATTR_NAME_VSZ, vsz); - eidsaBindMap.put(ATTR_NAME_STATUS, eidStatus); - eidsaBindMap.put(ATTR_NAME_PUBKEYS, Arrays.asList(bindingPubKey)); - eidsaBindMap.put(PvpAttributeDefinitions.EID_ISSUING_NATION_NAME, eidData.getCitizenCountryCode()); - injectMdsIfAvailableAndActive(eidsaBindMap, eidData); - - try { - final String serializedEidasBind = mapper.writeValueAsString(eidsaBindMap); - final SignContent req = new SignContent(); - final SignContentEntry eidasBindInfo = new SignContentEntry(); - eidasBindInfo.setKey(KEY_BC_BIND); - eidasBindInfo.setValue(serializedEidasBind); - req.getIn().add(eidasBindInfo); - req.setAppendCert(false); - final JwsHeaderParam eidasBindJoseHeader = new JwsHeaderParam(); - eidasBindJoseHeader.setKey(JOSE_HEADER_USERCERTPINNING_TYPE); - eidasBindJoseHeader.setValue(JOSE_HEADER_USERCERTPINNING_EIDASBIND); - req.getJWSHeaderParam().add(eidasBindJoseHeader); - - log.trace("Requesting SZR to sign bcBind datastructure ... "); - final SignContentResponseType resp = szr.signContent(req.isAppendCert(), req.getJWSHeaderParam(), req.getIn()); - log.trace("Receive SZR response on bcBind siging operation "); - - if (resp == null || resp.getOut() == null - || resp.getOut().isEmpty() - || StringUtils.isEmpty(resp.getOut().get(0).getValue())) { - throw new SzrCommunicationException("ernb.01", new Object[]{"BcBind response empty"}); - } - - return resp.getOut().get(0).getValue(); - - } catch (final JsonProcessingException | SZRException_Exception e) { - log.warn("Requesting bcBind by using SZR FAILED. Reason: {}", e.getMessage(), null, e); - throw new SzrCommunicationException("ernb.02", - new Object[]{e.getMessage()}, e); - } - } - - @PostConstruct - private void initialize() { - log.info("Starting SZR-Client initialization .... "); - final URL url = SzrClient.class.getResource("/szr_client/SZR_v4.0.wsdl"); - - final boolean useTestSzr = basicConfig.getBasicConfigurationBoolean( - Constants.CONIG_PROPS_EIDAS_SZRCLIENT_USETESTSERVICE, - true); - - if (useTestSzr) { - log.debug("Initializing SZR test environment configuration."); - qname = SzrService.SZRTestumgebung; - szrService = new SzrService(url, new QName("urn:SZRServices", "SZRService")); - szr = szrService.getSzrTestumgebung(); - szrUrl = basicConfig.getBasicConfiguration(Constants.CONIG_PROPS_EIDAS_SZRCLIENT_ENDPOINT_TEST); - - } else { - log.debug("Initializing SZR productive configuration."); - qname = SzrService.SZRProduktionsumgebung; - szrService = new SzrService(url, new QName("urn:SZRServices", "SZRService")); - szr = szrService.getSzrProduktionsumgebung(); - szrUrl = basicConfig.getBasicConfiguration(Constants.CONIG_PROPS_EIDAS_SZRCLIENT_ENDPOINT_PROD); - - } - - // create raw client; - dispatch = szrService.createDispatch(qname, Source.class, javax.xml.ws.Service.Mode.PAYLOAD); - - if (StringUtils.isEmpty(szrUrl)) { - log.error("No SZR service-URL found. SZR-Client initalisiation failed."); - throw new RuntimeException("No SZR service URL found. SZR-Client initalisiation failed."); - - } - - // check if Clients can be initialized - if (szr == null) { - log.error("SZR " + CLIENT_DEFAULT + " is 'NULL'. Something goes wrong"); - throw new RuntimeException("SZR " + CLIENT_DEFAULT + " is 'NULL'. Something goes wrong"); - - } - if (dispatch == null) { - log.error("SZR " + CLIENT_RAW + " is 'NULL'. Something goes wrong"); - throw new RuntimeException("SZR " + CLIENT_RAW + " is 'NULL'. Something goes wrong"); - - } - - // inject handler - log.info("Use SZR service-URL: " + szrUrl); - injectBindingProvider((BindingProvider) szr, CLIENT_DEFAULT); - injectBindingProvider(dispatch, CLIENT_RAW); - - // inject http parameters and SSL context - log.debug("Inject HTTP client settings ... "); - injectHttpClient(szr, CLIENT_DEFAULT); - injectHttpClient(dispatch, CLIENT_RAW); - - log.info("SZR-Client initialization successfull"); - } - - private void injectHttpClient(Object raw, String clientType) { - // extract client from implementation - Client client = null; - if (raw instanceof DispatchImpl<?>) { - client = ((DispatchImpl<?>) raw).getClient(); - } else if (raw instanceof Client) { - client = ClientProxy.getClient(raw); - } else { - throw new RuntimeException("SOAP Client for SZR connection is of UNSUPPORTED type: " + raw.getClass() - .getName()); - } - - // set basic connection policies - final HTTPConduit http = (HTTPConduit) client.getConduit(); - - // set timeout policy - final HTTPClientPolicy httpClientPolicy = new HTTPClientPolicy(); - httpClientPolicy.setConnectionTimeout( - Integer.parseInt(basicConfig.getBasicConfiguration( - Constants.CONIG_PROPS_EIDAS_SZRCLIENT_TIMEOUT_CONNECTION, - Constants.HTTP_CLIENT_DEFAULT_TIMEOUT_CONNECTION)) * 1000); - httpClientPolicy.setReceiveTimeout( - Integer.parseInt(basicConfig.getBasicConfiguration( - Constants.CONIG_PROPS_EIDAS_SZRCLIENT_TIMEOUT_RESPONSE, - Constants.HTTP_CLIENT_DEFAULT_TIMEOUT_RESPONSE)) * 1000); - http.setClient(httpClientPolicy); - - // inject SSL context in case of https - if (szrUrl.toLowerCase().startsWith("https")) { - log.debug("Adding SSLContext to client: " + clientType + " ... "); - final TLSClientParameters tlsParams = new TLSClientParameters(); - tlsParams.setSSLSocketFactory(createSslContext(clientType).getSocketFactory()); - http.setTlsClientParameters(tlsParams); - log.info("SSLContext initialized for client: " + clientType); - - } - - } - - private void injectBindingProvider(BindingProvider bindingProvider, String clientType) { - final Map<String, Object> requestContext = bindingProvider.getRequestContext(); - requestContext.put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, szrUrl); - - log.trace("Adding JAX-WS request/response trace handler to client: " + clientType); - List<Handler> handlerList = bindingProvider.getBinding().getHandlerChain(); - if (handlerList == null) { - handlerList = new ArrayList<>(); - bindingProvider.getBinding().setHandlerChain(handlerList); - - } - - // add logging handler to trace messages if required - if (basicConfig.getBasicConfigurationBoolean( - Constants.CONIG_PROPS_EIDAS_SZRCLIENT_DEBUG_TRACEMESSAGES, - false)) { - final LoggingHandler loggingHandler = new LoggingHandler(); - handlerList.add(loggingHandler); - - } - bindingProvider.getBinding().setHandlerChain(handlerList); - } - - private SSLContext createSslContext(String clientType) { - try { - final SSLContext context = SSLContext.getInstance("TLS"); - - // initialize key-mangager for SSL client-authentication - KeyManager[] keyManager = null; - final String keyStorePath = basicConfig.getBasicConfiguration( - Constants.CONIG_PROPS_EIDAS_SZRCLIENT_SSL_KEYSTORE_PATH); - final String keyStorePassword = basicConfig.getBasicConfiguration( - Constants.CONIG_PROPS_EIDAS_SZRCLIENT_SSL_KEYSTORE_PASSWORD); - if (StringUtils.isNotEmpty(keyStorePath)) { - log.trace("Find keyStore path: " + keyStorePath + " Injecting SSL client certificate ... "); - try { - final KeyStore keyStore = KeyStoreUtils.loadKeyStore( - FileUtils.makeAbsoluteUrl(keyStorePath, basicConfig.getConfigurationRootDirectory()), - keyStorePassword); - - final KeyManagerFactory kmf = KeyManagerFactory.getInstance("SunX509"); - kmf.init(keyStore, keyStorePassword.toCharArray()); - keyManager = kmf.getKeyManagers(); - log.debug("SSL client certificate injected to client: " + clientType); - - } catch (KeyStoreException | IOException | UnrecoverableKeyException e) { - log.error("Can NOT load SSL client certificate from path: " + keyStorePath); - throw new RuntimeException("Can NOT load SSL client certificate from path: " + keyStorePath, e); - - } - } else { - log.debug( - "No KeyStore for SSL Client Auth. found. Initializing SSLContext without authentication ... "); - - } - - // initialize SSL TrustStore - TrustManager[] trustManager = null; - final String trustStorePath = basicConfig.getBasicConfiguration( - Constants.CONIG_PROPS_EIDAS_SZRCLIENT_SSL_TRUSTSTORE_PATH); - final String trustStorePassword = basicConfig.getBasicConfiguration( - Constants.CONIG_PROPS_EIDAS_SZRCLIENT_SSL_TRUSTSTORE_PASSWORD); - if (StringUtils.isNotEmpty(trustStorePath)) { - log.trace("Find trustStore path: " + trustStorePath + " Injecting SSL TrustStore ... "); - try { - final KeyStore trustStore = KeyStoreUtils.loadKeyStore( - FileUtils.makeAbsoluteUrl(trustStorePath, basicConfig.getConfigurationRootDirectory()), - trustStorePassword); - - final TrustManagerFactory tmf = TrustManagerFactory.getInstance("SunX509"); - tmf.init(trustStore); - trustManager = tmf.getTrustManagers(); - log.debug("SSL TrustStore injected to client: " + clientType); - - } catch (KeyStoreException | IOException e) { - log.error("Can NOT open SSL TrustStore from path: " + trustStorePath); - throw new RuntimeException("Can NOT open SSL TrustStore from path: " + trustStorePath, e); - - } - - } else { - log.debug("No custom SSL TrustStore found. Initializing SSLContext with JVM default truststore ... "); - - } - - context.init(keyManager, trustManager, new SecureRandom()); - return context; - - } catch (NoSuchAlgorithmException | KeyManagementException e) { - log.error("SSLContext initialization FAILED.", e); - throw new RuntimeException("SSLContext initialization FAILED.", e); - - } - - } - - private void injectMdsIfAvailableAndActive(Map<String, Object> eidsaBindMap, ErnbEidData eidData) { - if (basicConfig.getBasicConfigurationBoolean( - Constants.CONIG_PROPS_EIDAS_SZRCLIENT_SET_MDS_TO_EIDASBIND, false)) { - log.info("Injecting MDS into eidasBind ... "); - final Map<String, Object> mds = new HashMap<>(); - mds.put(PvpAttributeDefinitions.PRINCIPAL_NAME_NAME, eidData.getFamilyName()); - mds.put(PvpAttributeDefinitions.GIVEN_NAME_NAME, eidData.getGivenName()); - mds.put(PvpAttributeDefinitions.BIRTHDATE_NAME, eidData.getFormatedDateOfBirth()); - eidsaBindMap.put(ATTR_NAME_MDS, mds); - - } - } - - private byte[] sourceToByteArray(Source result) throws TransformerException { - final TransformerFactory factory = TransformerFactory.newInstance(); - factory.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, true); - final Transformer transformer = factory.newTransformer(); - transformer.setOutputProperty("omit-xml-declaration", "yes"); - transformer.setOutputProperty("method", "xml"); - final ByteArrayOutputStream out = new ByteArrayOutputStream(); - final StreamResult streamResult = new StreamResult(); - streamResult.setOutputStream(out); - transformer.transform(result, streamResult); - return out.toByteArray(); - } - -} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/AlternativeSearchTask.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/AlternativeSearchTask.java new file mode 100644 index 00000000..4705c56b --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/AlternativeSearchTask.java @@ -0,0 +1,186 @@ +/* + * Copyright 2020 A-SIT Plus GmbH + * AT-specific eIDAS Connector has been developed in a cooperation between EGIZ, + * A-SIT Plus GmbH, A-SIT, and Graz University of Technology. + * + * Licensed under the EUPL, Version 1.2 or - as soon they will be approved by + * the European Commission - subsequent versions of the EUPL (the "License"); + * You may not use this work except in compliance with the License. + * You may obtain a copy of the License at: + * https://joinup.ec.europa.eu/news/understanding-eupl-v12 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This product combines work with different licenses. See the "NOTICE" text + * file for details on the various modules and licenses. + * The "NOTICE" text file is part of the distribution. Any derivative works + * that you distribute must include a readable copy of the "NOTICE" text file. + */ + +package at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks; + +import at.asitplus.eidas.specific.modules.auth.eidas.v2.Constants; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.MatchedPersonResult; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.SimpleEidasData; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.EidPostProcessingException; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.EidasAttributeException; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.WorkflowException; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.service.ICcSpecificEidProcessingService; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.service.RegisterSearchService; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.service.RegisterSearchService.RegisterOperationStatus; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.service.RegisterSearchService.RegisterStatusResults; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.utils.MatchingTaskUtils; +import at.gv.egiz.eaaf.core.api.idp.process.ExecutionContext; +import at.gv.egiz.eaaf.core.exceptions.EaafStorageException; +import at.gv.egiz.eaaf.core.exceptions.TaskExecutionException; +import at.gv.egiz.eaaf.core.impl.idp.auth.modules.AbstractAuthServletTask; +import eu.eidas.auth.commons.light.ILightResponse; +import lombok.extern.slf4j.Slf4j; +import org.jetbrains.annotations.NotNull; +import org.springframework.stereotype.Component; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import java.util.Map; +import java.util.Objects; + +import static at.asitplus.eidas.specific.modules.auth.eidas.v2.Constants.TRANSITION_TO_GENERATE_OTHER_LOGIN_METHOD_GUI_TASK; + +/** + * Searches registers (ERnP and ZMR) after alternative eIDAS authn, before adding person to SZR. + * Input: + * <ul> + * <li>{@link Constants#DATA_FULL_EIDAS_RESPONSE_ALTERNATIVE} data from the alternative eIDAS authn</li> + * <li>{@link Constants#DATA_SIMPLE_EIDAS} data from the initial eIDAS authn</li> + * </ul> + * Output: + * <ul> + * <li>{@link Constants#DATA_PERSON_MATCH_RESULT} results after second search in registers with MDS</li> + * <li>{@link Constants#DATA_RESULT_MATCHING_BPK} if one register result found</li> + * </ul> + * Transitions: + * <ul> + * <li>{@link GenerateOtherLoginMethodGuiTask} if no results in registers were found for this user</li> + * <li>{@link CreateIdentityLinkTask} if search in register returned one match, user is uniquely identified</li> + * </ul> + * + * @author amarsalek + * @author ckollmann + * @author tlenz + */ +@Slf4j +@Component("AlternativeSearchTask") +@SuppressWarnings("PMD.TooManyStaticImports") +public class AlternativeSearchTask extends AbstractAuthServletTask { + + private final RegisterSearchService registerSearchService; + private final ICcSpecificEidProcessingService eidPostProcessor; + + /** + * Constructor. + * + * @param registerSearchService Service for register search access + * @param eidPostProcessor Country-Specific post processing of attributes + */ + public AlternativeSearchTask(RegisterSearchService registerSearchService, + ICcSpecificEidProcessingService eidPostProcessor) { + this.registerSearchService = registerSearchService; + this.eidPostProcessor = eidPostProcessor; + } + + @Override + public void execute(ExecutionContext executionContext, HttpServletRequest request, HttpServletResponse response) + throws TaskExecutionException { + try { + final SimpleEidasData altEidasData = convertEidasAttrToSimpleData(); + final SimpleEidasData initialEidasData = MatchingTaskUtils.getInitialEidasData(pendingReq); + verifyAlternativeEidasData(altEidasData, initialEidasData); + step11RegisterSearchWithPersonIdentifier(executionContext, altEidasData, initialEidasData); + } catch (WorkflowException e) { + throw new TaskExecutionException(pendingReq, "Initial search failed", e); + } catch (final Exception e) { + log.error("Initial search failed", e); + throw new TaskExecutionException(pendingReq, "Initial search failed with a generic error", e); + } + } + + private void verifyAlternativeEidasData(SimpleEidasData altEidasData, SimpleEidasData initialEidasData) + throws WorkflowException { + if (initialEidasData == null) { + throw new WorkflowException("step11", "No initial eIDAS authn data"); + } + if (!Objects.equals(altEidasData.getCitizenCountryCode(), initialEidasData.getCitizenCountryCode())) { + throw new WorkflowException("step11", "Country Code of alternative eIDAS authn not matching", true); + } + if (!altEidasData.equalsMds(initialEidasData)) { + throw new WorkflowException("step11", "MDS of alternative eIDAS authn does not match initial authn", true); + } + } + + private void step11RegisterSearchWithPersonIdentifier( + ExecutionContext executionContext, SimpleEidasData initialEidasData, SimpleEidasData altEidasData) + throws WorkflowException, EaafStorageException { + try { + log.trace("Starting step11RegisterSearchWithPersonIdentifier"); + RegisterStatusResults searchResult = registerSearchService.searchWithPersonIdentifier(altEidasData); + int resultCount = searchResult.getResultCount(); + if (resultCount == 0) { + step12CountrySpecificSearch(executionContext, searchResult.getOperationStatus(), initialEidasData, + altEidasData); + } else if (resultCount == 1) { + foundMatchFinalizeTask(searchResult, altEidasData); + } else { + throw new WorkflowException("step11RegisterSearchWithPersonIdentifier", + "More than one entry with unique personal-identifier", true); + } + } catch (WorkflowException e) { + //TODO: what we do in case of a workflow error and manual matching are necessary?? + log.warn("Workflow error during matching step: {}. Reason: {}", e.getProcessStepName(), e.getErrorReason()); + throw e; + } + } + + private void step12CountrySpecificSearch(ExecutionContext executionContext, + RegisterOperationStatus registerOperationStatus, + SimpleEidasData initialEidasData, + SimpleEidasData altEidasData) + throws EaafStorageException, WorkflowException { + log.trace("Starting 'step12CountrySpecificSearch' ... "); + RegisterStatusResults searchResult = registerSearchService.searchWithCountrySpecifics( + registerOperationStatus, altEidasData); + if (searchResult.getResultCount() == 0) { + log.trace("'step12CountrySpecificSearch' ends with no result. Forward to GUI based matching step ... "); + log.debug("Forward to GUI based matching steps ... "); + executionContext.put(TRANSITION_TO_GENERATE_OTHER_LOGIN_METHOD_GUI_TASK, true); + } else if (searchResult.getResultCount() == 1) { + log.trace("'step12CountrySpecificSearch' finds a person. Forward to 'step7aKittProcess' step ... "); + registerSearchService.step7bKittProcess(searchResult, initialEidasData, altEidasData); + foundMatchFinalizeTask(searchResult, altEidasData); + } else { + throw new WorkflowException("step12CountrySpecificSearch", + "More than one entry with unique country-specific information", true); + } + } + + private void foundMatchFinalizeTask(RegisterStatusResults searchResult, SimpleEidasData eidasData) + throws WorkflowException, EaafStorageException { + MatchedPersonResult result = MatchedPersonResult.generateFormMatchingResult( + searchResult.getResult(), eidasData.getCitizenCountryCode()); + MatchingTaskUtils.storeFinalMatchingResult(pendingReq, result); + } + + @NotNull + private SimpleEidasData convertEidasAttrToSimpleData() + throws EidasAttributeException, EidPostProcessingException { + final ILightResponse eidasResponse = MatchingTaskUtils.getAuthProcessDataWrapper(pendingReq) + .getGenericDataFromSession(Constants.DATA_FULL_EIDAS_RESPONSE_ALTERNATIVE, ILightResponse.class); + Map<String, Object> simpleMap = MatchingTaskUtils.convertEidasAttrToSimpleMap( + eidasResponse.getAttributes().getAttributeMap(), log); + return eidPostProcessor.postProcess(simpleMap); + } + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/CreateIdentityLinkTask.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/CreateIdentityLinkTask.java index f4849b07..35717ae0 100644 --- a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/CreateIdentityLinkTask.java +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/CreateIdentityLinkTask.java @@ -25,44 +25,39 @@ package at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks; import java.io.IOException; import java.io.InputStream; -import java.util.HashMap; import java.util.List; -import java.util.Map; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.xml.parsers.ParserConfigurationException; -import org.apache.commons.lang3.StringUtils; -import org.joda.time.DateTime; +import org.jetbrains.annotations.Nullable; +import org.jose4j.lang.JoseException; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import org.w3c.dom.Element; import org.w3c.dom.Node; import org.xml.sax.SAXException; -import com.google.common.collect.ImmutableMap; -import com.google.common.collect.ImmutableSet; +import com.fasterxml.jackson.core.JsonProcessingException; import at.asitplus.eidas.specific.connector.MsConnectorEventCodes; import at.asitplus.eidas.specific.connector.MsEidasNodeConstants; import at.asitplus.eidas.specific.modules.auth.eidas.v2.Constants; -import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.ErnbEidData; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.clients.szr.SzrClient; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.MatchedPersonResult; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.SimpleEidasData; import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.EidasAttributeException; import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.SzrCommunicationException; import at.asitplus.eidas.specific.modules.auth.eidas.v2.service.AuthBlockSigningService; -import at.asitplus.eidas.specific.modules.auth.eidas.v2.service.ICcSpecificEidProcessingService; -import at.asitplus.eidas.specific.modules.auth.eidas.v2.szr.SzrClient; -import at.asitplus.eidas.specific.modules.auth.eidas.v2.utils.EidasResponseUtils; -import at.gv.e_government.reference.namespace.persondata._20020228.AlternativeNameType; -import at.gv.e_government.reference.namespace.persondata._20020228.PersonNameType; -import at.gv.e_government.reference.namespace.persondata._20020228.PhysicalPersonType; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.utils.MatchingTaskUtils; import at.gv.egiz.eaaf.core.api.data.EaafConstants; import at.gv.egiz.eaaf.core.api.data.PvpAttributeDefinitions; import at.gv.egiz.eaaf.core.api.idp.IConfiguration; import at.gv.egiz.eaaf.core.api.idp.auth.data.IIdentityLink; import at.gv.egiz.eaaf.core.api.idp.process.ExecutionContext; import at.gv.egiz.eaaf.core.exceptions.EaafException; +import at.gv.egiz.eaaf.core.exceptions.EaafStorageException; import at.gv.egiz.eaaf.core.exceptions.TaskExecutionException; import at.gv.egiz.eaaf.core.impl.builder.BpkBuilder; import at.gv.egiz.eaaf.core.impl.data.Pair; @@ -71,37 +66,45 @@ import at.gv.egiz.eaaf.core.impl.idp.auth.data.SimpleIdentityLinkAssertionParser import at.gv.egiz.eaaf.core.impl.idp.auth.modules.AbstractAuthServletTask; import at.gv.egiz.eaaf.core.impl.utils.DomUtils; import at.gv.egiz.eaaf.core.impl.utils.XPathUtils; -import eu.eidas.auth.commons.attribute.AttributeDefinition; -import eu.eidas.auth.commons.attribute.AttributeValue; -import eu.eidas.auth.commons.light.ILightResponse; -import eu.eidas.auth.commons.protocol.eidas.impl.PostalAddress; import lombok.Data; import lombok.extern.slf4j.Slf4j; import szrservices.IdentityLinkType; -import szrservices.PersonInfoType; -import szrservices.TravelDocumentType; /** - * Task that creates the IdentityLink for an eIDAS authenticated person. - * + * Task that creates the IdentityLink for an eIDAS authenticated person. + * Input: + * <ul> + * <li>{@link Constants#DATA_SIMPLE_EIDAS} initial login data from user</li> + * <li>{@link Constants#DATA_RESULT_MATCHING_BPK} the BPK of the matched entry in a register</li> + * </ul> + * Output: + * <ul> + * <li>{@link Constants#EIDAS_BIND} the binding block</li> + * <li>{@link Constants#SZR_AUTHBLOCK} the auth block</li> + * </ul> + * Transitions: + * <ul> + * <li>{@link at.gv.egiz.eaaf.core.impl.idp.controller.tasks.FinalizeAuthenticationTask}</li> + * </ul> + * TODO Take Constants#DATA_SIMPLE_EIDAS and Constants#DATA_RESULT_MATCHING_BPK + * TODO Only do VSZ Erstellung and eidasBind -- this is always the end of the whole process + * TODO Move Eintragung to separate Task, as it does not happen every time * @author tlenz */ @Slf4j @Component("CreateIdentityLinkTask") public class CreateIdentityLinkTask extends AbstractAuthServletTask { + @SuppressWarnings("SpringJavaInjectionPointsAutowiringInspection") @Autowired private IConfiguration basicConfig; @Autowired private SzrClient szrClient; @Autowired - private ICcSpecificEidProcessingService eidPostProcessor; - - @Autowired private AuthBlockSigningService authBlockSigner; private static final String EID_STATUS = "urn:eidgvat:eid.status.eidas"; - + /* * (non-Javadoc) * @@ -113,348 +116,269 @@ public class CreateIdentityLinkTask extends AbstractAuthServletTask { @Override public void execute(ExecutionContext executionContext, HttpServletRequest request, HttpServletResponse response) throws TaskExecutionException { - try { - final AuthProcessDataWrapper authProcessData = pendingReq.getSessionData(AuthProcessDataWrapper.class); - final ILightResponse eidasResponse = authProcessData - .getGenericDataFromSession(Constants.DATA_FULL_EIDAS_RESPONSE, ILightResponse.class); - - final Map<String, Object> simpleAttrMap = convertEidasAttrToSimpleMap( - eidasResponse.getAttributes().getAttributeMap()); - - // post-process eIDAS attributes - final ErnbEidData eidData = eidPostProcessor.postProcess(simpleAttrMap); - - // write MDS into technical log and revision log + try { + + /*TODO: needs more re-factoring if we finalize CreateNewErnpEntryTask and we know how add entries into ERnP + * Maybe, we can fully replace eidData by matchedPersonData, + * because matchedPersonData holds the result after a successful matching process. + * + * Currently, we only add a work-around to operate without new ERnP implementation. + */ + final SimpleEidasData eidData = MatchingTaskUtils.getInitialEidasData(pendingReq); + MatchedPersonResult matchedPersonData = MatchingTaskUtils.getFinalMatchingResult(pendingReq); + writeMdsLogInformation(eidData); - //build IdentityLink or VSZ and eidasBind if (basicConfig.getBasicConfigurationBoolean(Constants.CONIG_PROPS_EIDAS_SZRCLIENT_DEBUG_USEDUMMY, false)) { - SzrResultHolder idlResult = createDummyIdentityLinkForTestDeployment(eidData); - //inject personal-data into session - authProcessData.setIdentityLink(idlResult.getIdentityLink()); + buildDummyIdentityLink(eidData); - // set bPK and bPKType into auth session - authProcessData.setGenericDataToSession(PvpAttributeDefinitions.BPK_NAME, extendBpkByPrefix( - idlResult.getBpK(), pendingReq.getServiceProviderConfiguration().getAreaSpecificTargetIdentifier())); - authProcessData.setGenericDataToSession(PvpAttributeDefinitions.EID_SECTOR_FOR_IDENTIFIER_NAME, - pendingReq.getServiceProviderConfiguration() - .getAreaSpecificTargetIdentifier()); - } else { - //build SZR request from eIDAS data - final PersonInfoType personInfo = generateSzrRequest(eidData); - //request SZR based on IDL or E-ID mode if (pendingReq.getServiceProviderConfiguration() .isConfigurationValue(MsEidasNodeConstants.PROP_CONFIG_SP_NEW_EID_MODE, false)) { - - // get encrypted baseId - String vsz = szrClient.getEncryptedStammzahl(personInfo); - - //write revision-Log entry and extended infos personal-identifier mapping - revisionsLogger.logEvent(pendingReq, MsConnectorEventCodes.SZR_VSZ_RECEIVED); - writeExtendedRevisionLogEntry(simpleAttrMap, eidData); - - - // get eIDAS bind - String signedEidasBind = szrClient.getEidsaBind(vsz, - authBlockSigner.getBase64EncodedPublicKey(), - EID_STATUS, eidData); - revisionsLogger.logEvent(pendingReq, MsConnectorEventCodes.SZR_EIDASBIND_RECEIVED); - authProcessData.setGenericDataToSession(Constants.EIDAS_BIND, signedEidasBind); - - //get signed AuthBlock - String jwsSignature = authBlockSigner.buildSignedAuthBlock(pendingReq); - revisionsLogger.logEvent(pendingReq, MsConnectorEventCodes.TECH_AUCHBLOCK_CREATED); - authProcessData.setGenericDataToSession(Constants.SZR_AUTHBLOCK, jwsSignature); + executeEidMode(eidData, matchedPersonData); - //inject personal-data into session - authProcessData.setEidProcess(true); - } else { - //request SZR - SzrResultHolder idlResult = requestSzrForIdentityLink(personInfo); + executeIdlMode(eidData, matchedPersonData); - //write revision-Log entry for personal-identifier mapping - writeExtendedRevisionLogEntry(simpleAttrMap, eidData); - - //check result-data and write revision-log based on current state - checkStateAndWriteRevisionLog(idlResult); - - //inject personal-data into session - authProcessData.setIdentityLink(idlResult.getIdentityLink()); - authProcessData.setEidProcess(false); - - // set bPK and bPKType into auth session - authProcessData.setGenericDataToSession(PvpAttributeDefinitions.BPK_NAME, extendBpkByPrefix( - idlResult.getBpK(), pendingReq.getServiceProviderConfiguration().getAreaSpecificTargetIdentifier())); - authProcessData.setGenericDataToSession(PvpAttributeDefinitions.EID_SECTOR_FOR_IDENTIFIER_NAME, - pendingReq.getServiceProviderConfiguration() - .getAreaSpecificTargetIdentifier()); - - } + } } - //add generic info's into session - authProcessData.setForeigner(true); - authProcessData.setGenericDataToSession(PvpAttributeDefinitions.EID_ISSUING_NATION_NAME, EidasResponseUtils - .parseEidasPersonalIdentifier((String) simpleAttrMap.get(Constants.eIDAS_ATTR_PERSONALIDENTIFIER)) - .getFirst()); - authProcessData.setQaaLevel(eidasResponse.getLevelOfAssurance()); - - // store pending-request + storeGenericInfoToSession(eidData); requestStoreage.storePendingRequest(pendingReq); - } catch (final EidasAttributeException e) { throw new TaskExecutionException(pendingReq, "Minimum required eIDAS attributeset not found.", e); - + } catch (final EaafException e) { throw new TaskExecutionException(pendingReq, "IdentityLink generation for foreign person FAILED.", e); - + } catch (final Exception e) { log.error("IdentityLink generation for foreign person FAILED.", e); throw new TaskExecutionException(pendingReq, "IdentityLink generation for foreign person FAILED.", e); + + } + } + + private void storeGenericInfoToSession(SimpleEidasData eidData) throws EaafStorageException { + AuthProcessDataWrapper authProcessData = MatchingTaskUtils.getAuthProcessDataWrapper(pendingReq); + authProcessData.setForeigner(true); + authProcessData.setGenericDataToSession(PvpAttributeDefinitions.EID_ISSUING_NATION_NAME, + eidData.getCitizenCountryCode()); + } + + private void executeIdlMode(SimpleEidasData eidData, MatchedPersonResult matchedPersonData) throws EaafException { + //request SZR + SzrResultHolder idlResult = requestSzrForIdentityLink(eidData, matchedPersonData); + + //write revision-Log entry for personal-identifier mapping + writeExtendedRevisionLogEntry(eidData, eidData.getPersonalIdentifier()); + //check result-data and write revision-log based on current state + checkStateAndWriteRevisionLog(idlResult); + + //inject personal-data into session + AuthProcessDataWrapper authProcessDataWrapper = MatchingTaskUtils.getAuthProcessDataWrapper(pendingReq); + authProcessDataWrapper.setIdentityLink(idlResult.getIdentityLink()); + authProcessDataWrapper.setEidProcess(false); + + // set bPK and bPKType into auth session + authProcessDataWrapper.setGenericDataToSession(PvpAttributeDefinitions.BPK_NAME, extendBpkByPrefix( + idlResult.getBpK(), pendingReq.getServiceProviderConfiguration().getAreaSpecificTargetIdentifier())); + authProcessDataWrapper.setGenericDataToSession(PvpAttributeDefinitions.EID_SECTOR_FOR_IDENTIFIER_NAME, + pendingReq.getServiceProviderConfiguration() + .getAreaSpecificTargetIdentifier()); + } + private void executeEidMode(SimpleEidasData eidData, MatchedPersonResult matchedPersonData) + throws JsonProcessingException, EaafException, JoseException { + // get encrypted baseId + String vsz; + if (matchedPersonData != null) { + log.debug("Requesting encrypted baseId by already matched person information ... "); + vsz = szrClient.getEncryptedStammzahl(matchedPersonData); + + } else { + log.debug("Requesting encrypted baseId by using eIDAS information directly ... "); + vsz = szrClient.createNewErnpEntry(eidData); + } + + //write revision-Log entry and extended infos personal-identifier mapping + revisionsLogger.logEvent(pendingReq, MsConnectorEventCodes.SZR_VSZ_RECEIVED); + writeExtendedRevisionLogEntry(eidData, eidData.getPersonalIdentifier()); + + // get eIDAS bind + String signedEidasBind = szrClient + .getEidasBind(vsz, authBlockSigner.getBase64EncodedPublicKey(), EID_STATUS, eidData); + revisionsLogger.logEvent(pendingReq, MsConnectorEventCodes.SZR_EIDASBIND_RECEIVED); + AuthProcessDataWrapper authProcessDataWrapper = MatchingTaskUtils.getAuthProcessDataWrapper(pendingReq); + authProcessDataWrapper.setGenericDataToSession(Constants.EIDAS_BIND, signedEidasBind); + + //get signed AuthBlock + String jwsSignature = authBlockSigner.buildSignedAuthBlock(pendingReq); + revisionsLogger.logEvent(pendingReq, MsConnectorEventCodes.TECH_AUCHBLOCK_CREATED); + authProcessDataWrapper.setGenericDataToSession(Constants.SZR_AUTHBLOCK, jwsSignature); + + //inject personal-data into session + authProcessDataWrapper.setEidProcess(true); + + } + + private void buildDummyIdentityLink(SimpleEidasData eidData) + throws ParserConfigurationException, SAXException, IOException, EaafException { + AuthProcessDataWrapper authProcessDataWrapper = MatchingTaskUtils.getAuthProcessDataWrapper(pendingReq); + SzrResultHolder idlResult = createDummyIdentityLinkForTestDeployment(eidData); + //inject personal-data into session + authProcessDataWrapper.setIdentityLink(idlResult.getIdentityLink()); + + // set bPK and bPKType into auth session + authProcessDataWrapper.setGenericDataToSession(PvpAttributeDefinitions.BPK_NAME, extendBpkByPrefix( + idlResult.getBpK(), pendingReq.getServiceProviderConfiguration().getAreaSpecificTargetIdentifier())); + authProcessDataWrapper.setGenericDataToSession(PvpAttributeDefinitions.EID_SECTOR_FOR_IDENTIFIER_NAME, + pendingReq.getServiceProviderConfiguration() + .getAreaSpecificTargetIdentifier()); } - private void writeExtendedRevisionLogEntry(Map<String, Object> simpleAttrMap, ErnbEidData eidData) { - // write ERnB input-data into revision-log + private void writeExtendedRevisionLogEntry(SimpleEidasData eidData, String personalIdentifier) { + // write ERnP input-data into revision-log if (basicConfig.getBasicConfigurationBoolean( Constants.CONIG_PROPS_EIDAS_SZRCLIENT_WORKAROUND_REVISIONLOGDATASTORE_ACTIVE, false)) { - revisionsLogger.logEvent(pendingReq, MsConnectorEventCodes.SZR_ERNB_EIDAS_RAW_ID, - (String) simpleAttrMap.get(Constants.eIDAS_ATTR_PERSONALIDENTIFIER)); + revisionsLogger.logEvent(pendingReq, MsConnectorEventCodes.SZR_ERNB_EIDAS_RAW_ID, personalIdentifier); revisionsLogger.logEvent(pendingReq, MsConnectorEventCodes.SZR_ERNB_EIDAS_ERNB_ID, eidData.getPseudonym()); } } - - private PersonInfoType generateSzrRequest(ErnbEidData eidData) { - log.debug("Starting connecting SZR Gateway"); - final PersonInfoType personInfo = new PersonInfoType(); - final PersonNameType personName = new PersonNameType(); - final PhysicalPersonType naturalPerson = new PhysicalPersonType(); - final TravelDocumentType eDocument = new TravelDocumentType(); - - naturalPerson.setName(personName); - personInfo.setPerson(naturalPerson); - personInfo.setTravelDocument(eDocument); - - // person information - personName.setFamilyName(eidData.getFamilyName()); - personName.setGivenName(eidData.getGivenName()); - naturalPerson.setDateOfBirth(eidData.getFormatedDateOfBirth()); - eDocument.setIssuingCountry(eidData.getCitizenCountryCode()); - eDocument.setDocumentNumber(eidData.getPseudonym()); - - // eID document information - eDocument.setDocumentType(basicConfig - .getBasicConfiguration(Constants.CONIG_PROPS_EIDAS_SZRCLIENT_PARAMS_EDOCUMENTTYPE, - Constants.SZR_CONSTANTS_DEFAULT_DOCUMENT_TYPE)); - - // set PlaceOfBirth if available - if (eidData.getPlaceOfBirth() != null) { - log.trace("Find 'PlaceOfBirth' attribute: " + eidData.getPlaceOfBirth()); - if (basicConfig - .getBasicConfigurationBoolean(Constants.CONIG_PROPS_EIDAS_SZRCLIENT_PARAMS_SETPLACEOFBIRTHIFAVAILABLE, - true)) { - naturalPerson.setPlaceOfBirth(eidData.getPlaceOfBirth()); - log.trace("Adding 'PlaceOfBirth' to ERnB request ... "); - - } - } - // set BirthName if available - if (eidData.getBirthName() != null) { - log.trace("Find 'BirthName' attribute: " + eidData.getBirthName()); - if (basicConfig - .getBasicConfigurationBoolean(Constants.CONIG_PROPS_EIDAS_SZRCLIENT_PARAMS_SETBIRTHNAMEIFAVAILABLE, - true)) { - final AlternativeNameType alternativeName = new AlternativeNameType(); - naturalPerson.setAlternativeName(alternativeName); - alternativeName.setFamilyName(eidData.getBirthName()); - log.trace("Adding 'BirthName' to ERnB request ... "); + private SzrResultHolder requestSzrForIdentityLink(SimpleEidasData eidData, + MatchedPersonResult matchedPersonData) throws EaafException { + //request IdentityLink from SZR + IdentityLinkType result; - } + if (matchedPersonData != null) { + log.debug("Requesting encrypted baseId by already matched person information ... "); + result = szrClient.getIdentityLinkInRawMode(matchedPersonData); + + } else { + log.debug("Requesting encrypted baseId by using eIDAS information directly ... "); + result = szrClient.getIdentityLinkInRawMode(eidData); + } - return personInfo; - - } - - private SzrResultHolder requestSzrForIdentityLink(PersonInfoType personInfo) - throws SzrCommunicationException, EaafException { - //request IdentityLink from SZR - final IdentityLinkType result = szrClient.getIdentityLinkInRawMode(personInfo); final Element idlFromSzr = (Element) result.getAssertion(); - IIdentityLink identityLink = new SimpleIdentityLinkAssertionParser(idlFromSzr).parseIdentityLink(); + final IIdentityLink identityLink = new SimpleIdentityLinkAssertionParser(idlFromSzr).parseIdentityLink(); // get bPK from SZR String bpk = null; - if (basicConfig - .getBasicConfigurationBoolean(Constants.CONIG_PROPS_EIDAS_SZRCLIENT_DEBUG_USESRZFORBPKGENERATION, true)) { - List<String> bpkList = szrClient - .getBpk(personInfo, pendingReq.getServiceProviderConfiguration().getAreaSpecificTargetIdentifier(), - basicConfig - .getBasicConfiguration(Constants.CONIG_PROPS_EIDAS_SZRCLIENT_PARAMS_VKZ, "no VKZ defined")); + String targetId = pendingReq.getServiceProviderConfiguration().getAreaSpecificTargetIdentifier(); + boolean debugUseSzrForBpk = basicConfig + .getBasicConfigurationBoolean(Constants.CONIG_PROPS_EIDAS_SZRCLIENT_DEBUG_USESRZFORBPKGENERATION, true); + if (debugUseSzrForBpk) { + String vkz = basicConfig + .getBasicConfiguration(Constants.CONIG_PROPS_EIDAS_SZRCLIENT_PARAMS_VKZ, "no VKZ defined"); + List<String> bpkList = szrClient.getBpk(eidData, targetId, vkz); if (!bpkList.isEmpty()) { bpk = bpkList.get(0); - } - - } else { log.debug("Calculating bPK from baseId ... "); - new BpkBuilder(); - final Pair<String, String> bpkCalc = BpkBuilder - .generateAreaSpecificPersonIdentifier(identityLink.getIdentificationValue(), - identityLink.getIdentificationType(), - pendingReq.getServiceProviderConfiguration() - .getAreaSpecificTargetIdentifier()); + String idValue = identityLink.getIdentificationValue(); + String idType = identityLink.getIdentificationType(); + final Pair<String, String> bpkCalc = BpkBuilder.generateAreaSpecificPersonIdentifier(idValue, idType, targetId); bpk = bpkCalc.getFirst(); - } - + return new SzrResultHolder(identityLink, bpk); - } - + private void checkStateAndWriteRevisionLog(SzrResultHolder idlResult) throws SzrCommunicationException { // write some infos into revision log if (idlResult.getIdentityLink() == null) { log.error("ERnB did not return an identity link."); throw new SzrCommunicationException("ernb.00", null); - } - revisionsLogger.logEvent(pendingReq, - MsConnectorEventCodes.SZR_IDL_RECEIVED, - idlResult.getIdentityLink().getSamlAssertion() - .getAttribute(SimpleIdentityLinkAssertionParser.ASSERTIONID)); + + String assertionId = idlResult.getIdentityLink().getSamlAssertion() + .getAttribute(SimpleIdentityLinkAssertionParser.ASSERTIONID); + revisionsLogger.logEvent(pendingReq, MsConnectorEventCodes.SZR_IDL_RECEIVED, assertionId); if (idlResult.getBpK() == null) { log.error("ERnB did not return a bPK for target: " + pendingReq.getServiceProviderConfiguration() - .getAreaSpecificTargetIdentifier()); + .getAreaSpecificTargetIdentifier()); throw new SzrCommunicationException("ernb.01", null); - } + revisionsLogger.logEvent(pendingReq, MsConnectorEventCodes.SZR_BPK_RECEIVED); log.debug("ERnB communication was successfull"); - } - - private String extendBpkByPrefix(String bpk, String type) { - String bpkType = null; - - if (type.startsWith(EaafConstants.URN_PREFIX_WBPK)) { - bpkType = type.substring(EaafConstants.URN_PREFIX_WBPK.length()); - } else if (type.startsWith(EaafConstants.URN_PREFIX_CDID)) { - bpkType = type.substring(EaafConstants.URN_PREFIX_CDID.length()); - } else if (type.startsWith(EaafConstants.URN_PREFIX_EIDAS)) { - bpkType = type.substring(EaafConstants.URN_PREFIX_EIDAS.length()); - } + private String extendBpkByPrefix(String bpk, String type) { + String bpkType = getBpkType(type); if (bpkType != null) { log.trace("Authenticate user with bPK/wbPK " + bpk + " and Type=" + bpkType); return bpkType + ":" + bpk; - } else { log.warn("Service Provider Target with: " + type + " is NOT supported. Set bPK as it is ..."); return bpk; - } - } - private Map<String, Object> convertEidasAttrToSimpleMap( - ImmutableMap<AttributeDefinition<?>, ImmutableSet<? extends AttributeValue<?>>> attributeMap) { - final Map<String, Object> result = new HashMap<>(); - - for (final AttributeDefinition<?> el : attributeMap.keySet()) { - - final Class<?> parameterizedType = el.getParameterizedType(); - if (DateTime.class.equals(parameterizedType)) { - final DateTime attribute = EidasResponseUtils.translateDateAttribute(el, attributeMap.get(el).asList()); - if (attribute != null) { - result.put(el.getFriendlyName(), attribute); - log.trace("Find attr '" + el.getFriendlyName() + "' with value: " + attribute.toString()); - - } else { - log.info("Ignore empty 'DateTime' attribute"); - } - - } else if (PostalAddress.class.equals(parameterizedType)) { - final PostalAddress addressAttribute = EidasResponseUtils - .translateAddressAttribute(el, attributeMap.get(el).asList()); - if (addressAttribute != null) { - result.put(el.getFriendlyName(), addressAttribute); - log.trace("Find attr '" + el.getFriendlyName() + "' with value: " + addressAttribute.toString()); - - } else { - log.info("Ignore empty 'PostalAddress' attribute"); - } - - } else { - final List<String> natPersonIdObj = EidasResponseUtils - .translateStringListAttribute(el, attributeMap.get(el)); - final String stringAttr = natPersonIdObj.get(0); - if (StringUtils.isNotEmpty(stringAttr)) { - result.put(el.getFriendlyName(), stringAttr); - log.trace("Find attr '" + el.getFriendlyName() + "' with value: " + stringAttr); - - } else { - log.info("Ignore empty 'String' attribute"); - } - - } + @Nullable + private String getBpkType(String type) { + if (type.startsWith(EaafConstants.URN_PREFIX_WBPK)) { + return type.substring(EaafConstants.URN_PREFIX_WBPK.length()); + } else if (type.startsWith(EaafConstants.URN_PREFIX_CDID)) { + return type.substring(EaafConstants.URN_PREFIX_CDID.length()); + } else if (type.startsWith(EaafConstants.URN_PREFIX_EIDAS)) { + return type.substring(EaafConstants.URN_PREFIX_EIDAS.length()); + } else { + return null; } - - log.debug("Receive #" + result.size() + " attributes with names: " + result.keySet().toString()); - - return result; } - private void writeMdsLogInformation(ErnbEidData eidData) { - // log MDS and country code into technical log - if (basicConfig - .getBasicConfigurationBoolean(MsEidasNodeConstants.PROP_CONFIG_TECHNICALLOG_WRITE_MDS_INTO_TECH_LOG, false)) { + + /** + * write MDS into technical log and revision log. + */ + private void writeMdsLogInformation(SimpleEidasData eidData) { + boolean writeMdsInTechLog = basicConfig + .getBasicConfigurationBoolean(MsEidasNodeConstants.PROP_CONFIG_TECHNICALLOG_WRITE_MDS_INTO_TECH_LOG, false); + if (writeMdsInTechLog) { log.info("eIDAS Auth. for user: " + eidData.getGivenName() + " " + eidData.getFamilyName() + " " + eidData - .getFormatedDateOfBirth() + " " + "from " + eidData.getCitizenCountryCode()); + .getDateOfBirth() + " " + "from " + eidData.getCitizenCountryCode()); } - // log MDS and country code into revision log - if (basicConfig + boolean writeMdsInRevLog = basicConfig .getBasicConfigurationBoolean(MsEidasNodeConstants.PROP_CONFIG_REVISIONLOG_WRITE_MDS_INTO_REVISION_LOG, - false)) { + false); + if (writeMdsInRevLog) { revisionsLogger.logEvent(pendingReq, MsConnectorEventCodes.RESPONSE_FROM_EIDAS_MDSDATA, - "{" + eidData.getGivenName() + "," + eidData.getFamilyName() + "," + eidData - .getFormatedDateOfBirth() + "," + eidData.getCitizenCountryCode() + "}"); + "{" + eidData.getGivenName() + "," + eidData.getFamilyName() + "," + eidData + .getDateOfBirth() + "," + eidData.getCitizenCountryCode() + "}"); } - } - + @Data - private static class SzrResultHolder { + private static class SzrResultHolder { final IIdentityLink identityLink; final String bpK; - + } - + /** * Build a dummy IdentityLink and a dummy bPK based on eIDAS information. - * + * * <br><br> * <b>FOR LOCAL TESTING ONLY!!!</b> - * + * * @param eidData Information from eIDAS response * @return IdentityLink and bPK * @throws ParserConfigurationException In case of an IDL processing error - * @throws SAXException In case of an IDL processing error - * @throws IOException In case of an IDL processing error - * @throws EaafException In case of a bPK generation error + * @throws SAXException In case of an IDL processing error + * @throws IOException In case of an IDL processing error + * @throws EaafException In case of a bPK generation error */ - private SzrResultHolder createDummyIdentityLinkForTestDeployment(ErnbEidData eidData) + private SzrResultHolder createDummyIdentityLinkForTestDeployment(SimpleEidasData eidData) throws ParserConfigurationException, SAXException, IOException, EaafException { log.warn("SZR-Dummy IS ACTIVE! IdentityLink is NOT VALID!!!!"); // create fake IdL @@ -487,17 +411,16 @@ public class CreateIdentityLinkTask extends AbstractAuthServletTask { final Node prDateOfBirth = XPathUtils .selectSingleNode(idlassertion, SimpleIdentityLinkAssertionParser.PERSON_DATE_OF_BIRTH_XPATH); - prDateOfBirth.getFirstChild().setNodeValue(eidData.getFormatedDateOfBirth()); + prDateOfBirth.getFirstChild().setNodeValue(eidData.getDateOfBirth()); identityLink = new SimpleIdentityLinkAssertionParser(idlassertion).parseIdentityLink(); - final Pair<String, String> bpkCalc = BpkBuilder - .generateAreaSpecificPersonIdentifier(identityLink.getIdentificationValue(), - identityLink.getIdentificationType(), - pendingReq.getServiceProviderConfiguration() - .getAreaSpecificTargetIdentifier()); + String idValue = identityLink.getIdentificationValue(); + String idType = identityLink.getIdentificationType(); + String targetId = pendingReq.getServiceProviderConfiguration().getAreaSpecificTargetIdentifier(); + final Pair<String, String> bpkCalc = BpkBuilder.generateAreaSpecificPersonIdentifier(idValue, idType, targetId); return new SzrResultHolder(identityLink, bpkCalc.getFirst()); - + } } diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/CreateNewErnpEntryTask.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/CreateNewErnpEntryTask.java new file mode 100644 index 00000000..6fc6d499 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/CreateNewErnpEntryTask.java @@ -0,0 +1,93 @@ +/* + * Copyright 2021 A-SIT Plus GmbH + * AT-specific eIDAS Connector has been developed in a cooperation between EGIZ, + * A-SIT Plus GmbH, A-SIT, and Graz University of Technology. + * + * Licensed under the EUPL, Version 1.2 or - as soon they will be approved by + * the European Commission - subsequent versions of the EUPL (the "License"); + * You may not use this work except in compliance with the License. + * You may obtain a copy of the License at: + * https://joinup.ec.europa.eu/news/understanding-eupl-v12 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This product combines work with different licenses. See the "NOTICE" text + * file for details on the various modules and licenses. + * The "NOTICE" text file is part of the distribution. Any derivative works + * that you distribute must include a readable copy of the "NOTICE" text file. + */ + +package at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.springframework.stereotype.Component; + +import at.asitplus.eidas.specific.modules.auth.eidas.v2.Constants; +import at.gv.egiz.eaaf.core.api.idp.process.ExecutionContext; +import at.gv.egiz.eaaf.core.exceptions.TaskExecutionException; +import at.gv.egiz.eaaf.core.impl.idp.auth.modules.AbstractAuthServletTask; +import lombok.extern.slf4j.Slf4j; + +/** + * Task that searches ERnP and ZMR before adding person to SZR. + * This corresponds to Step 9 in the eIDAS Matching Concept. + * Input: + * <ul> + * <li>{@link Constants#DATA_SIMPLE_EIDAS}</li> + * </ul> + * Output: + * <ul> + * <li>TODO MDS, BPK of new entry</li> + * </ul> + * + * @author amarsalek + * @author ckollmann + */ +@Slf4j +@Component("CreateNewErnbEntryTask") +public class CreateNewErnpEntryTask extends AbstractAuthServletTask { + + //private final SzrClient szrClient; + + ///** + // * Constructor. + // * @param szrClient SZR client for creating a new ERnP entry + // */ + //public CreateNewErnpEntryTask(SzrClient szrClient) { + // this.szrClient = szrClient; + //} + + @Override + public void execute(ExecutionContext executionContext, HttpServletRequest request, HttpServletResponse response) + throws TaskExecutionException { + try { + //SimpleEidasData simpleEidasData = MatchingTaskUtils.getInitialEidasData(pendingReq); + + // insert person into ERnP + //TODO: should we insert it directly into ERnP? + //TODO: has to updated to new eIDAS document model in ERnP + //String vsz = szrClient.createNewErnpEntry(simpleEidasData); + + // finish matching process, because new user-entry uniquly matches + //log.info("User successfully registerred into ERnP and matching tasks are finished "); + //MatchingTaskUtils.storeFinalMatchingResult(pendingReq, + // MatchedPersonResult.builder() + // .vsz(vsz) + // .build()); + + log.warn("Skipping new insert ERnP task, because it's currently unknown who we should it"); + + + } catch (final Exception e) { + log.error("Initial search FAILED.", e); + throw new TaskExecutionException(pendingReq, "Initial search FAILED.", e); + } + } + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/GenerateAustrianResidenceGuiTask.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/GenerateAustrianResidenceGuiTask.java new file mode 100644 index 00000000..d8266398 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/GenerateAustrianResidenceGuiTask.java @@ -0,0 +1,76 @@ +/* + * Copyright 2021 A-SIT Plus GmbH + * AT-specific eIDAS Connector has been developed in a cooperation between EGIZ, + * A-SIT Plus GmbH, A-SIT, and Graz University of Technology. + * + * Licensed under the EUPL, Version 1.2 or - as soon they will be approved by + * the European Commission - subsequent versions of the EUPL (the "License"); + * You may not use this work except in compliance with the License. + * You may obtain a copy of the License at: + * https://joinup.ec.europa.eu/news/understanding-eupl-v12 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This product combines work with different licenses. See the "NOTICE" text + * file for details on the various modules and licenses. + * The "NOTICE" text file is part of the distribution. Any derivative works + * that you distribute must include a readable copy of the "NOTICE" text file. + */ + +package at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks; + +import at.asitplus.eidas.specific.connector.MsEidasNodeConstants; +import at.asitplus.eidas.specific.connector.gui.StaticGuiBuilderConfiguration; +import at.gv.egiz.eaaf.core.api.gui.IGuiBuilderConfiguration; +import at.gv.egiz.eaaf.core.api.gui.ISpringMvcGuiFormBuilder; +import at.gv.egiz.eaaf.core.api.idp.IConfiguration; +import at.gv.egiz.eaaf.core.api.idp.process.ExecutionContext; +import at.gv.egiz.eaaf.core.exceptions.TaskExecutionException; +import at.gv.egiz.eaaf.core.impl.idp.auth.modules.AbstractAuthServletTask; +import lombok.extern.slf4j.Slf4j; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +/** + * Show GUI where user can provide an Austrian residence address, to provide further input to match the identity. + * + * @author ckollmann + */ +@Slf4j +@Component("GenerateAustrianResidenceGuiTask") +public class GenerateAustrianResidenceGuiTask extends AbstractAuthServletTask { + + @Autowired + private ISpringMvcGuiFormBuilder guiBuilder; + @Autowired + private IConfiguration basicConfig; + + @Override + public void execute(ExecutionContext executionContext, HttpServletRequest request, HttpServletResponse response) + throws TaskExecutionException { + try { + final IGuiBuilderConfiguration config = new StaticGuiBuilderConfiguration( + basicConfig, + pendingReq, + basicConfig.getBasicConfiguration(//TODO + MsEidasNodeConstants.PROP_CONFIG_WEBCONTENT_TEMPLATES_RESIDENCY, + MsEidasNodeConstants.TEMPLATE_HTML_RESIDENCY), + MsEidasNodeConstants.ENDPOINT_RESIDENCY_INPUT, + resourceLoader); + + guiBuilder.build(request, response, config, "Query Austrian residency"); + + } catch (final Exception e) { + log.error("Initial search FAILED.", e); + throw new TaskExecutionException(pendingReq, "Gui creation FAILED.", e); + } + } + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/GenerateAuthnRequestTask.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/GenerateAuthnRequestTask.java index 9900fa98..74525e65 100644 --- a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/GenerateAuthnRequestTask.java +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/GenerateAuthnRequestTask.java @@ -19,10 +19,11 @@ * file for details on the various modules and licenses. * The "NOTICE" text file is part of the distribution. Any derivative works * that you distribute must include a readable copy of the "NOTICE" text file. -*/ + */ package at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks; +import java.io.IOException; import java.util.UUID; import javax.servlet.ServletException; @@ -30,6 +31,7 @@ import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.commons.lang3.StringUtils; +import org.jetbrains.annotations.NotNull; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.ApplicationContext; import org.springframework.stereotype.Component; @@ -39,6 +41,7 @@ import at.asitplus.eidas.specific.connector.MsConnectorEventCodes; import at.asitplus.eidas.specific.connector.MsEidasNodeConstants; import at.asitplus.eidas.specific.connector.gui.StaticGuiBuilderConfiguration; import at.asitplus.eidas.specific.modules.auth.eidas.v2.Constants; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.EidPostProcessingException; import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.EidasSAuthenticationException; import at.asitplus.eidas.specific.modules.auth.eidas.v2.service.ICcSpecificEidProcessingService; import at.gv.egiz.eaaf.core.api.gui.ISpringMvcGuiFormBuilder; @@ -46,6 +49,8 @@ import at.gv.egiz.eaaf.core.api.idp.IConfiguration; import at.gv.egiz.eaaf.core.api.idp.process.ExecutionContext; import at.gv.egiz.eaaf.core.api.storage.ITransactionStorage; import at.gv.egiz.eaaf.core.exceptions.EaafConfigurationException; +import at.gv.egiz.eaaf.core.exceptions.EaafException; +import at.gv.egiz.eaaf.core.exceptions.GuiBuildException; import at.gv.egiz.eaaf.core.exceptions.TaskExecutionException; import at.gv.egiz.eaaf.core.impl.idp.auth.modules.AbstractAuthServletTask; import eu.eidas.auth.commons.EidasParameterKeys; @@ -58,146 +63,163 @@ import eu.eidas.specificcommunication.exception.SpecificCommunicationException; import eu.eidas.specificcommunication.protocol.SpecificCommunicationService; import lombok.extern.slf4j.Slf4j; + /** - * Authentication-process task that generates the Authn. Request to eIDAS Node. - * - * @author tlenz + * Generates the authn request to the eIDAS Node. This is the first task in the process. + * Input: + * <ul> + * <li>none</li> + * </ul> + * Output: + * <ul> + * <li>none</li> + * </ul> + * Transitions: + * <ul> + * <li>{@link at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks.ReceiveAuthnResponseTask} + * to read the response from the eIDAS Node</li> + * </ul> * + * @author tlenz + * @author ckollmann */ @Slf4j -@Component("ConnecteIDASNodeTask") +@Component("GenerateAuthnRequestTask") public class GenerateAuthnRequestTask extends AbstractAuthServletTask { + @SuppressWarnings("SpringJavaInjectionPointsAutowiringInspection") @Autowired IConfiguration basicConfig; + @Autowired ApplicationContext context; + + @SuppressWarnings("SpringJavaInjectionPointsAutowiringInspection") @Autowired ITransactionStorage transactionStore; + + @SuppressWarnings("SpringJavaInjectionPointsAutowiringInspection") @Autowired ISpringMvcGuiFormBuilder guiBuilder; + @Autowired ICcSpecificEidProcessingService ccSpecificProcessing; @Override - public void execute(ExecutionContext executionContext, - HttpServletRequest request, HttpServletResponse response) + public void execute(ExecutionContext executionContext, HttpServletRequest request, HttpServletResponse response) throws TaskExecutionException { - try { - // get target, environment and validate citizen countryCode - final String citizenCountryCode = (String) executionContext.get( - MsEidasNodeConstants.REQ_PARAM_SELECTED_COUNTRY); - final String environment = (String) executionContext.get( - MsEidasNodeConstants.REQ_PARAM_SELECTED_ENVIRONMENT); - - if (StringUtils.isEmpty(citizenCountryCode)) { - // illegal state; task should not have been executed without a selected country - throw new EidasSAuthenticationException("eidas.03", new Object[] { "" }); - - } - - // TODO: maybe add countryCode validation before request ref. impl. eIDAS node - log.info("Request eIDAS auth. for citizen of country: " + citizenCountryCode); - revisionsLogger.logEvent(pendingReq, MsConnectorEventCodes.COUNTRY_SELECTED, citizenCountryCode); - - // build eIDAS AuthnRequest - final LightRequest.Builder authnRequestBuilder = LightRequest.builder(); - authnRequestBuilder.id(UUID.randomUUID().toString()); - - // set nameIDFormat - authnRequestBuilder.nameIdFormat( - authConfig.getBasicConfiguration(Constants.CONFIG_PROP_EIDAS_NODE_NAMEIDFORMAT)); - - // set citizen country code for foreign uses - authnRequestBuilder.citizenCountryCode(citizenCountryCode); - - //set Issuer - final String issur = basicConfig.getBasicConfiguration(Constants.CONIG_PROPS_EIDAS_NODE_ENTITYID); - if (StringUtils.isEmpty(issur)) { - log.error("Found NO 'eIDAS node issuer' in configuration. Authentication NOT possible!"); - throw new EaafConfigurationException("config.27", - new Object[] { "Application config containts NO " + Constants.CONIG_PROPS_EIDAS_NODE_ENTITYID }); - - } - authnRequestBuilder.issuer(issur); - + final String citizenCountryCode = extractCitizenCountryCode(executionContext); + final String environment = (String) executionContext.get(MsEidasNodeConstants.REQ_PARAM_SELECTED_ENVIRONMENT); + final String issuer = loadIssuerFromConfig(); + final LightRequest lightAuthnReq = buildEidasAuthnRequest(citizenCountryCode, issuer); - // Add country-specific informations into eIDAS request - ccSpecificProcessing.preProcess(citizenCountryCode, pendingReq, authnRequestBuilder); - - // build request - final LightRequest lightAuthnReq = authnRequestBuilder.build(); - - // put request into Hazelcast cache final BinaryLightToken token = putRequestInCommunicationCache(lightAuthnReq); final String tokenBase64 = BinaryLightTokenHelper.encodeBinaryLightTokenBase64(token); - - // Workaround, because eIDAS node ref. impl. does not return relayState - if (basicConfig.getBasicConfigurationBoolean( - Constants.CONIG_PROPS_EIDAS_NODE_WORKAROUND_USEREQUESTIDASTRANSACTIONIDENTIFIER, - false)) { - log.trace("Put lightRequestId into transactionstore as session-handling backup"); - transactionStore.put(lightAuthnReq.getId(), pendingReq.getPendingRequestId(), -1); - - } - - // select forward URL regarding the selected environment - String forwardUrl = basicConfig.getBasicConfiguration(Constants.CONIG_PROPS_EIDAS_NODE_FORWARD_URL); - if (StringUtils.isNotEmpty(environment)) { - forwardUrl = selectedForwardUrlForEnvironment(environment); - } - - if (StringUtils.isEmpty(forwardUrl)) { - log.warn("NO ForwardURL defined in configuration. Can NOT forward to eIDAS node! Process stops"); - throw new EaafConfigurationException("config.08", new Object[] { - environment == null ? Constants.CONIG_PROPS_EIDAS_NODE_FORWARD_URL - : Constants.CONIG_PROPS_EIDAS_NODE_FORWARD_URL + "." + environment - }); - - } - log.debug("ForwardURL: " + forwardUrl + " selected to forward eIDAS request"); - - if (basicConfig.getBasicConfiguration( - Constants.CONIG_PROPS_EIDAS_NODE_FORWARD_METHOD, - Constants.FORWARD_METHOD_GET).equals(Constants.FORWARD_METHOD_GET)) { - - log.debug("Use http-redirect for eIDAS node forwarding ... "); - // send redirect - final UriComponentsBuilder redirectUrl = UriComponentsBuilder.fromHttpUrl(forwardUrl); - redirectUrl.queryParam(EidasParameterKeys.TOKEN.toString(), tokenBase64); - response.sendRedirect(redirectUrl.build().encode().toString()); - + workaroundRelayState(lightAuthnReq); + final String forwardUrl = selectForwardUrl(environment); + + String configValue = basicConfig.getBasicConfiguration( + Constants.CONIG_PROPS_EIDAS_NODE_FORWARD_METHOD, Constants.FORWARD_METHOD_GET); + boolean useHttpRedirect = configValue.equals(Constants.FORWARD_METHOD_GET); + if (useHttpRedirect) { + sendRedirect(response, tokenBase64, forwardUrl); } else { - log.debug("Use http-post for eIDAS node forwarding ... "); - final StaticGuiBuilderConfiguration config = new StaticGuiBuilderConfiguration( - basicConfig, - pendingReq, - Constants.TEMPLATE_POST_FORWARD_NAME, - null, - resourceLoader); - - config.putCustomParameter(null, Constants.TEMPLATE_POST_FORWARD_ENDPOINT, forwardUrl); - config.putCustomParameter(null, Constants.TEMPLATE_POST_FORWARD_TOKEN_NAME, - EidasParameterKeys.TOKEN.toString()); - config.putCustomParameter(null, Constants.TEMPLATE_POST_FORWARD_TOKEN_VALUE, - tokenBase64); - - guiBuilder.build(request, response, config, "Forward to eIDASNode form"); - + sendPost(request, response, tokenBase64, forwardUrl); } revisionsLogger.logEvent(pendingReq, MsConnectorEventCodes.EIDAS_NODE_CONNECTED, lightAuthnReq.getId()); - } catch (final EidasSAuthenticationException e) { throw new TaskExecutionException(pendingReq, "eIDAS AuthnRequest generation FAILED.", e); - } catch (final Exception e) { log.warn("eIDAS AuthnRequest generation FAILED.", e); throw new TaskExecutionException(pendingReq, e.getMessage(), e); + } + } + + @NotNull + private String extractCitizenCountryCode(ExecutionContext executionContext) throws EidasSAuthenticationException { + final String result = (String) executionContext.get(MsEidasNodeConstants.REQ_PARAM_SELECTED_COUNTRY); + // illegal state; task should not have been executed without a selected country + if (StringUtils.isEmpty(result)) { + throw new EidasSAuthenticationException("eidas.03", new Object[]{""}); + } + // TODO: maybe add countryCode validation before request ref. impl. eIDAS node + log.info("Request eIDAS auth. for citizen of country: {}", result); + revisionsLogger.logEvent(pendingReq, MsConnectorEventCodes.COUNTRY_SELECTED, result); + return result; + } + + @NotNull + private String loadIssuerFromConfig() throws EaafConfigurationException { + final String result = basicConfig.getBasicConfiguration(Constants.CONIG_PROPS_EIDAS_NODE_ENTITYID); + if (StringUtils.isEmpty(result)) { + log.error("Found NO 'eIDAS node issuer' in configuration. Authentication NOT possible!"); + throw new EaafConfigurationException("config.27", + new Object[]{"Application config containts NO " + Constants.CONIG_PROPS_EIDAS_NODE_ENTITYID}); + } + return result; + } + @NotNull + private LightRequest buildEidasAuthnRequest(String citizenCountryCode, String issuer) + throws EidPostProcessingException { + final LightRequest.Builder builder = LightRequest.builder(); + builder.id(UUID.randomUUID().toString()); + + // set nameIDFormat + builder.nameIdFormat( + authConfig.getBasicConfiguration(Constants.CONFIG_PROP_EIDAS_NODE_NAMEIDFORMAT)); + + builder.citizenCountryCode(citizenCountryCode); + builder.issuer(issuer); + // Add country-specific information into eIDAS request + ccSpecificProcessing.preProcess(citizenCountryCode, pendingReq, builder); + return builder.build(); + } + + private BinaryLightToken putRequestInCommunicationCache(ILightRequest lightRequest) + throws ServletException { + final BinaryLightToken binaryLightToken; + try { + String beanName = SpecificCommunicationDefinitionBeanNames.SPECIFIC_CONNECTOR_COMMUNICATION_SERVICE.toString(); + final SpecificCommunicationService service = (SpecificCommunicationService) context.getBean(beanName); + binaryLightToken = service.putRequest(lightRequest); + } catch (final SpecificCommunicationException e) { + log.error("Unable to process specific request"); + throw new ServletException(e); } + return binaryLightToken; + } + + /** + * Workaround, because eIDAS node ref. impl. does not return relayState + */ + private void workaroundRelayState(LightRequest lightAuthnReq) throws EaafException { + if (basicConfig.getBasicConfigurationBoolean( + Constants.CONIG_PROPS_EIDAS_NODE_WORKAROUND_USEREQUESTIDASTRANSACTIONIDENTIFIER, + false)) { + log.trace("Put lightRequestId into transactionstore as session-handling backup"); + transactionStore.put(lightAuthnReq.getId(), pendingReq.getPendingRequestId(), -1); + } + } + + @NotNull + private String selectForwardUrl(String environment) throws EaafConfigurationException { + String result = basicConfig.getBasicConfiguration(Constants.CONIG_PROPS_EIDAS_NODE_FORWARD_URL); + if (StringUtils.isNotEmpty(environment)) { + result = selectedForwardUrlForEnvironment(environment); + } + if (StringUtils.isEmpty(result)) { + log.warn("NO ForwardURL defined in configuration. Can NOT forward to eIDAS node! Process stops"); + throw new EaafConfigurationException("config.08", new Object[]{ + environment == null ? Constants.CONIG_PROPS_EIDAS_NODE_FORWARD_URL + : Constants.CONIG_PROPS_EIDAS_NODE_FORWARD_URL + "." + environment + }); + } + log.debug("ForwardURL: {} selected to forward eIDAS request", result); + return result; } /** @@ -205,51 +227,48 @@ public class GenerateAuthnRequestTask extends AbstractAuthServletTask { * <br> * <b>Info: </b> This method is needed, because eIDAS Ref. Impl only supports * one countrycode on each instance. In consequence, more than one eIDAS Ref. - * Impl nodes are required to support producation, testing, or QS stages for one + * Impl nodes are required to support production, testing, or QS stages for one * country by using one ms-specific eIDAS connector - * + * * @param environment Environment selector from CountrySlection page - * @return + * @return the URL from the configuration */ private String selectedForwardUrlForEnvironment(String environment) { - log.trace("Starting endpoint selection process for environment: " + environment + " ... "); + log.trace("Starting endpoint selection process for environment: {} ... ", environment); if (environment.equalsIgnoreCase(MsEidasNodeConstants.REQ_PARAM_SELECTED_ENVIRONMENT_VALUE_PRODUCTION)) { return basicConfig.getBasicConfiguration(Constants.CONIG_PROPS_EIDAS_NODE_FORWARD_URL); } else if (environment.equalsIgnoreCase(MsEidasNodeConstants.REQ_PARAM_SELECTED_ENVIRONMENT_VALUE_QS)) { return basicConfig.getBasicConfiguration(Constants.CONIG_PROPS_EIDAS_NODE_FORWARD_URL + "." + MsEidasNodeConstants.REQ_PARAM_SELECTED_ENVIRONMENT_VALUE_QS); - } else if (environment.equalsIgnoreCase( - MsEidasNodeConstants.REQ_PARAM_SELECTED_ENVIRONMENT_VALUE_TESTING)) { + } else if (environment.equalsIgnoreCase(MsEidasNodeConstants.REQ_PARAM_SELECTED_ENVIRONMENT_VALUE_TESTING)) { return basicConfig.getBasicConfiguration(Constants.CONIG_PROPS_EIDAS_NODE_FORWARD_URL + "." + MsEidasNodeConstants.REQ_PARAM_SELECTED_ENVIRONMENT_VALUE_TESTING); - } else if (environment.equalsIgnoreCase( - MsEidasNodeConstants.REQ_PARAM_SELECTED_ENVIRONMENT_VALUE_DEVELOPMENT)) { + } else if (environment.equalsIgnoreCase(MsEidasNodeConstants.REQ_PARAM_SELECTED_ENVIRONMENT_VALUE_DEVELOPMENT)) { return basicConfig.getBasicConfiguration(Constants.CONIG_PROPS_EIDAS_NODE_FORWARD_URL + "." + MsEidasNodeConstants.REQ_PARAM_SELECTED_ENVIRONMENT_VALUE_DEVELOPMENT); } - - log.info("Environment selector: " + environment + " is not supported"); + log.info("Environment selector: {} is not supported", environment); return null; - } - private BinaryLightToken putRequestInCommunicationCache(ILightRequest lightRequest) - throws ServletException { - final BinaryLightToken binaryLightToken; - try { - final SpecificCommunicationService springManagedSpecificConnectorCommunicationService = - (SpecificCommunicationService) context.getBean( - SpecificCommunicationDefinitionBeanNames.SPECIFIC_CONNECTOR_COMMUNICATION_SERVICE.toString()); - - binaryLightToken = springManagedSpecificConnectorCommunicationService.putRequest(lightRequest); - - } catch (final SpecificCommunicationException e) { - log.error("Unable to process specific request"); - throw new ServletException(e); - - } + private void sendRedirect(HttpServletResponse response, String tokenBase64, String forwardUrl) throws IOException { + log.debug("Use http-redirect for eIDAS node forwarding ... "); + final UriComponentsBuilder redirectUrl = UriComponentsBuilder.fromHttpUrl(forwardUrl); + redirectUrl.queryParam(EidasParameterKeys.TOKEN.toString(), tokenBase64); + response.sendRedirect(redirectUrl.build().encode().toString()); + + } - return binaryLightToken; + private void sendPost(HttpServletRequest request, HttpServletResponse response, String tokenBase64, String forwardUrl) + throws GuiBuildException { + log.debug("Use http-post for eIDAS node forwarding ... "); + final StaticGuiBuilderConfiguration config = new StaticGuiBuilderConfiguration( + basicConfig, pendingReq, Constants.TEMPLATE_POST_FORWARD_NAME, null, resourceLoader); + config.putCustomParameter(null, Constants.TEMPLATE_POST_FORWARD_ENDPOINT, forwardUrl); + String token = EidasParameterKeys.TOKEN.toString(); + config.putCustomParameter(null, Constants.TEMPLATE_POST_FORWARD_TOKEN_NAME, token); + config.putCustomParameter(null, Constants.TEMPLATE_POST_FORWARD_TOKEN_VALUE, tokenBase64); + guiBuilder.build(request, response, config, "Forward to eIDASNode form"); } } diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/GenerateMobilePhoneSignatureRequestTask.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/GenerateMobilePhoneSignatureRequestTask.java new file mode 100644 index 00000000..e6484e63 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/GenerateMobilePhoneSignatureRequestTask.java @@ -0,0 +1,145 @@ +/* + * Copyright 2021 A-SIT Plus GmbH + * AT-specific eIDAS Connector has been developed in a cooperation between EGIZ, + * A-SIT Plus GmbH, A-SIT, and Graz University of Technology. + * + * Licensed under the EUPL, Version 1.2 or - as soon they will be approved by + * the European Commission - subsequent versions of the EUPL (the "License"); + * You may not use this work except in compliance with the License. + * You may obtain a copy of the License at: + * https://joinup.ec.europa.eu/news/understanding-eupl-v12 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This product combines work with different licenses. See the "NOTICE" text + * file for details on the various modules and licenses. + * The "NOTICE" text file is part of the distribution. Any derivative works + * that you distribute must include a readable copy of the "NOTICE" text file. + */ + +package at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks; + +import at.asitplus.eidas.specific.modules.auth.eidas.v2.Constants; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.idaustriaclient.IdAustriaClientAuthConstants; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.idaustriaclient.IdAustriaClientAuthRequestBuilderConfiguration; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.idaustriaclient.provider.IdAustriaClientAuthCredentialProvider; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.idaustriaclient.provider.IdAustriaClientAuthMetadataProvider; +import at.gv.egiz.eaaf.core.api.idp.IConfiguration; +import at.gv.egiz.eaaf.core.api.idp.process.ExecutionContext; +import at.gv.egiz.eaaf.core.api.storage.ITransactionStorage; +import at.gv.egiz.eaaf.core.exceptions.EaafConfigurationException; +import at.gv.egiz.eaaf.core.exceptions.EaafException; +import at.gv.egiz.eaaf.core.exceptions.TaskExecutionException; +import at.gv.egiz.eaaf.core.impl.idp.auth.modules.AbstractAuthServletTask; +import at.gv.egiz.eaaf.core.impl.utils.Random; +import at.gv.egiz.eaaf.modules.pvp2.exception.CredentialsNotAvailableException; +import at.gv.egiz.eaaf.modules.pvp2.sp.impl.PvpAuthnRequestBuilder; +import lombok.extern.slf4j.Slf4j; +import net.shibboleth.utilities.java.support.resolver.ResolverException; +import net.shibboleth.utilities.java.support.security.SecureRandomIdentifierGenerationStrategy; +import org.apache.commons.lang3.StringUtils; +import org.jetbrains.annotations.NotNull; +import org.opensaml.saml.saml2.metadata.EntityDescriptor; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import java.text.MessageFormat; + +/** + * Generate a SAML2 AuthnRequest to authenticate the user at ID Austria system. + * This corresponds to Step 15A in the eIDAS Matching Concept. + * + * @author tlenz + */ +@Slf4j +@Component("GenerateMobilePhoneSignatureRequestTask") +public class GenerateMobilePhoneSignatureRequestTask extends AbstractAuthServletTask { + + private static final String ERROR_MSG_1 = + "Requested 'ms-specific eIDAS node' {0} has no valid metadata or metadata is not found"; + + @Autowired + PvpAuthnRequestBuilder authnReqBuilder; + @Autowired + IdAustriaClientAuthCredentialProvider credential; + @Autowired + IdAustriaClientAuthMetadataProvider metadataService; + @Autowired + private IConfiguration basicConfig; + @Autowired + protected ITransactionStorage transactionStorage; + + @Override + public void execute(ExecutionContext executionContext, HttpServletRequest request, HttpServletResponse response) + throws TaskExecutionException { + try { + log.trace("Starting GenerateMobilePhoneSignatureRequestTask"); + final String entityId = loadEntityId(); + final EntityDescriptor entityDesc = loadEntityDescriptor(entityId); + final IdAustriaClientAuthRequestBuilderConfiguration authnReqConfig = buildAuthnRequestConfig(entityDesc); + final String relayState = buildRelayState(); + authnReqBuilder.buildAuthnRequest(pendingReq, authnReqConfig, relayState, response); // also transmits! + } catch (final Exception e) { + throw new TaskExecutionException(pendingReq, "Generation of SAML2 AuthnRequest to ID Austria System FAILED", e); + } + } + + @NotNull + private String loadEntityId() throws EaafConfigurationException { + final String msNodeEntityID = basicConfig.getBasicConfiguration( + IdAustriaClientAuthConstants.CONFIG_PROPS_ID_AUSTRIA_ENTITYID); + if (StringUtils.isEmpty(msNodeEntityID)) { + log.warn("ID Austria authentication not possible -> NO EntityID for ID Austria System FOUND!"); + throw new EaafConfigurationException(Constants.ERRORCODE_00, + new Object[]{IdAustriaClientAuthConstants.CONFIG_PROPS_ID_AUSTRIA_ENTITYID}); + } + return msNodeEntityID; + } + + /** + * Build relayState for session synchronization, because SAML2 only allows RelayState with 80 characters + * but encrypted PendingRequestId is much longer. + */ + @NotNull + private String buildRelayState() throws EaafException { + String relayState = Random.nextProcessReferenceValue(); + transactionStorage.put(relayState, pendingReq.getPendingRequestId(), -1); + return relayState; + } + + @NotNull + private EntityDescriptor loadEntityDescriptor(String msNodeEntityID) + throws ResolverException, EaafConfigurationException { + final EntityDescriptor entityDesc = metadataService.getEntityDescriptor(msNodeEntityID); + if (entityDesc == null) { + throw new EaafConfigurationException(IdAustriaClientAuthConstants.ERRORCODE_02, + new Object[]{MessageFormat.format(ERROR_MSG_1, msNodeEntityID)}); + + } + return entityDesc; + } + + @NotNull + private IdAustriaClientAuthRequestBuilderConfiguration buildAuthnRequestConfig(EntityDescriptor entityDesc) + throws CredentialsNotAvailableException { + final IdAustriaClientAuthRequestBuilderConfiguration authnReqConfig = + new IdAustriaClientAuthRequestBuilderConfiguration(); + final SecureRandomIdentifierGenerationStrategy gen = new SecureRandomIdentifierGenerationStrategy(); + authnReqConfig.setRequestId(gen.generateIdentifier()); + authnReqConfig.setIdpEntity(entityDesc); + authnReqConfig.setPassive(false); + authnReqConfig.setSignCred(credential.getMessageSigningCredential()); + authnReqConfig.setSpEntityID( + pendingReq.getAuthUrlWithOutSlash() + IdAustriaClientAuthConstants.ENDPOINT_METADATA); + authnReqConfig.setRequestedLoA(authConfig.getBasicConfiguration( + IdAustriaClientAuthConstants.CONFIG_PROPS_REQUIRED_LOA, + IdAustriaClientAuthConstants.CONFIG_DEFAULT_LOA_EIDAS_LEVEL)); + return authnReqConfig; + } +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/GenerateOtherLoginMethodGuiTask.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/GenerateOtherLoginMethodGuiTask.java new file mode 100644 index 00000000..dbdda78e --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/GenerateOtherLoginMethodGuiTask.java @@ -0,0 +1,82 @@ +/* + * Copyright 2021 A-SIT Plus GmbH + * AT-specific eIDAS Connector has been developed in a cooperation between EGIZ, + * A-SIT Plus GmbH, A-SIT, and Graz University of Technology. + * + * Licensed under the EUPL, Version 1.2 or - as soon they will be approved by + * the European Commission - subsequent versions of the EUPL (the "License"); + * You may not use this work except in compliance with the License. + * You may obtain a copy of the License at: + * https://joinup.ec.europa.eu/news/understanding-eupl-v12 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This product combines work with different licenses. See the "NOTICE" text + * file for details on the various modules and licenses. + * The "NOTICE" text file is part of the distribution. Any derivative works + * that you distribute must include a readable copy of the "NOTICE" text file. + */ + +package at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; + +import at.asitplus.eidas.specific.connector.MsEidasNodeConstants; +import at.asitplus.eidas.specific.connector.gui.StaticGuiBuilderConfiguration; +import at.gv.egiz.eaaf.core.api.gui.IGuiBuilderConfiguration; +import at.gv.egiz.eaaf.core.api.gui.ISpringMvcGuiFormBuilder; +import at.gv.egiz.eaaf.core.api.idp.IConfiguration; +import at.gv.egiz.eaaf.core.api.idp.process.ExecutionContext; +import at.gv.egiz.eaaf.core.exceptions.TaskExecutionException; +import at.gv.egiz.eaaf.core.impl.idp.auth.modules.AbstractAuthServletTask; +import lombok.extern.slf4j.Slf4j; + +/** + * Task that provides GUI for user to select an alternative login method. + * This page is shown when the matching of the eIDAS data to ZMR/ERnP data is ambiguous. + * This corresponds to Steps 10, 14, 16 in the eIDAS Matching Concept. + * The response is handled in {@link ReceiveOtherLoginMethodGuiResponseTask} + * + * @author amarsalek + * @author ckollmann + */ +@Slf4j +@Component("GenerateOtherLoginMethodGuiTask") +public class GenerateOtherLoginMethodGuiTask extends AbstractAuthServletTask { + + @Autowired + private ISpringMvcGuiFormBuilder guiBuilder; + + @Autowired + private IConfiguration basicConfig; + + @Override + public void execute(ExecutionContext executionContext, HttpServletRequest request, HttpServletResponse response) + throws TaskExecutionException { + try { + final IGuiBuilderConfiguration config = new StaticGuiBuilderConfiguration( + basicConfig, + pendingReq, + basicConfig.getBasicConfiguration( + MsEidasNodeConstants.PROP_CONFIG_WEBCONTENT_TEMPLATES_OTHER_LOGIN_METHOD_SELECTION, + MsEidasNodeConstants.TEMPLATE_HTML_OTHERLOGINMETHODS), + MsEidasNodeConstants.ENDPOINT_OTHER_LOGIN_METHOD_SELECTION, + resourceLoader); + + guiBuilder.build(request, response, config, "Other login methods selection form"); + + } catch (final Exception e) { + log.error("Initial search FAILED.", e); + throw new TaskExecutionException(pendingReq, "Gui creation FAILED.", e); + } + } + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/InitialSearchTask.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/InitialSearchTask.java new file mode 100644 index 00000000..2341b733 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/InitialSearchTask.java @@ -0,0 +1,202 @@ +/* + * Copyright 2020 A-SIT Plus GmbH + * AT-specific eIDAS Connector has been developed in a cooperation between EGIZ, + * A-SIT Plus GmbH, A-SIT, and Graz University of Technology. + * + * Licensed under the EUPL, Version 1.2 or - as soon they will be approved by + * the European Commission - subsequent versions of the EUPL (the "License"); + * You may not use this work except in compliance with the License. + * You may obtain a copy of the License at: + * https://joinup.ec.europa.eu/news/understanding-eupl-v12 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This product combines work with different licenses. See the "NOTICE" text + * file for details on the various modules and licenses. + * The "NOTICE" text file is part of the distribution. Any derivative works + * that you distribute must include a readable copy of the "NOTICE" text file. + */ + +package at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks; + +import at.asitplus.eidas.specific.modules.auth.eidas.v2.Constants; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.MatchedPersonResult; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.RegisterResult; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.SimpleEidasData; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.EidPostProcessingException; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.EidasAttributeException; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.WorkflowException; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.service.ICcSpecificEidProcessingService; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.service.RegisterSearchService; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.service.RegisterSearchService.RegisterOperationStatus; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.service.RegisterSearchService.RegisterStatusResults; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.utils.MatchingTaskUtils; +import at.gv.egiz.eaaf.core.api.idp.process.ExecutionContext; +import at.gv.egiz.eaaf.core.exceptions.EaafStorageException; +import at.gv.egiz.eaaf.core.exceptions.TaskExecutionException; +import at.gv.egiz.eaaf.core.impl.idp.auth.modules.AbstractAuthServletTask; +import eu.eidas.auth.commons.light.ILightResponse; +import lombok.extern.slf4j.Slf4j; +import org.jetbrains.annotations.NotNull; +import org.springframework.stereotype.Component; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import java.util.Map; + +import static at.asitplus.eidas.specific.modules.auth.eidas.v2.Constants.TRANSITION_TO_CREATE_NEW_ERNP_ENTRY_TASK; +import static at.asitplus.eidas.specific.modules.auth.eidas.v2.Constants.TRANSITION_TO_GENERATE_OTHER_LOGIN_METHOD_GUI_TASK; + +/** + * Searches registers (ERnP and ZMR) after initial user auth, before adding person to SZR. + * Input: + * <ul> + * <li>{@link Constants#DATA_FULL_EIDAS_RESPONSE}</li> + * </ul> + * Output: + * <ul> + * <li>{@link Constants#DATA_SIMPLE_EIDAS} converted from Full eIDAS Response</li> + * <li>{@link Constants#DATA_INTERMEDIATE_RESULT} results from first search in registers with + * PersonIdentifier</li> + * <li>{@link Constants#DATA_PERSON_MATCH_RESULT} results after second search in registers with MDS</li> + * <li>{@link Constants#DATA_RESULT_MATCHING_BPK} if one register result found</li> + * </ul> + * Transitions: + * <ul> + * <li>{@link CreateNewErnpEntryTask} if no results in registers where found for this user</li> + * <li>{@link GenerateOtherLoginMethodGuiTask} if search with MDS returns more than one match, user may provide + * alternative login methods to get an unique match</li> + * <li>{@link CreateIdentityLinkTask} if search in register returned one match, user is uniquely identified</li> + * </ul> + * + * @author amarsalek + * @author ckollmann + * @author tlenz + */ +@Slf4j +@Component("InitialSearchTask") +@SuppressWarnings("PMD.TooManyStaticImports") +public class InitialSearchTask extends AbstractAuthServletTask { + + private final RegisterSearchService registerSearchService; + private final ICcSpecificEidProcessingService eidPostProcessor; + + /** + * Constructor. + * + * @param registerSearchService Service for register search access + * @param eidPostProcessor Country-Specific post processing of attributes + */ + public InitialSearchTask(RegisterSearchService registerSearchService, + ICcSpecificEidProcessingService eidPostProcessor) { + this.registerSearchService = registerSearchService; + this.eidPostProcessor = eidPostProcessor; + } + + @Override + public void execute(ExecutionContext executionContext, HttpServletRequest request, HttpServletResponse response) + throws TaskExecutionException { + try { + final SimpleEidasData eidasData = convertEidasAttrToSimpleData(); + MatchingTaskUtils.storeInitialEidasData(pendingReq, eidasData); + step2RegisterSearchWithPersonIdentifier(executionContext, eidasData); + } catch (WorkflowException e) { + throw new TaskExecutionException(pendingReq, "Initial search failed", e); + } catch (final Exception e) { + log.error("Initial search failed", e); + throw new TaskExecutionException(pendingReq, "Initial search failed with a generic error", e); + } + } + + private void step2RegisterSearchWithPersonIdentifier( + ExecutionContext executionContext, SimpleEidasData eidasData) throws WorkflowException, EaafStorageException { + try { + log.trace("Starting step2RegisterSearchWithPersonIdentifier"); + RegisterStatusResults searchResult = registerSearchService.searchWithPersonIdentifier(eidasData); + int resultCount = searchResult.getResultCount(); + if (resultCount == 0) { + step6CountrySpecificSearch(executionContext, searchResult.getOperationStatus(), eidasData); + } else if (resultCount == 1) { + foundMatchFinalizeTask(searchResult, eidasData); + } else { + throw new WorkflowException("step2RegisterSearchWithPersonIdentifier", + "More than one entry with unique personal-identifier", true); + } + } catch (WorkflowException e) { + //TODO: what we do in case of a workflow error and manual matching are necessary?? + log.warn("Workflow error during matching step: {}. Reason: {}", e.getProcessStepName(), e.getErrorReason()); + throw e; + } + } + + private void step6CountrySpecificSearch( + ExecutionContext executionContext, RegisterOperationStatus registerOperationStatus, SimpleEidasData eidasData) + throws EaafStorageException, WorkflowException { + log.trace("Starting 'step6CountrySpecificSearch' ... "); + RegisterStatusResults searchResult = registerSearchService.searchWithCountrySpecifics( + registerOperationStatus, eidasData); + if (searchResult.getResultCount() == 0) { + log.trace("'step6CountrySpecificSearch' ends with no result. Forward to next matching step ... "); + step8RegisterSearchWithMds(executionContext, searchResult.getOperationStatus(), eidasData); + } else if (searchResult.getResultCount() == 1) { + log.trace("'step6CountrySpecificSearch' finds a person. Forward to 'step7aKittProcess' step ... "); + registerSearchService.step7aKittProcess(searchResult, eidasData); + foundMatchFinalizeTask(searchResult, eidasData); + } else { + throw new WorkflowException("step6CountrySpecificSearch", + "More than one entry with unique country-specific information", true); + } + } + + private void step8RegisterSearchWithMds(ExecutionContext executionContext, + RegisterOperationStatus registerOperationStatus, SimpleEidasData eidasData) + throws EaafStorageException, WorkflowException { + log.trace("Starting step8RegisterSearchWithMds"); + RegisterStatusResults registerData = registerSearchService.searchWithMds(registerOperationStatus, eidasData); + if (registerData.getResultCount() == 0) { + log.debug("Matching step: 'step8RegisterSearchWithMds' has no result. Forward to create new ERnP entry ... "); + executionContext.put(TRANSITION_TO_CREATE_NEW_ERNP_ENTRY_TASK, true); + } else { + log.debug("Matching step: 'step8RegisterSearchWithMds' has #{} results. " + + "Forward to GUI based matching steps ... ", registerData.getResultCount()); + MatchingTaskUtils.storeIntermediateMatchingResult(pendingReq, registerData); + executionContext.put(TRANSITION_TO_GENERATE_OTHER_LOGIN_METHOD_GUI_TASK, true); + } + } + + private void foundMatchFinalizeTask(RegisterStatusResults searchResult, SimpleEidasData eidasData) + throws WorkflowException, EaafStorageException { + RegisterResult updatedResult = step3CheckRegisterUpdateNecessary(searchResult.getResult(), eidasData); + MatchedPersonResult result = MatchedPersonResult.generateFormMatchingResult( + updatedResult, eidasData.getCitizenCountryCode()); + MatchingTaskUtils.storeFinalMatchingResult(pendingReq, result); + } + + private RegisterResult step3CheckRegisterUpdateNecessary(RegisterResult searchResult, + SimpleEidasData eidasData) throws WorkflowException { + log.trace("Starting step3CheckRegisterUpdateNecessary"); + if (!eidasData.equalsRegisterData(searchResult)) { + log.info("Skipping update-register-information step, because it's not supported yet"); + //TODO: return updated search result if updates are allowed + return searchResult; + } else { + log.debug("Register information match to eIDAS information. No update required"); + return searchResult; + } + } + + @NotNull + private SimpleEidasData convertEidasAttrToSimpleData() + throws EidasAttributeException, EidPostProcessingException { + final ILightResponse eidasResponse = MatchingTaskUtils.getAuthProcessDataWrapper(pendingReq) + .getGenericDataFromSession(Constants.DATA_FULL_EIDAS_RESPONSE, ILightResponse.class); + Map<String, Object> simpleMap = MatchingTaskUtils.convertEidasAttrToSimpleMap( + eidasResponse.getAttributes().getAttributeMap(), log); + return eidPostProcessor.postProcess(simpleMap); + } + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/ReceiveAustrianResidenceGuiResponseTask.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/ReceiveAustrianResidenceGuiResponseTask.java new file mode 100644 index 00000000..83fdf771 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/ReceiveAustrianResidenceGuiResponseTask.java @@ -0,0 +1,214 @@ +/* + * Copyright 2021 A-SIT Plus GmbH + * AT-specific eIDAS Connector has been developed in a cooperation between EGIZ, + * A-SIT Plus GmbH, A-SIT, and Graz University of Technology. + * + * Licensed under the EUPL, Version 1.2 or - as soon they will be approved by + * the European Commission - subsequent versions of the EUPL (the "License"); + * You may not use this work except in compliance with the License. + * You may obtain a copy of the License at: + * https://joinup.ec.europa.eu/news/understanding-eupl-v12 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This product combines work with different licenses. See the "NOTICE" text + * file for details on the various modules and licenses. + * The "NOTICE" text file is part of the distribution. Any derivative works + * that you distribute must include a readable copy of the "NOTICE" text file. + */ + +package at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks; + +import java.util.Enumeration; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.apache.commons.lang.StringEscapeUtils; +import org.jetbrains.annotations.NotNull; +import org.springframework.stereotype.Component; + +import at.asitplus.eidas.specific.modules.auth.eidas.v2.Constants; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.MatchedPersonResult; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.SimpleEidasData; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.InvalidUserInputException; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.ManualFixNecessaryException; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.WorkflowException; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.service.RegisterSearchService; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.service.RegisterSearchService.RegisterStatusResults; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.utils.MatchingTaskUtils; +import at.gv.egiz.eaaf.core.api.idp.process.ExecutionContext; +import at.gv.egiz.eaaf.core.exceptions.EaafStorageException; +import at.gv.egiz.eaaf.core.exceptions.TaskExecutionException; +import at.gv.egiz.eaaf.core.impl.idp.auth.modules.AbstractAuthServletTask; +import lombok.AllArgsConstructor; +import lombok.Data; +import lombok.NoArgsConstructor; +import lombok.extern.slf4j.Slf4j; + + +/** + * Task receives the response of {@link GenerateAustrianResidenceGuiTask} and handles it. + * This corresponds to Steps 17B, 18, 19 in the eIDAS Matching Concept. + * Input: + * <ul> + * <li>{@link Constants#DATA_SIMPLE_EIDAS} initial login data from user</li> + * <li>{@link Constants#DATA_INTERMEDIATE_RESULT} results from search in registers with personIdentifier</li> + * </ul> + * Output: + * <ul> + * <li>{@link Constants#DATA_RESULT_MATCHING_BPK} if one register result found</li> + * </ul> + * Transitions: + * <ul> + * <li>{@link CreateNewErnpEntryTask} if no results from search with residency data in registers</li> + * <li>{@link CreateIdentityLinkTask} if one exact match between initial register search (with MDS) and results + * from search with residency data in registers exists</li> + * </ul> + * + * @author amarsalek + * @author ckollmann + * @author tlenz + */ +@Slf4j +@Component("ReceiveAustrianResidenceGuiResponseTask") +public class ReceiveAustrianResidenceGuiResponseTask extends AbstractAuthServletTask { + + public static final String PARAM_FORMER_RESIDENCE_AVAILABLE = "formerResidenceAvailable"; + public static final String PARAM_STREET = "street"; + public static final String PARAM_CITY = "city"; + public static final String PARAM_ZIPCODE = "zipcode"; + private final RegisterSearchService registerSearchService; + + public ReceiveAustrianResidenceGuiResponseTask(RegisterSearchService registerSearchService) { + this.registerSearchService = registerSearchService; + } + + @Data + @AllArgsConstructor + @NoArgsConstructor + public static class UserInput { + private boolean formerResidenceAvailable; + private String zipcode; + private String city; + private String street; + } + + @Override + public void execute(ExecutionContext executionContext, HttpServletRequest request, HttpServletResponse response) + throws TaskExecutionException { + log.trace("Starting ReceiveAustrianResidenceGuiResponseTask"); + + UserInput input = parseHtmlInput(request); + if (!input.isFormerResidenceAvailable()) { + moveToNextTask(executionContext); + return; + + } + + //TODO: Here, we need an error handling an can not stop full process if form input was invalid + //TODO: check minimum form elements + /*TODO: maybe we can switch to custom controller and use WebMVC form-binding feature. + * Binding element can be add as attribute to this request + */ + if (input.getStreet().isEmpty() || input.getCity().isEmpty() || input.getZipcode().isEmpty()) { + // HTML form should ensure that mandatory fields are set => this should never happen + throw new TaskExecutionException(pendingReq, "Invalid user input", + new InvalidUserInputException("module.eidasauth.matching.06")); + + } + + + + try { + SimpleEidasData eidasData = MatchingTaskUtils.getInitialEidasData(pendingReq); + RegisterStatusResults initialSearchResult = MatchingTaskUtils.getIntermediateMatchingResult(pendingReq); + + RegisterStatusResults residencyResult = + registerSearchService.searchWithResidence(initialSearchResult.getOperationStatus(), + eidasData, input.zipcode, input.city, input.street); + if (residencyResult.getResultCount() == 0) { + //TODO: her we should add a GUI step of result is zero to inform user an forward process by click + moveToNextTask(executionContext); + + } else if (residencyResult.getResultCount() == 1) { + compareSearchResultWithInitialData(executionContext, residencyResult, eidasData); + + } else { + /*TODO: align with form generation task and to better error handling in case of more-than-one result. + * Maybe the user has to provide more information. + */ + throw new TaskExecutionException(pendingReq, + "Manual Fix necessary", new ManualFixNecessaryException(eidasData)); + + } + + } catch (EaafStorageException e) { + log.error("Search with residency data failed", e); + throw new TaskExecutionException(pendingReq, "Search with residency data failed", e); + + } + } + + private void compareSearchResultWithInitialData(ExecutionContext executionContext, + RegisterStatusResults residencyResult, SimpleEidasData eidasData) + throws TaskExecutionException, EaafStorageException { + try { + /*TODO: check 'equalsRegisterData' because this method maybe this method evaluate to an invalid result. + * See TODO in methods body + */ + if (eidasData.equalsRegisterData(residencyResult.getResult())) { + // update register information + registerSearchService.step7aKittProcess(residencyResult, eidasData); + + // store search result to re-used in CreateIdentityLink step, because there we need bPK and MDS + MatchingTaskUtils.storeFinalMatchingResult(pendingReq, + MatchedPersonResult.generateFormMatchingResult( + residencyResult.getResult(), eidasData.getCitizenCountryCode())); + + } else { + moveToNextTask(executionContext); + + } + + } catch (WorkflowException e) { + throw new TaskExecutionException(pendingReq, "Search failed", new ManualFixNecessaryException(eidasData)); + + } + } + + private void moveToNextTask(ExecutionContext executionContext) { + // Later on, this should transition to Step 20 + executionContext.put(Constants.TRANSITION_TO_CREATE_NEW_ERNP_ENTRY_TASK, true); + + } + + private @NotNull UserInput parseHtmlInput(HttpServletRequest request) { + Enumeration<String> reqParamNames = request.getParameterNames(); + UserInput result = new UserInput(); + while (reqParamNames.hasMoreElements()) { + final String paramName = reqParamNames.nextElement(); + String escaped = StringEscapeUtils.escapeHtml(request.getParameter(paramName)); + if (PARAM_FORMER_RESIDENCE_AVAILABLE.equalsIgnoreCase(paramName)) { + result.setFormerResidenceAvailable(Boolean.parseBoolean(escaped)); + + } else if (PARAM_STREET.equalsIgnoreCase(paramName)) { + result.setStreet(escaped); + + } else if (PARAM_CITY.equalsIgnoreCase(paramName)) { + result.setCity(escaped); + + } else if (PARAM_ZIPCODE.equalsIgnoreCase(paramName)) { + result.setZipcode(escaped); + + } + } + return result; + + } + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/ReceiveAuthnResponseAlternativeTask.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/ReceiveAuthnResponseAlternativeTask.java new file mode 100644 index 00000000..aa04f55e --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/ReceiveAuthnResponseAlternativeTask.java @@ -0,0 +1,131 @@ +/* + * Copyright 2018 A-SIT Plus GmbH + * AT-specific eIDAS Connector has been developed in a cooperation between EGIZ, + * A-SIT Plus GmbH, A-SIT, and Graz University of Technology. + * + * Licensed under the EUPL, Version 1.2 or - as soon they will be approved by + * the European Commission - subsequent versions of the EUPL (the "License"); + * You may not use this work except in compliance with the License. + * You may obtain a copy of the License at: + * https://joinup.ec.europa.eu/news/understanding-eupl-v12 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This product combines work with different licenses. See the "NOTICE" text + * file for details on the various modules and licenses. + * The "NOTICE" text file is part of the distribution. Any derivative works + * that you distribute must include a readable copy of the "NOTICE" text file. + */ + +package at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks; + +import at.asitplus.eidas.specific.connector.MsEidasNodeConstants; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.Constants; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.EidasSAuthenticationException; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.EidasValidationException; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.service.EidasAttributeRegistry; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.validator.EidasResponseValidator; +import at.gv.egiz.eaaf.core.api.idp.IConfiguration; +import at.gv.egiz.eaaf.core.api.idp.process.ExecutionContext; +import at.gv.egiz.eaaf.core.exceptions.EaafException; +import at.gv.egiz.eaaf.core.exceptions.TaskExecutionException; +import at.gv.egiz.eaaf.core.impl.idp.auth.data.AuthProcessDataWrapper; +import at.gv.egiz.eaaf.core.impl.idp.auth.modules.AbstractAuthServletTask; +import eu.eidas.auth.commons.light.ILightResponse; +import lombok.extern.slf4j.Slf4j; +import org.jetbrains.annotations.NotNull; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + + +/** + * Receives the authn response from the eIDAS Node, containing the (alternative) eIDAS authentication. + * Input: + * <ul> + * <li>none</li> + * </ul> + * Output: + * <ul> + * <li>{@link Constants#DATA_FULL_EIDAS_RESPONSE_ALTERNATIVE} the full response details</li> + * </ul> + * Transitions: + * <ul> + * <li>{@link InitialSearchTask} to perform search in registers</li> + * </ul> + * + * @author tlenz + * @author ckollmann + */ +@Slf4j +@Component("ReceiveAuthnResponseTask") +public class ReceiveAuthnResponseAlternativeTask extends AbstractAuthServletTask { + + @SuppressWarnings("SpringJavaInjectionPointsAutowiringInspection") + @Autowired + private IConfiguration basicConfig; + + @Autowired + private EidasAttributeRegistry attrRegistry; + + @Override + public void execute(ExecutionContext executionContext, HttpServletRequest request, + HttpServletResponse response) throws TaskExecutionException { + try { + final ILightResponse eidasResponse = extractEidasResponse(request); + checkStatusCode(eidasResponse); + validateMsSpecificResponse(executionContext, eidasResponse); + storeInSession(eidasResponse); + } catch (final Exception e) { + log.warn("eIDAS Response processing FAILED.", e); + throw new TaskExecutionException(pendingReq, e.getMessage(), + new EidasSAuthenticationException("eidas.05", new Object[]{e.getMessage()}, e)); + } + } + + @NotNull + private ILightResponse extractEidasResponse(HttpServletRequest request) throws EidasSAuthenticationException { + final ILightResponse eidasResponse = (ILightResponse) request.getAttribute(Constants.DATA_FULL_EIDAS_RESPONSE); + if (eidasResponse == null) { + log.warn("NO eIDAS response-message found."); + throw new EidasSAuthenticationException("eidas.01", null); + } + log.debug("Receive eIDAS response with RespId: {} for ReqId: {}", + eidasResponse.getId(), eidasResponse.getInResponseToId()); + log.trace("Full eIDAS-Resp: {}", eidasResponse); + return eidasResponse; + } + + private void checkStatusCode(ILightResponse eidasResponse) throws EidasSAuthenticationException { + if (!eidasResponse.getStatus().getStatusCode().equals(Constants.SUCCESS_URI)) { + log.info("Receive eIDAS Response with StatusCode: {} Subcode: {} Msg: {}", + eidasResponse.getStatus().getStatusCode(), + eidasResponse.getStatus().getSubStatusCode(), + eidasResponse.getStatus().getStatusMessage()); + throw new EidasSAuthenticationException("eidas.02", new Object[]{eidasResponse.getStatus() + .getStatusCode(), eidasResponse.getStatus().getStatusMessage()}); + } + } + + private void validateMsSpecificResponse(ExecutionContext executionContext, ILightResponse eidasResponse) + throws EidasValidationException { + final String spCountry = basicConfig.getBasicConfiguration(Constants.CONIG_PROPS_EIDAS_NODE_COUNTRYCODE, "AT"); + final String citizenCountryCode = (String) executionContext.get(MsEidasNodeConstants.REQ_PARAM_SELECTED_COUNTRY); + EidasResponseValidator.validateResponse(pendingReq, eidasResponse, spCountry, citizenCountryCode, attrRegistry); + } + + private void storeInSession(ILightResponse eidasResponse) throws EaafException { + log.debug("Store eIDAS response information into pending-request."); + final AuthProcessDataWrapper authProcessData = pendingReq.getSessionData(AuthProcessDataWrapper.class); + authProcessData.setQaaLevel(eidasResponse.getLevelOfAssurance()); + authProcessData.setGenericDataToSession(Constants.DATA_FULL_EIDAS_RESPONSE_ALTERNATIVE, eidasResponse); + requestStoreage.storePendingRequest(pendingReq); + } + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/ReceiveAuthnResponseTask.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/ReceiveAuthnResponseTask.java index 6cab9214..86cd2164 100644 --- a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/ReceiveAuthnResponseTask.java +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/ReceiveAuthnResponseTask.java @@ -19,13 +19,14 @@ * file for details on the various modules and licenses. * The "NOTICE" text file is part of the distribution. Any derivative works * that you distribute must include a readable copy of the "NOTICE" text file. -*/ + */ package at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; +import org.jetbrains.annotations.NotNull; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; @@ -33,6 +34,7 @@ import at.asitplus.eidas.specific.connector.MsConnectorEventCodes; import at.asitplus.eidas.specific.connector.MsEidasNodeConstants; import at.asitplus.eidas.specific.modules.auth.eidas.v2.Constants; import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.EidasSAuthenticationException; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.EidasValidationException; import at.asitplus.eidas.specific.modules.auth.eidas.v2.service.EidasAttributeRegistry; import at.asitplus.eidas.specific.modules.auth.eidas.v2.validator.EidasResponseValidator; import at.gv.egiz.eaaf.core.api.idp.IConfiguration; @@ -44,87 +46,102 @@ import at.gv.egiz.eaaf.core.impl.idp.auth.modules.AbstractAuthServletTask; import eu.eidas.auth.commons.light.ILightResponse; import lombok.extern.slf4j.Slf4j; + +/** + * Receives the authn response from the eIDAS Node, containing the (initial) eIDAS authentication. + * Input: + * <ul> + * <li>none</li> + * </ul> + * Output: + * <ul> + * <li>{@link Constants#DATA_FULL_EIDAS_RESPONSE} the full response details</li> + * </ul> + * Transitions: + * <ul> + * <li>{@link InitialSearchTask} to perform search in registers</li> + * </ul> + * + * @author tlenz + * @author ckollmann + */ @Slf4j -@Component("ReceiveResponseFromeIDASNodeTask") +@Component("ReceiveAuthnResponseTask") public class ReceiveAuthnResponseTask extends AbstractAuthServletTask { + @SuppressWarnings("SpringJavaInjectionPointsAutowiringInspection") @Autowired private IConfiguration basicConfig; + @Autowired private EidasAttributeRegistry attrRegistry; @Override public void execute(ExecutionContext executionContext, HttpServletRequest request, - HttpServletResponse response) throws TaskExecutionException { + HttpServletResponse response) throws TaskExecutionException { try { - final ILightResponse eidasResponse = (ILightResponse) request.getAttribute( - Constants.DATA_FULL_EIDAS_RESPONSE); - if (eidasResponse == null) { - log.warn("NO eIDAS response-message found."); - throw new EidasSAuthenticationException("eidas.01", null); - - } - - log.debug("Receive eIDAS response with RespId:" + eidasResponse.getId() + " for ReqId:" + eidasResponse - .getInResponseToId()); - log.trace("Full eIDAS-Resp: " + eidasResponse.toString()); - revisionsLogger.logEvent(pendingReq, MsConnectorEventCodes.RESPONSE_FROM_EIDAS_NODE, eidasResponse - .getId()); - - // check response StatusCode - if (!eidasResponse.getStatus().getStatusCode().equals(Constants.SUCCESS_URI)) { - log.info("Receice eIDAS Response with StatusCode:" + eidasResponse.getStatus().getStatusCode() - + " Subcode:" + eidasResponse.getStatus().getSubStatusCode() + " Msg:" + eidasResponse.getStatus() - .getStatusMessage()); - throw new EidasSAuthenticationException("eidas.02", new Object[] { eidasResponse.getStatus() - .getStatusCode(), eidasResponse.getStatus().getStatusMessage() }); - - } - - // extract all Attributes from response - - // ********************************************************** - // ******* MS-specificresponse validation ********** - // ********************************************************** - final String spCountry = basicConfig.getBasicConfiguration(Constants.CONIG_PROPS_EIDAS_NODE_COUNTRYCODE, - "AT"); - final String citizenCountryCode = (String) executionContext.get( - MsEidasNodeConstants.REQ_PARAM_SELECTED_COUNTRY); - EidasResponseValidator.validateResponse(pendingReq, eidasResponse, spCountry, citizenCountryCode, - attrRegistry); - - // ********************************************************** - // ******* Store resonse infos into session object ********** - // ********************************************************** - - // update MOA-Session data with received information - log.debug("Store eIDAS response information into pending-request."); - final EidAuthProcessDataWrapper authProcessData = pendingReq.getSessionData(EidAuthProcessDataWrapper.class); - authProcessData.setQaaLevel(eidasResponse.getLevelOfAssurance()); - authProcessData.setGenericDataToSession(Constants.DATA_FULL_EIDAS_RESPONSE, eidasResponse); - - - //inject set flag to inject - authProcessData.setTestIdentity( - basicConfig.getBasicConfigurationBoolean(Constants.CONIG_PROPS_EIDAS_IS_TEST_IDENTITY, false)); - - // store MOA-session to database - requestStoreage.storePendingRequest(pendingReq); + final ILightResponse eidasResponse = extractEidasResponse(request); + checkStatusCode(eidasResponse); + validateMsSpecificResponse(executionContext, eidasResponse); + storeInSession(eidasResponse); revisionsLogger.logEvent(pendingReq, MsConnectorEventCodes.RESPONSE_FROM_EIDAS_NODE_VALID); - } catch (final EaafException e) { revisionsLogger.logEvent(pendingReq, MsConnectorEventCodes.RESPONSE_FROM_EIDAS_NODE_NOT_VALID); throw new TaskExecutionException(pendingReq, "eIDAS Response processing FAILED.", e); - } catch (final Exception e) { log.warn("eIDAS Response processing FAILED.", e); revisionsLogger.logEvent(pendingReq, MsConnectorEventCodes.RESPONSE_FROM_EIDAS_NODE_NOT_VALID); throw new TaskExecutionException(pendingReq, e.getMessage(), - new EidasSAuthenticationException("eidas.05", new Object[] { e.getMessage() }, e)); + new EidasSAuthenticationException("eidas.05", new Object[]{e.getMessage()}, e)); + } + } + @NotNull + private ILightResponse extractEidasResponse(HttpServletRequest request) throws EidasSAuthenticationException { + final ILightResponse eidasResponse = (ILightResponse) request.getAttribute(Constants.DATA_FULL_EIDAS_RESPONSE); + if (eidasResponse == null) { + log.warn("NO eIDAS response-message found."); + throw new EidasSAuthenticationException("eidas.01", null); } + log.debug("Receive eIDAS response with RespId: {} for ReqId: {}", + eidasResponse.getId(), eidasResponse.getInResponseToId()); + log.trace("Full eIDAS-Resp: {}", eidasResponse); + revisionsLogger.logEvent(pendingReq, MsConnectorEventCodes.RESPONSE_FROM_EIDAS_NODE, eidasResponse.getId()); + return eidasResponse; + } + + private void checkStatusCode(ILightResponse eidasResponse) throws EidasSAuthenticationException { + if (!eidasResponse.getStatus().getStatusCode().equals(Constants.SUCCESS_URI)) { + log.info("Receive eIDAS Response with StatusCode: {} Subcode: {} Msg: {}", + eidasResponse.getStatus().getStatusCode(), + eidasResponse.getStatus().getSubStatusCode(), + eidasResponse.getStatus().getStatusMessage()); + throw new EidasSAuthenticationException("eidas.02", new Object[]{eidasResponse.getStatus() + .getStatusCode(), eidasResponse.getStatus().getStatusMessage()}); + } + } + + private void validateMsSpecificResponse(ExecutionContext executionContext, ILightResponse eidasResponse) + throws EidasValidationException { + final String spCountry = basicConfig.getBasicConfiguration(Constants.CONIG_PROPS_EIDAS_NODE_COUNTRYCODE, "AT"); + final String citizenCountryCode = (String) executionContext.get(MsEidasNodeConstants.REQ_PARAM_SELECTED_COUNTRY); + EidasResponseValidator.validateResponse(pendingReq, eidasResponse, spCountry, citizenCountryCode, attrRegistry); + } + private void storeInSession(ILightResponse eidasResponse) throws EaafException { + log.debug("Store eIDAS response information into pending-request."); + final EidAuthProcessDataWrapper authProcessData = pendingReq.getSessionData(EidAuthProcessDataWrapper.class); + authProcessData.setQaaLevel(eidasResponse.getLevelOfAssurance()); + + //inject set flag to inject + authProcessData.setTestIdentity( + basicConfig.getBasicConfigurationBoolean(Constants.CONIG_PROPS_EIDAS_IS_TEST_IDENTITY, false)); + + + authProcessData.setGenericDataToSession(Constants.DATA_FULL_EIDAS_RESPONSE, eidasResponse); + requestStoreage.storePendingRequest(pendingReq); + } } diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/ReceiveMobilePhoneSignatureResponseTask.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/ReceiveMobilePhoneSignatureResponseTask.java new file mode 100644 index 00000000..d43a175f --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/ReceiveMobilePhoneSignatureResponseTask.java @@ -0,0 +1,369 @@ +/* + * Copyright 2021 A-SIT Plus GmbH + * AT-specific eIDAS Connector has been developed in a cooperation between EGIZ, + * A-SIT Plus GmbH, A-SIT, and Graz University of Technology. + * + * Licensed under the EUPL, Version 1.2 or - as soon they will be approved by + * the European Commission - subsequent versions of the EUPL (the "License"); + * You may not use this work except in compliance with the License. + * You may obtain a copy of the License at: + * https://joinup.ec.europa.eu/news/understanding-eupl-v12 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This product combines work with different licenses. See the "NOTICE" text + * file for details on the various modules and licenses. + * The "NOTICE" text file is part of the distribution. Any derivative works + * that you distribute must include a readable copy of the "NOTICE" text file. + */ + +package at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks; + +import static at.asitplus.eidas.specific.modules.auth.eidas.v2.idaustriaclient.IdAustriaClientAuthConstants.MODULE_NAME_FOR_LOGGING; + +import java.io.IOException; +import java.util.List; +import java.util.Set; +import java.util.stream.Collectors; +import java.util.stream.Stream; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import javax.xml.transform.TransformerException; + +import org.apache.commons.lang3.StringUtils; +import org.jetbrains.annotations.NotNull; +import org.opensaml.core.xml.io.MarshallingException; +import org.opensaml.messaging.decoder.MessageDecodingException; +import org.opensaml.saml.saml2.core.Response; +import org.opensaml.saml.saml2.core.StatusCode; +import org.opensaml.saml.saml2.metadata.IDPSSODescriptor; +import org.springframework.stereotype.Component; + +import at.asitplus.eidas.specific.modules.auth.eidas.v2.Constants; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.MatchedPersonResult; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.RegisterResult; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.SimpleEidasData; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.SimpleMobileSignatureData; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.InvalidUserInputException; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.WorkflowException; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.idaustriaclient.IdAustriaClientAuthConstants; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.idaustriaclient.IdAustriaClientAuthEventConstants; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.idaustriaclient.provider.IdAustriaClientAuthCredentialProvider; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.idaustriaclient.provider.IdAustriaClientAuthMetadataProvider; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.service.RegisterSearchService; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.service.RegisterSearchService.RegisterStatusResults; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.utils.MatchingTaskUtils; +import at.gv.egiz.eaaf.core.api.data.PvpAttributeDefinitions; +import at.gv.egiz.eaaf.core.api.idp.process.ExecutionContext; +import at.gv.egiz.eaaf.core.exceptions.EaafBuilderException; +import at.gv.egiz.eaaf.core.exceptions.TaskExecutionException; +import at.gv.egiz.eaaf.core.impl.data.Pair; +import at.gv.egiz.eaaf.core.impl.idp.auth.modules.AbstractAuthServletTask; +import at.gv.egiz.eaaf.modules.pvp2.api.binding.IDecoder; +import at.gv.egiz.eaaf.modules.pvp2.exception.CredentialsNotAvailableException; +import at.gv.egiz.eaaf.modules.pvp2.exception.SamlAssertionValidationExeption; +import at.gv.egiz.eaaf.modules.pvp2.exception.SamlSigningException; +import at.gv.egiz.eaaf.modules.pvp2.impl.binding.PostBinding; +import at.gv.egiz.eaaf.modules.pvp2.impl.binding.RedirectBinding; +import at.gv.egiz.eaaf.modules.pvp2.impl.message.InboundMessage; +import at.gv.egiz.eaaf.modules.pvp2.impl.message.PvpSProfileResponse; +import at.gv.egiz.eaaf.modules.pvp2.impl.utils.Saml2Utils; +import at.gv.egiz.eaaf.modules.pvp2.impl.validation.EaafUriCompare; +import at.gv.egiz.eaaf.modules.pvp2.impl.validation.TrustEngineFactory; +import at.gv.egiz.eaaf.modules.pvp2.impl.verification.SamlVerificationEngine; +import at.gv.egiz.eaaf.modules.pvp2.sp.exception.AssertionValidationExeption; +import at.gv.egiz.eaaf.modules.pvp2.sp.exception.AuthnResponseValidationException; +import at.gv.egiz.eaaf.modules.pvp2.sp.impl.utils.AssertionAttributeExtractor; +import lombok.extern.slf4j.Slf4j; + +/** + * Task that receives the SAML2 response from ID Austria system. + * This corresponds to Step 15 in the eIDAS Matching Concept. + * Input: + * <ul> + * <li>{@link Constants#DATA_SIMPLE_EIDAS} initial login data from user</li> + * <li>{@link Constants#DATA_INTERMEDIATE_RESULT} results from search in registers with personIdentifier</li> + * </ul> + * Output: + * <ul> + * <li>{@link Constants#DATA_RESULT_MATCHING_BPK} if one register result found</li> + * </ul> + * Transitions: + * <ul> + * <li>{@link GenerateAustrianResidenceGuiTask} if no results in registers were found</li> + * <li>{@link CreateIdentityLinkTask} if one exact match between initial register search (with MDS) data and + * register search with MPS data exists</li> + * </ul> + * + * @author tlenz + * @author ckollmann + */ +@Slf4j +@Component("ReceiveMobilePhoneSignatureResponseTask") +public class ReceiveMobilePhoneSignatureResponseTask extends AbstractAuthServletTask { + + private final SamlVerificationEngine samlVerificationEngine; + private final RegisterSearchService registerSearchService; + private final IdAustriaClientAuthCredentialProvider credentialProvider; + private final IdAustriaClientAuthMetadataProvider metadataProvider; + + private static final String ERROR_PVP_03 = "sp.pvp2.03"; + private static final String ERROR_PVP_05 = "sp.pvp2.05"; + private static final String ERROR_PVP_06 = "sp.pvp2.06"; + private static final String ERROR_PVP_08 = "sp.pvp2.08"; + private static final String ERROR_PVP_10 = "sp.pvp2.10"; + private static final String ERROR_PVP_11 = "sp.pvp2.11"; + private static final String ERROR_PVP_12 = "sp.pvp2.12"; + + private static final String ERROR_MSG_00 = "Receive INVALID PVP Response from ID Austria system"; + private static final String ERROR_MSG_01 = "Processing PVP response from 'ID Austria system' FAILED."; + private static final String ERROR_MSG_02 = "PVP response decryption FAILED. No credential found."; + private static final String ERROR_MSG_03 = "PVP response validation FAILED."; + + /** + * Creates the new task, with autowired dependencies from Spring. + */ + @SuppressWarnings("SpringJavaInjectionPointsAutowiringInspection") + public ReceiveMobilePhoneSignatureResponseTask(SamlVerificationEngine samlVerificationEngine, + RegisterSearchService registerSearchService, + IdAustriaClientAuthCredentialProvider credentialProvider, + IdAustriaClientAuthMetadataProvider metadataProvider) { + this.samlVerificationEngine = samlVerificationEngine; + this.registerSearchService = registerSearchService; + this.credentialProvider = credentialProvider; + this.metadataProvider = metadataProvider; + } + + @Override + public void execute(ExecutionContext executionContext, HttpServletRequest request, HttpServletResponse response) + throws TaskExecutionException { + try { + log.trace("Starting ReceiveMobilePhoneSignatureResponseTask"); + IDecoder decoder = loadDecoder(request); + EaafUriCompare comparator = loadComparator(request); + InboundMessage inboundMessage = decodeAndVerifyMessage(request, response, decoder, comparator); + Pair<PvpSProfileResponse, Boolean> processedMsg = validateAssertion((PvpSProfileResponse) inboundMessage); + if (processedMsg.getSecond()) { + // forward to next matching step in case of ID Autria authentication was stopped by user + executionContext.put(Constants.TRANSITION_TO_GENERATE_GUI_QUERY_AUSTRIAN_RESIDENCE_TASK, true); + return; + + } + + // validate SAML2 response + validateEntityId(inboundMessage); + log.info("Receive a valid assertion from IDP " + inboundMessage.getEntityID()); + + // load already existing information from session + SimpleEidasData eidasData = MatchingTaskUtils.getInitialEidasData(pendingReq); + RegisterStatusResults initialSearchResult = MatchingTaskUtils.getIntermediateMatchingResult(pendingReq); + + // extract user information from ID Austria authentication + AssertionAttributeExtractor extractor = new AssertionAttributeExtractor(processedMsg.getFirst().getResponse()); + SimpleMobileSignatureData simpleMobileSignatureData = getAuthDataFromInterfederation(extractor); + + // check if MDS from ID Austria authentication matchs to eIDAS authentication + if (!simpleMobileSignatureData.equalsSimpleEidasData(eidasData)) { + // user has cheated!? + throw new InvalidUserInputException("module.eidasauth.matching.05"); + + } + + // search entry in initial search result from steps before and build new RegisterSearchResult + RegisterStatusResults registerResult = new RegisterStatusResults(initialSearchResult.getOperationStatus(), + extractEntriesByBpk(initialSearchResult.getResultsZmr().stream(), simpleMobileSignatureData.getBpk()), + extractEntriesByBpk(initialSearchResult.getResultsErnp().stream(), simpleMobileSignatureData.getBpk())); + + if (registerResult.getResultCount() != 1) { + throw new WorkflowException("matchWithIDAustriaAuthentication", + "Suspect state detected. MDS matches to eIDAS authentication " + + "but register search-result with MDS contains #" + registerResult.getResultCount() + + " entry with bPK from ID Austria authentication", false); + + } else { + // perform kit operation + registerSearchService.step7aKittProcess(registerResult, eidasData); + + // store search result to re-used in CreateIdentityLink step, because there we need bPK and MDS + MatchingTaskUtils.storeFinalMatchingResult(pendingReq, + MatchedPersonResult.generateFormMatchingResult(registerResult.getResult(), + eidasData.getCitizenCountryCode())); + + } + + } catch (final AuthnResponseValidationException e) { + throw new TaskExecutionException(pendingReq, ERROR_MSG_03, e); + + } catch (MessageDecodingException | SecurityException | SamlSigningException e) { + //final String samlRequest = request.getParameter("SAMLRequest"); + //log.debug("Receive INVALID PVP Response from 'ms-specific eIDAS node': {}", + // samlRequest, null, e); + throw new TaskExecutionException(pendingReq, ERROR_MSG_00, + new AuthnResponseValidationException(ERROR_PVP_11, new Object[]{MODULE_NAME_FOR_LOGGING}, e)); + + } catch (IOException | MarshallingException | TransformerException e) { + log.debug("Processing PVP response from 'ms-specific eIDAS node' FAILED.", e); + throw new TaskExecutionException(pendingReq, ERROR_MSG_01, + new AuthnResponseValidationException(ERROR_PVP_12, new Object[]{MODULE_NAME_FOR_LOGGING, e.getMessage()}, e)); + + } catch (final CredentialsNotAvailableException e) { + log.debug("PVP response decryption FAILED. No credential found.", e); + throw new TaskExecutionException(pendingReq, ERROR_MSG_02, + new AuthnResponseValidationException(ERROR_PVP_10, new Object[]{MODULE_NAME_FOR_LOGGING}, e)); + + } catch (final Exception e) { + // todo catch ManualFixNecessaryException in any other way? + log.debug("PVP response validation FAILED. Msg:" + e.getMessage(), e); + throw new TaskExecutionException(pendingReq, ERROR_MSG_03, + new AuthnResponseValidationException(ERROR_PVP_12, new Object[]{MODULE_NAME_FOR_LOGGING, e.getMessage()}, e)); + + } + } + + private List<RegisterResult> extractEntriesByBpk(Stream<RegisterResult> stream, String bpk) { + return stream.filter(el -> bpk.equals(el.getBpk())).collect(Collectors.toList()); + + } + + @NotNull + private InboundMessage decodeAndVerifyMessage(HttpServletRequest request, HttpServletResponse response, + IDecoder decoder, EaafUriCompare comparator) throws Exception { + InboundMessage inboundMessage = (InboundMessage) decoder.decode(request, response, metadataProvider, + IDPSSODescriptor.DEFAULT_ELEMENT_NAME, comparator); + if (!inboundMessage.isVerified()) { + samlVerificationEngine.verify(inboundMessage, TrustEngineFactory.getSignatureKnownKeysTrustEngine( + metadataProvider)); + inboundMessage.setVerified(true); + } + return inboundMessage; + } + + private void validateEntityId(InboundMessage inboundMessage) throws AuthnResponseValidationException { + final String msNodeEntityID = authConfig + .getBasicConfiguration(IdAustriaClientAuthConstants.CONFIG_PROPS_ID_AUSTRIA_ENTITYID); + final String respEntityId = inboundMessage.getEntityID(); + if (!msNodeEntityID.equals(respEntityId)) { + log.warn("Response Issuer is not from valid 'ID Austria IDP'. Stopping ID Austria authentication ..."); + throw new AuthnResponseValidationException(ERROR_PVP_08, + new Object[]{MODULE_NAME_FOR_LOGGING, + inboundMessage.getEntityID()}); + } + } + + @NotNull + private EaafUriCompare loadComparator(HttpServletRequest request) throws AuthnResponseValidationException { + if (request.getMethod().equalsIgnoreCase("POST")) { + log.trace("Receive PVP Response from 'ID Austria system', by using POST-Binding."); + return new EaafUriCompare(pendingReq.getAuthUrl() + IdAustriaClientAuthConstants.ENDPOINT_POST); + } else if (request.getMethod().equalsIgnoreCase("GET")) { + log.trace("Receive PVP Response from 'ID Austria system', by using Redirect-Binding."); + return new EaafUriCompare(pendingReq.getAuthUrl() + IdAustriaClientAuthConstants.ENDPOINT_REDIRECT); + } else { + log.warn("Receive PVP Response from 'ID Austria system', but Binding {} is not supported.", request.getMethod()); + throw new AuthnResponseValidationException(ERROR_PVP_03, new Object[]{MODULE_NAME_FOR_LOGGING}); + } + } + + @NotNull + private IDecoder loadDecoder(HttpServletRequest request) throws AuthnResponseValidationException { + if (request.getMethod().equalsIgnoreCase("POST")) { + log.trace("Receive PVP Response from 'ID Austria system', by using POST-Binding."); + return new PostBinding(); + } else if (request.getMethod().equalsIgnoreCase("GET")) { + log.trace("Receive PVP Response from 'ID Austria system', by using Redirect-Binding."); + return new RedirectBinding(); + } else { + log.warn("Receive PVP Response from 'ID Austria system', but Binding {} is not supported.", request.getMethod()); + throw new AuthnResponseValidationException(ERROR_PVP_03, new Object[]{MODULE_NAME_FOR_LOGGING}); + } + } + + private Pair<PvpSProfileResponse, Boolean> validateAssertion(PvpSProfileResponse msg) + throws IOException, MarshallingException, TransformerException, + CredentialsNotAvailableException, AuthnResponseValidationException, SamlAssertionValidationExeption { + log.debug("Start PVP21 assertion processing... "); + final Response response = (Response) msg.getResponse(); + if (response.getStatus().getStatusCode().getValue().equals(StatusCode.SUCCESS)) { + samlVerificationEngine.validateAssertion(response, + credentialProvider.getMessageEncryptionCredential(), + pendingReq.getAuthUrl() + IdAustriaClientAuthConstants.ENDPOINT_METADATA, + MODULE_NAME_FOR_LOGGING); + msg.setSamlMessage(Saml2Utils.asDomDocument(response).getDocumentElement()); + revisionsLogger.logEvent(pendingReq, + IdAustriaClientAuthEventConstants.AUTHPROCESS_ID_AUSTRIA_RESPONSE_RECEIVED, + response.getID()); + return Pair.newInstance(msg, false); + } else { + log.info("Receive StatusCode {} from 'ms-specific eIDAS node'.", response.getStatus().getStatusCode().getValue()); + StatusCode subStatusCode = getSubStatusCode(response); + if (subStatusCode != null + && IdAustriaClientAuthConstants.SAML2_STATUSCODE_USERSTOP.equals(subStatusCode.getValue())) { + log.info("Find 'User-Stop operation' in SAML2 response. Stopping authentication process ... "); + return Pair.newInstance(msg, true); + } + + revisionsLogger.logEvent(pendingReq, + IdAustriaClientAuthEventConstants.AUTHPROCESS_ID_AUSTRIA_RESPONSE_RECEIVED_ERROR); + throw new AuthnResponseValidationException(ERROR_PVP_05, + new Object[]{MODULE_NAME_FOR_LOGGING, + response.getIssuer().getValue(), + response.getStatus().getStatusCode().getValue(), + response.getStatus().getStatusMessage().getMessage()}); + } + } + + /** + * Get SAML2 Sub-StatusCode if not <code>null</code>. + * + * @param samlResp SAML2 response + * @return Sub-StatusCode or <code>null</code> if it's not set + */ + private StatusCode getSubStatusCode(Response samlResp) { + if (samlResp.getStatus().getStatusCode().getStatusCode() != null + && StringUtils.isNotEmpty(samlResp.getStatus().getStatusCode().getStatusCode().getValue())) { + return samlResp.getStatus().getStatusCode().getStatusCode(); + } + return null; + } + + private SimpleMobileSignatureData getAuthDataFromInterfederation(AssertionAttributeExtractor extractor) + throws EaafBuilderException { + List<String> requiredAttributes = IdAustriaClientAuthConstants.DEFAULT_REQUIRED_PVP_ATTRIBUTE_NAMES; + SimpleMobileSignatureData.SimpleMobileSignatureDataBuilder builder = SimpleMobileSignatureData.builder(); + if (!extractor.containsAllRequiredAttributes(requiredAttributes)) { + log.warn("PVP Response from 'ID Austria node' contains not all requested attributes."); + AssertionValidationExeption e = new AssertionValidationExeption(ERROR_PVP_06, + new Object[]{MODULE_NAME_FOR_LOGGING}); + throw new EaafBuilderException(ERROR_PVP_06, null, e.getMessage(), e); + } + final Set<String> includedAttrNames = extractor.getAllIncludeAttributeNames(); + for (final String attrName : includedAttrNames) { + if (PvpAttributeDefinitions.BPK_NAME.equals(attrName)) { + builder.bpk(extractor.getSingleAttributeValue(attrName)); + } + if (PvpAttributeDefinitions.GIVEN_NAME_NAME.equals(attrName)) { + builder.givenName(extractor.getSingleAttributeValue(attrName)); + } + if (PvpAttributeDefinitions.PRINCIPAL_NAME_NAME.equals(attrName)) { + builder.familyName(extractor.getSingleAttributeValue(attrName)); + } + if (PvpAttributeDefinitions.BIRTHDATE_NAME.equals(attrName)) { + builder.dateOfBirth(extractor.getSingleAttributeValue(attrName)); + } + if (PvpAttributeDefinitions.EID_CITIZEN_EIDAS_QAA_LEVEL_NAME.equals(attrName)) { + MatchingTaskUtils.getAuthProcessDataWrapper(pendingReq).setQaaLevel( + extractor.getSingleAttributeValue(attrName)); + } + } + MatchingTaskUtils.getAuthProcessDataWrapper(pendingReq).setIssueInstant(extractor.getAssertionIssuingDate()); + return builder.build(); + + } + + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/ReceiveOtherLoginMethodGuiResponseTask.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/ReceiveOtherLoginMethodGuiResponseTask.java new file mode 100644 index 00000000..8431d968 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/tasks/ReceiveOtherLoginMethodGuiResponseTask.java @@ -0,0 +1,122 @@ +/* + * Copyright 2021 A-SIT Plus GmbH + * AT-specific eIDAS Connector has been developed in a cooperation between EGIZ, + * A-SIT Plus GmbH, A-SIT, and Graz University of Technology. + * + * Licensed under the EUPL, Version 1.2 or - as soon they will be approved by + * the European Commission - subsequent versions of the EUPL (the "License"); + * You may not use this work except in compliance with the License. + * You may obtain a copy of the License at: + * https://joinup.ec.europa.eu/news/understanding-eupl-v12 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * This product combines work with different licenses. See the "NOTICE" text + * file for details on the various modules and licenses. + * The "NOTICE" text file is part of the distribution. Any derivative works + * that you distribute must include a readable copy of the "NOTICE" text file. + */ + +package at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks; + +import java.util.Enumeration; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.apache.commons.lang.StringEscapeUtils; +import org.springframework.stereotype.Component; + +import at.asitplus.eidas.specific.modules.auth.eidas.v2.Constants; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.SelectedLoginMethod; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.InvalidUserInputException; +import at.gv.egiz.eaaf.core.api.idp.process.ExecutionContext; +import at.gv.egiz.eaaf.core.exceptions.TaskExecutionException; +import at.gv.egiz.eaaf.core.impl.idp.controller.tasks.AbstractLocaleAuthServletTask; +import lombok.extern.slf4j.Slf4j; + +/** + * Handles user's selection from {@link GenerateOtherLoginMethodGuiTask}. + * This corresponds to Steps 10, 14, 16 in the eIDAS Matching Concept. + * Input: + * <ul> + * <li>{@link Constants#DATA_SIMPLE_EIDAS} initial login data from user</li> + * <li>{@link Constants#DATA_INTERMEDIATE_RESULT} results from search in registers with personIdentifier</li> + * </ul> + * Output: + * <ul> + * <li>{@link Constants#DATA_RESULT_MATCHING_BPK} if one register result found</li> + * </ul> + * Transitions: + * <ul> + * <li>{@link GenerateMobilePhoneSignatureRequestTask} if selected by user</li> + * <li>{@link GenerateAustrianResidenceGuiTask} if selected by user</li> + * </ul> + * + * @author amarsalek + * @author ckollmann + */ +@Slf4j +@Component("ReceiveOtherLoginMethodGuiResponseTask") +public class ReceiveOtherLoginMethodGuiResponseTask extends AbstractLocaleAuthServletTask { + + @Override + public void executeWithLocale(ExecutionContext executionContext, HttpServletRequest request, + HttpServletResponse response) throws TaskExecutionException { + try { + SelectedLoginMethod selection = SelectedLoginMethod.valueOf(extractUserSelection(request)); + executionContext.put(Constants.REQ_SELECTED_LOGIN_METHOD_PARAMETER, selection); + transitionToNextTask(executionContext, selection); + + } catch (final IllegalArgumentException e) { + log.error("Parsing selected login method FAILED.", e); + throw new TaskExecutionException(pendingReq, "Parsing selected login method FAILED.", + new InvalidUserInputException("module.eidasauth.matching.98")); + + } catch (final Exception e) { + log.error("Parsing selected login method FAILED.", e); + throw new TaskExecutionException(pendingReq, "Parsing selected login method FAILED.", e); + + } + } + + private String extractUserSelection(HttpServletRequest request) throws InvalidUserInputException { + Enumeration<String> paramNames = request.getParameterNames(); + while (paramNames.hasMoreElements()) { + String paramName = paramNames.nextElement(); + if (Constants.REQ_SELECTED_LOGIN_METHOD_PARAMETER.equalsIgnoreCase(paramName)) { + return StringEscapeUtils.escapeHtml(request.getParameter(paramName)); + + } + } + + throw new InvalidUserInputException("module.eidasauth.matching.98"); + + } + + private void transitionToNextTask(ExecutionContext executionContext, SelectedLoginMethod selection) + throws InvalidUserInputException { + switch (selection) { + case EIDAS_LOGIN: + executionContext.put(Constants.TRANSITION_TO_GENERATE_EIDAS_LOGIN, true); + return; + + case MOBILE_PHONE_SIGNATURE_LOGIN: + executionContext.put(Constants.TRANSITION_TO_GENERATE_MOBILE_PHONE_SIGNATURE_REQUEST_TASK, true); + return; + + case NO_OTHER_LOGIN: + executionContext.put(Constants.TRANSITION_TO_GENERATE_GUI_QUERY_AUSTRIAN_RESIDENCE_TASK, true); + return; + + default: + throw new InvalidUserInputException("module.eidasauth.matching.98"); + + } + } + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/utils/EidasResponseUtils.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/utils/EidasResponseUtils.java index c8c5a069..6b541135 100644 --- a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/utils/EidasResponseUtils.java +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/utils/EidasResponseUtils.java @@ -19,10 +19,12 @@ * file for details on the various modules and licenses. * The "NOTICE" text file is part of the distribution. Any derivative works * that you distribute must include a readable copy of the "NOTICE" text file. -*/ + */ package at.asitplus.eidas.specific.modules.auth.eidas.v2.utils; +import java.text.ParseException; +import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.List; import java.util.regex.Matcher; @@ -39,6 +41,8 @@ import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableSet; import at.asitplus.eidas.specific.modules.auth.eidas.v2.Constants; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.exception.EidasAttributeException; +import at.gv.e_government.reference.namespace.persondata._20020228.PostalAddressType; import at.gv.egiz.eaaf.core.impl.data.Triple; import eu.eidas.auth.commons.attribute.AttributeDefinition; import eu.eidas.auth.commons.attribute.AttributeValue; @@ -49,13 +53,12 @@ import eu.eidas.auth.commons.protocol.eidas.impl.PostalAddress; public class EidasResponseUtils { private static final Logger log = LoggerFactory.getLogger(EidasResponseUtils.class); - public static final String PERSONALIDENIFIER_VALIDATION_PATTERN = "^[A-Z,a-z]{2}/[A-Z,a-z]{2}/.*"; /** * Validate a eIDAS PersonalIdentifier attribute value This validation is done * according to eIDAS SAML Attribute Profile - Section 2.2.3 Unique Identifier - * + * * @param uniqueID eIDAS attribute value of a unique identifier * @return true if the uniqueID matches to eIDAS to Unique Identifier * specification, otherwise false @@ -71,9 +74,9 @@ public class EidasResponseUtils { * Parse an eIDAS PersonalIdentifier attribute value into it components. This * processing is done according to eIDAS SAML Attribute Profile - Section 2.2.3 * Unique Identifier - * + * * @param uniqueID eIDAS attribute value of a unique identifier - * @return {@link Trible} that contains: <br> + * @return {@link Triple} that contains: <br> * First : citizen country <br> * Second: destination country <br> * Third : unique identifier <br> @@ -81,37 +84,40 @@ public class EidasResponseUtils { */ public static Triple<String, String, String> parseEidasPersonalIdentifier(String uniqueID) { if (!validateEidasPersonalIdentifier(uniqueID)) { - log.error("eIDAS attribute value for {} looks wrong formated. Value: {}", + log.error("eIDAS attribute value for {} looks wrong formated. Value: {}", Constants.eIDAS_ATTR_PERSONALIDENTIFIER, uniqueID); return null; } return Triple.newInstance(uniqueID.substring(0, 2), uniqueID.substring(3, 5), uniqueID.substring(6)); - } /** - * Get eIDAS attribute-values from eIDAS Node attributes. - * + * Get eIDAS attribute-values from eIDAS Node attributes. + * * @param attributeDefinition eIDAS attribute definition - * @param attributeValues Attributes from eIDAS response - * @return Set of attribute values. If more then one value than the first value contains the 'Latin' value. + * @param attributeValues Attributes from eIDAS response + * @return Set of attribute values. If more then one value than the first value + * contains the 'Latin' value. */ // TODO: check possible problem with nonLatinCharacters public static List<String> translateStringListAttribute(AttributeDefinition<?> attributeDefinition, - ImmutableSet<? extends AttributeValue<?>> attributeValues) { + @Nullable ImmutableSet<? extends AttributeValue<?>> attributeValues) { final List<String> stringListAttribute = new ArrayList<>(); - if (attributeValues != null) { - final AttributeValueMarshaller<?> attributeValueMarshaller = attributeDefinition - .getAttributeValueMarshaller(); - for (final AttributeValue<?> attributeValue : attributeValues.asList()) { + if (attributeValues == null) { + log.info("Can not extract infos from 'null' attribute value"); + + } else { + final AttributeValueMarshaller<?> attributeValueMarshaller = + attributeDefinition.getAttributeValueMarshaller(); + for (final AttributeValue<?> attributeValue : attributeValues) { String valueString = null; try { valueString = attributeValueMarshaller.marshal((AttributeValue) attributeValue); log.trace("Find attr: {} with value: {} nonLatinFlag: {} needTransliteration: {}", attributeDefinition.getFriendlyName(), attributeValue.toString(), - attributeValue.isNonLatinScriptAlternateVersion(), + attributeValue.isNonLatinScriptAlternateVersion(), AttributeValueTransliterator.needsTransliteration(valueString)); // if (attributeValue.isNonLatinScriptAlternateVersion()) { @@ -122,36 +128,47 @@ public class EidasResponseUtils { log.trace("Find 'needsTransliteration' flag. Setting this value at last list element ... "); stringListAttribute.add(valueString); - } + log.trace("Find attr: {} with value: {} nonLatinFlag: {} needTransliteration: {}", + attributeDefinition.getFriendlyName(), attributeValue.toString(), + attributeValue.isNonLatinScriptAlternateVersion(), + AttributeValueTransliterator.needsTransliteration(valueString)); + // if (attributeValue.isNonLatinScriptAlternateVersion()) { + if (!AttributeValueTransliterator.needsTransliteration(valueString)) { + stringListAttribute.add(0, valueString); + + } else { + log.trace("Find 'needsTransliteration' flag. Setting this value at last list element ... "); + stringListAttribute.add(valueString); + + } + } } catch (final AttributeValueMarshallingException e) { throw new IllegalStateException(e); } - } - log.trace("Extract values: {} for attr: {}", + } + log.trace("Extract values: {} for attr: {}", StringUtils.join(stringListAttribute, ","), attributeDefinition.getFriendlyName()); - - } else { - log.info("Can not extract infos from 'null' attribute value"); - + } return stringListAttribute; } + /** - * Convert eIDAS DateTime attribute to Java Object. - * + * Convert eIDAS DateTime attribute to Java Object. + * * @param attributeDefinition eIDAS attribute definition. - * @param attributeValues eIDAS attribute value + * @param attributeValues eIDAS attribute value * @return */ @Nullable public static DateTime translateDateAttribute(AttributeDefinition<?> attributeDefinition, - ImmutableList<? extends AttributeValue<?>> attributeValues) { + ImmutableList<? extends AttributeValue<?>> attributeValues) { if (attributeValues.size() != 0) { final AttributeValue<?> firstAttributeValue = attributeValues.get(0); return (DateTime) firstAttributeValue.getValue(); @@ -163,17 +180,216 @@ public class EidasResponseUtils { /** * Concert eIDAS Address attribute to Java object. - * + * * @param attributeDefinition eIDAS attribute definition - * @param attributeValues eIDAS attribute value + * @param attributeValues eIDAS attribute value * @return */ @Nullable public static PostalAddress translateAddressAttribute(AttributeDefinition<?> attributeDefinition, - ImmutableList<? extends AttributeValue<?>> attributeValues) { + ImmutableList<? extends AttributeValue<?>> attributeValues) { final AttributeValue<?> firstAttributeValue = attributeValues.get(0); return (PostalAddress) firstAttributeValue.getValue(); + } + + /** + * Post-Process the eIDAS CurrentAddress attribute. + * + * @param currentAddressObj eIDAS current address information + * @return current address or null if no attribute is available + * @throws EidasAttributeException if eIDAS attribute is of a wrong type + */ + public static PostalAddressType processAddress(Object currentAddressObj) throws EidasAttributeException { + if (currentAddressObj != null) { + if (currentAddressObj instanceof PostalAddress) { + final PostalAddressType result = new PostalAddressType(); + result.setPostalCode(((PostalAddress) currentAddressObj).getPostCode()); + result.setMunicipality(((PostalAddress) currentAddressObj).getPostName()); + // TODO: add more mappings + return result; + } else { + log.warn("eIDAS attr: " + Constants.eIDAS_ATTR_CURRENTADDRESS + " is of WRONG type"); + throw new EidasAttributeException(Constants.eIDAS_ATTR_CURRENTADDRESS); + } + } else { + log.debug("NO '" + Constants.eIDAS_ATTR_CURRENTADDRESS + "' attribute. Post-Processing skipped ... "); + } + return null; + } + /** + * Post-Process the eIDAS BirthName attribute. + * + * @param birthNameObj eIDAS birthname information + * @return birthName or null if no attribute is available + * @throws EidasAttributeException if eIDAS attribute is of a wrong type + */ + public static String processBirthName(Object birthNameObj) throws EidasAttributeException { + if (birthNameObj != null) { + if (birthNameObj instanceof String) { + return (String) birthNameObj; + } else { + log.warn("eIDAS attr: " + Constants.eIDAS_ATTR_BIRTHNAME + " is of WRONG type"); + throw new EidasAttributeException(Constants.eIDAS_ATTR_BIRTHNAME); + } + } else { + log.debug("NO '" + Constants.eIDAS_ATTR_BIRTHNAME + "' attribute. Post-Processing skipped ... "); + } + return null; } -} + /** + * Post-Process the eIDAS PlaceOfBirth attribute. + * + * @param placeOfBirthObj eIDAS Place-of-Birth information + * @return place of Birth or null if no attribute is available + * @throws EidasAttributeException if eIDAS attribute is of a wrong type + */ + public static String processPlaceOfBirth(Object placeOfBirthObj) throws EidasAttributeException { + if (placeOfBirthObj != null) { + if (placeOfBirthObj instanceof String) { + return (String) placeOfBirthObj; + + } else { + log.warn("eIDAS attr: " + Constants.eIDAS_ATTR_PLACEOFBIRTH + " is of WRONG type"); + throw new EidasAttributeException(Constants.eIDAS_ATTR_PLACEOFBIRTH); + + } + + } else { + log.debug("NO '" + Constants.eIDAS_ATTR_PLACEOFBIRTH + "' attribute. Post-Processing skipped ... "); + } + return null; + } + + /** + * Post-Process the eIDAS DateOfBirth attribute. + * + * @param dateOfBirthObj eIDAS date-of-birth attribute information + * @return formated user's date-of-birth + * @throws EidasAttributeException if NO attribute is available + */ + public static DateTime processDateOfBirth(Object dateOfBirthObj) throws EidasAttributeException { + if (!(dateOfBirthObj instanceof DateTime)) { + throw new EidasAttributeException(Constants.eIDAS_ATTR_DATEOFBIRTH); + } + return (DateTime) dateOfBirthObj; + } + + /** + * Post-Process the eIDAS DateOfBirth attribute to a string. + * + * @param dateOfBirthObj eIDAS date-of-birth attribute information + * @return formated user's date-of-birth as string + * @throws EidasAttributeException if NO attribute is available + */ + public static String processDateOfBirthToString(Object dateOfBirthObj) throws EidasAttributeException { + if (dateOfBirthObj instanceof String) { + try { + new SimpleDateFormat("yyyy-MM-dd").parse((String) dateOfBirthObj); + return (String) dateOfBirthObj; + } catch (ParseException e) { + throw new EidasAttributeException(Constants.eIDAS_ATTR_DATEOFBIRTH); + } + } + if (!(dateOfBirthObj instanceof DateTime)) { + throw new EidasAttributeException(Constants.eIDAS_ATTR_DATEOFBIRTH); + } + return new SimpleDateFormat("yyyy-MM-dd").format(((DateTime) dateOfBirthObj).toDate()); + } + + /** + * Post-Process the eIDAS GivenName attribute. + * + * @param givenNameObj eIDAS givenName attribute information + * @return formated user's givenname + * @throws EidasAttributeException if NO attribute is available + */ + public static String processGivenName(Object givenNameObj) throws EidasAttributeException { + if (!(givenNameObj instanceof String)) { + throw new EidasAttributeException(Constants.eIDAS_ATTR_CURRENTGIVENNAME); + } + return (String) givenNameObj; + } + + /** + * Post-Process the eIDAS FamilyName attribute. + * + * @param familyNameObj eIDAS familyName attribute information + * @return formated user's familyname + * @throws EidasAttributeException if NO attribute is available + */ + public static String processFamilyName(Object familyNameObj) throws EidasAttributeException { + if (!(familyNameObj instanceof String)) { + throw new EidasAttributeException(Constants.eIDAS_ATTR_CURRENTFAMILYNAME); + } + return (String) familyNameObj; + } + + /** + * Post-Process the eIDAS personal identifier attribute. + * + * @param personalIdentifierObj eIDAS personal identifier attribute-information + * @return formated user's full personal identifier + * @throws EidasAttributeException if NO attribute is available + */ + public static String processPersonalIdentifier(Object personalIdentifierObj) throws EidasAttributeException { + if (!(personalIdentifierObj instanceof String)) { + throw new EidasAttributeException(Constants.eIDAS_ATTR_PERSONALIDENTIFIER); + } + return (String) personalIdentifierObj; + } + + + /** + * Post-Process the eIDAS pseudonym to ERnB unique identifier. + * + * @param personalIdObj eIDAS PersonalIdentifierAttribute + * @return Unique personal identifier without country-code information + * @throws EidasAttributeException if NO attribute is available + */ + public static String processPseudonym(Object personalIdObj) throws EidasAttributeException { + if (!(personalIdObj instanceof String)) { + throw new EidasAttributeException(Constants.eIDAS_ATTR_PERSONALIDENTIFIER); + } + final Triple<String, String, String> eIdentifier = + EidasResponseUtils.parseEidasPersonalIdentifier((String) personalIdObj); + if (eIdentifier == null || eIdentifier.getThird() == null) { + throw new EidasAttributeException("Error processing eIdentifier"); + } + return eIdentifier.getThird(); + } + + /** + * Post-Process the eIDAS pseudonym to citizen country code. + * + * @param personalIdObj eIDAS PersonalIdentifierAttribute + * @return Citizen Country Code + * @throws EidasAttributeException if NO attribute is available + */ + public static String processCountryCode(Object personalIdObj) throws EidasAttributeException { + if (!(personalIdObj instanceof String)) { + throw new EidasAttributeException(Constants.eIDAS_ATTR_PERSONALIDENTIFIER); + } + final Triple<String, String, String> eIdentifier = + EidasResponseUtils.parseEidasPersonalIdentifier((String) personalIdObj); + if (eIdentifier == null || eIdentifier.getFirst() == null) { + throw new EidasAttributeException("Error processing eIdentifier"); + } + return eIdentifier.getFirst(); + } + + /** + * Post-Process the eIDAS TaxReference attribute. + * + * @param taxReferenceObj eIDAS TaxReference attribute information + * @return formated user's TaxReference + * @throws EidasAttributeException if NO attribute is available + */ + public static String processTaxReference(Object taxReferenceObj) throws EidasAttributeException { + if (!(taxReferenceObj instanceof String)) { + throw new EidasAttributeException(Constants.eIDAS_ATTR_TAXREFERENCE); + } + return (String) taxReferenceObj; + } +}
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/utils/MatchingTaskUtils.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/utils/MatchingTaskUtils.java new file mode 100644 index 00000000..c7631f53 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/utils/MatchingTaskUtils.java @@ -0,0 +1,169 @@ +package at.asitplus.eidas.specific.modules.auth.eidas.v2.utils; + +import at.asitplus.eidas.specific.modules.auth.eidas.v2.Constants; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.MatchedPersonResult; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.dao.SimpleEidasData; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.service.ICcSpecificEidProcessingService; +import at.asitplus.eidas.specific.modules.auth.eidas.v2.service.RegisterSearchService.RegisterStatusResults; +import at.gv.egiz.eaaf.core.api.IRequest; +import at.gv.egiz.eaaf.core.exceptions.EaafStorageException; +import at.gv.egiz.eaaf.core.impl.idp.auth.data.AuthProcessDataWrapper; +import com.google.common.collect.ImmutableMap; +import com.google.common.collect.ImmutableSet; +import eu.eidas.auth.commons.attribute.AttributeDefinition; +import eu.eidas.auth.commons.attribute.AttributeValue; +import eu.eidas.auth.commons.protocol.eidas.impl.PostalAddress; +import org.apache.commons.lang3.StringUtils; +import org.joda.time.DateTime; +import org.slf4j.Logger; +import org.springframework.lang.NonNull; + +import javax.annotation.Nullable; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +public class MatchingTaskUtils { + + /** + * Get eIDAS log-in information from session. + * + * @param pendingReq Current pendingRequest + * @return eIDAS infos or <code>null</code> if not exist + */ + @Nullable + public static SimpleEidasData getInitialEidasData(IRequest pendingReq) { + return getAuthProcessDataWrapper(pendingReq).getGenericDataFromSession( + Constants.DATA_SIMPLE_EIDAS, SimpleEidasData.class); + + } + + /** + * Set eIDAS log-in information to session. + * + * @param pendingReq Current pendingRequest + * @param eidasData infos from eIDAS Proxy-Service + * @throws EaafStorageException In case of data can not be add into session + */ + @Nullable + public static void storeInitialEidasData(IRequest pendingReq, SimpleEidasData eidasData) + throws EaafStorageException { + getAuthProcessDataWrapper(pendingReq).setGenericDataToSession(Constants.DATA_SIMPLE_EIDAS, eidasData); + + } + + /** + * Get intermediate matching result from session. + * + * @param pendingReq Current pendingRequest + * @return Intermediate matching result or <code>null</code> if not exist + */ + @Nullable + public static RegisterStatusResults getIntermediateMatchingResult(IRequest pendingReq) { + return getAuthProcessDataWrapper(pendingReq).getGenericDataFromSession(Constants.DATA_INTERMEDIATE_RESULT, + RegisterStatusResults.class); + + } + + /** + * Store intermediate matching result into session. + * + * @param pendingReq Current pendingRequest + * @param registerData Intermediate matching result information + * @throws EaafStorageException In case of data can not be add into session + */ + @Nullable + public static void storeIntermediateMatchingResult(IRequest pendingReq, RegisterStatusResults registerData) + throws EaafStorageException { + getAuthProcessDataWrapper(pendingReq).setGenericDataToSession( + Constants.DATA_INTERMEDIATE_RESULT, registerData); + + } + + /** + * Get intermediate matching result from session. + * + * @param pendingReq Current pendingRequest + * @return Intermediate matching result or <code>null</code> if not exist + */ + @Nullable + public static MatchedPersonResult getFinalMatchingResult(IRequest pendingReq) { + return getAuthProcessDataWrapper(pendingReq).getGenericDataFromSession(Constants.DATA_PERSON_MATCH_RESULT, + MatchedPersonResult.class); + + } + + /** + * Store intermediate matching result into session. + * + * @param pendingReq Current pendingRequest + * @param personInfos Person information after a successful match + * @throws EaafStorageException In case of data can not be add into session + */ + @Nullable + public static void storeFinalMatchingResult(IRequest pendingReq, MatchedPersonResult personInfos) + throws EaafStorageException { + getAuthProcessDataWrapper(pendingReq).setGenericDataToSession( + Constants.DATA_PERSON_MATCH_RESULT, personInfos); + + } + + /** + * Get holder for authentication information for the current process. + * + * @param pendingReq Current pendingRequest + * @return {@link AuthProcessDataWrapper} + */ + @NonNull + public static AuthProcessDataWrapper getAuthProcessDataWrapper(IRequest pendingReq) { + return pendingReq.getSessionData(AuthProcessDataWrapper.class); + + } + + /** + * Convert attributes from eIDAS Authn Response into a simple map, to be used from + * {@link ICcSpecificEidProcessingService#postProcess(Map)}. + */ + public static Map<String, Object> convertEidasAttrToSimpleMap( + ImmutableMap<AttributeDefinition<?>, ImmutableSet<? extends AttributeValue<?>>> attributeMap, Logger log) { + final Map<String, Object> result = new HashMap<>(); + for (final AttributeDefinition<?> el : attributeMap.keySet()) { + final Class<?> parameterizedType = el.getParameterizedType(); + if (DateTime.class.equals(parameterizedType)) { + final DateTime attribute = EidasResponseUtils.translateDateAttribute(el, attributeMap.get(el).asList()); + if (attribute != null) { + result.put(el.getFriendlyName(), attribute); + log.trace("Find attr '{}' with value: {}", el.getFriendlyName(), attribute); + } else { + log.info("Ignore empty 'DateTime' attribute"); + } + } else if (PostalAddress.class.equals(parameterizedType)) { + final PostalAddress addressAttribute = EidasResponseUtils + .translateAddressAttribute(el, attributeMap.get(el).asList()); + if (addressAttribute != null) { + result.put(el.getFriendlyName(), addressAttribute); + log.trace("Find attr '{}' with value: {}", el.getFriendlyName(), addressAttribute); + } else { + log.info("Ignore empty 'PostalAddress' attribute"); + } + } else { + final List<String> natPersonIdObj = EidasResponseUtils.translateStringListAttribute(el, attributeMap.get(el)); + final String stringAttr = natPersonIdObj.get(0); + if (StringUtils.isNotEmpty(stringAttr)) { + result.put(el.getFriendlyName(), stringAttr); + log.trace("Find attr '{}' with value: {}", el.getFriendlyName(), stringAttr); + } else { + log.info("Ignore empty 'String' attribute"); + } + } + } + log.debug("Receive #{} attributes with names: {}", result.size(), result.keySet()); + return result; + } + + private MatchingTaskUtils() { + //hide constructor in case of class contains only static methods + + } + +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/utils/VersionHolder.java b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/utils/VersionHolder.java new file mode 100644 index 00000000..dbe88d33 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/java/at/asitplus/eidas/specific/modules/auth/eidas/v2/utils/VersionHolder.java @@ -0,0 +1,40 @@ +package at.asitplus.eidas.specific.modules.auth.eidas.v2.utils; + +import java.util.Optional; + +import org.springframework.boot.autoconfigure.SpringBootApplication; +import org.springframework.context.ApplicationContext; + +/** + * SpringBoot based implementation of an application-version holder. + * + * @author tlenz + * + */ +public class VersionHolder { + + private final String version; + + /** + * Build up a holder that contains the current version of this application. + * + * @param context SprintBoot context + */ + public VersionHolder(ApplicationContext context) { + version = context.getBeansWithAnnotation(SpringBootApplication.class).entrySet().stream() + .findFirst() + .flatMap(es -> Optional.ofNullable(es.getValue().getClass().getPackage().getImplementationVersion())) + .orElse("unknown"); + + } + + /** + * Get version of this application. + * + * @return version + */ + public String getVersion() { + return version; + + } +} diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/eIDAS.Authentication.process.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/eIDAS.Authentication.process.xml index 55bb1ace..2a8a0141 100644 --- a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/eIDAS.Authentication.process.xml +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/eIDAS.Authentication.process.xml @@ -3,27 +3,66 @@ xmlns:pd="http://reference.e-government.gv.at/namespace/moa/process/definition/v1"> - <pd:Task id="createAuthnRequest" class="ConnecteIDASNodeTask" /> - <pd:Task id="receiveAuthnResponse" - class="ReceiveResponseFromeIDASNodeTask" async="true" /> - <pd:Task id="finalizeAuthentication" - class="FinalizeAuthenticationTask" /> - <pd:Task id="generateIdentityLink" - class="CreateIdentityLinkTask" /> + <pd:Task id="generateAuthnRequest" class="GenerateAuthnRequestTask" /> + <pd:Task id="receiveAuthnResponse" class="ReceiveAuthnResponseTask" async="true" /> + <pd:Task id="finalizeAuthentication" class="FinalizeAuthenticationTask" /> + <pd:Task id="generateIdentityLink" class="CreateIdentityLinkTask" /> + + <pd:Task id="initialRegisterSearch" class="InitialSearchTask" /> + + <pd:Task id="createNewErnpEntryTask" class="CreateNewErnpEntryTask" /> + <pd:Task id="generateOtherLoginMethodGuiTask" class="GenerateOtherLoginMethodGuiTask" /> + <pd:Task id="generateMobilePhoneSignatureRequestTask" class="GenerateMobilePhoneSignatureRequestTask" /> + <pd:Task id="receiveOtherLoginMethodGuiResponseTask" class="ReceiveOtherLoginMethodGuiResponseTask" /> + <pd:Task id="receiveMobilePhoneSignatureResponseTask" class="ReceiveMobilePhoneSignatureResponseTask" /> + <pd:Task id="generateAustrianResidenceGuiTask" class="GenerateAustrianResidenceGuiTask" /> + <pd:Task id="receiveAustrianResidenceGuiResponseTask" class="ReceiveAustrianResidenceGuiResponseTask" /> + <pd:Task id="generateAlternativeEidasAuthnRequest" class="GenerateAuthnRequestTask" /> + <pd:Task id="receiveAlternativeEidasAuthnRequest" class="ReceiveAuthnResponseAlternativeTask" async="true" /> + <pd:Task id="alternativeRegisterSearch" class="AlternativeSearchTask" /> <pd:StartEvent id="start" /> - - <pd:Transition from="start" - to="createAuthnRequest" /> - <pd:Transition from="createAuthnRequest" - to="receiveAuthnResponse" /> - <pd:Transition from="receiveAuthnResponse" - to="generateIdentityLink" /> - <pd:Transition from="generateIdentityLink" - to="finalizeAuthentication" /> - <pd:Transition from="finalizeAuthentication" - to="end" /> - + + <pd:Transition from="start" to="generateAuthnRequest" /> + <pd:Transition from="generateAuthnRequest" to="receiveAuthnResponse" /> + <pd:Transition from="receiveAuthnResponse" to="initialRegisterSearch" /> + <!-- TODO start--> + <pd:Transition conditionExpression="ctx['TASK_CreateNewErnpEntryTask']" + from="initialRegisterSearch" to="createNewErnpEntryTask" /> + <pd:Transition conditionExpression="ctx['TASK_GenerateOtherLoginMethodGuiTask']" + from="initialRegisterSearch" to="generateOtherLoginMethodGuiTask"/> + <pd:Transition from="initialRegisterSearch" to="generateIdentityLink" /> + + <pd:Transition from="generateOtherLoginMethodGuiTask" to="receiveOtherLoginMethodGuiResponseTask" /> + <pd:Transition conditionExpression="ctx['TASK_GenerateAlternativeEidasAuthn']" + from="receiveOtherLoginMethodGuiResponseTask" to="generateAlternativeEidasAuthnRequest" /> + <pd:Transition conditionExpression="ctx['TASK_GenerateMobilePhoneSignatureRequestTask']" + from="receiveOtherLoginMethodGuiResponseTask" to="generateMobilePhoneSignatureRequestTask" /> + <pd:Transition conditionExpression="ctx['TASK_GenerateAustrianResidenceGuiTask']" + from="receiveOtherLoginMethodGuiResponseTask" to="generateAustrianResidenceGuiTask" /> + + <pd:Transition from="generateAlternativeEidasAuthnRequest" to="receiveAlternativeEidasAuthnRequest" /> + <pd:Transition from="receiveAlternativeEidasAuthnRequest" to="alternativeRegisterSearch" /> + <pd:Transition conditionExpression="ctx['TASK_GenerateOtherLoginMethodGuiTask']" + from="alternativeRegisterSearch" to="generateIdentityLink" /> + <pd:Transition from="alternativeRegisterSearch" to="generateIdentityLink" /> + + <pd:Transition from="generateMobilePhoneSignatureRequestTask" to="receiveMobilePhoneSignatureResponseTask" /> + <pd:Transition conditionExpression="ctx['TASK_GenerateAustrianResidenceGuiTask']" + from="receiveMobilePhoneSignatureResponseTask" to="generateAustrianResidenceGuiTask" /> + <pd:Transition from="receiveMobilePhoneSignatureResponseTask" to="generateIdentityLink" /> + + <pd:Transition from="generateAustrianResidenceGuiTask" to="receiveAustrianResidenceGuiResponseTask" /> + <pd:Transition conditionExpression="ctx['TASK_CreateNewErnpEntryTask']" + from="receiveAustrianResidenceGuiResponseTask" to="createNewErnpEntryTask" /> + <pd:Transition from="receiveAustrianResidenceGuiResponseTask" to="generateIdentityLink" /> + + <pd:Transition from="createNewErnpEntryTask" to="generateIdentityLink" /> + <!-- TODO end--> + + <pd:Transition from="generateIdentityLink" to="finalizeAuthentication" /> + <pd:Transition from="finalizeAuthentication" to="end" /> + <pd:EndEvent id="end" /> </pd:ProcessDefinition> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/eidas_v2_auth.beans.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/eidas_v2_auth.beans.xml index 3b0cee54..85b49186 100644 --- a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/eidas_v2_auth.beans.xml +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/eidas_v2_auth.beans.xml @@ -11,33 +11,25 @@ <context:annotation-config /> - <import - resource="classpath:specificCommunicationDefinitionApplicationContext.xml" /> + <bean id="appVersionHolder" + class="at.asitplus.eidas.specific.modules.auth.eidas.v2.utils.VersionHolder" /> + + <bean id="eidasConnectorMessageSource" + class="at.asitplus.eidas.specific.modules.auth.eidas.v2.config.EidasConnectorMessageSource"/> <bean id="SZRClientForeIDAS" - class="at.asitplus.eidas.specific.modules.auth.eidas.v2.szr.SzrClient" /> + class="at.asitplus.eidas.specific.modules.auth.eidas.v2.clients.szr.SzrClient" /> - <bean id="specificConnectorAttributesFile" - class="java.lang.String"> - <constructor-arg value="eidas-attributes.xml" /> - </bean> + <bean id="zmrClient" + class="at.asitplus.eidas.specific.modules.auth.eidas.v2.clients.zmr.ZmrSoapClient" /> - <bean id="specificAdditionalAttributesFile" - class="java.lang.String"> - <constructor-arg value="additional-attributes.xml" /> - </bean> + <!-- bean id="ZmrClientForeIDAS" + class="at.asitplus.eidas.specific.modules.auth.eidas.v2.zmr.DummyZmrClient" /--> - <bean id="specificConnectorAttributesFileWithPath" - class="java.lang.String"> - <constructor-arg - value="#{specificConnectorConfigRepository}#{specificConnectorAttributesFile}" /> - </bean> - <bean id="specificConnectorAdditionalAttributesFileWithPath" - class="java.lang.String"> - <constructor-arg - value="#{specificConnectorConfigRepository}#{specificAdditionalAttributesFile}" /> - </bean> + <bean id="ErnbClientForeIDAS" + class="at.asitplus.eidas.specific.modules.auth.eidas.v2.ernp.DummyErnpClient" /> + <bean id="eIDASAuthModule" class="at.asitplus.eidas.specific.modules.auth.eidas.v2.EidasAuthenticationModulImpl"> @@ -55,7 +47,7 @@ ref="specificConnectorAdditionalAttributesFileWithPath" /> </bean> - <!-- <bean id="eIDASDataStore" class="at.asitplus.eidas.specific.modules.auth.eidas.v2.service.eIDASDataStore" + <!-- <bean id="eIDASDataStore" class="at.asitplus.eidas.specific.modules.auth.eidas.v2.service.eIDASDataStore" /> --> <bean id="authBlockSigningService" @@ -79,17 +71,86 @@ <property name="priority" value="0" /> </bean> + <bean id="deSpecificDetailSearchProcessor" + class="at.asitplus.eidas.specific.modules.auth.eidas.v2.handler.DeSpecificDetailSearchProcessor"> + </bean> + + <bean id="itSpecificDetailSearchProcessor" + class="at.asitplus.eidas.specific.modules.auth.eidas.v2.handler.ItSpecificDetailSearchProcessor"> + </bean> + + <bean id="registerSearchService" + class="at.asitplus.eidas.specific.modules.auth.eidas.v2.service.RegisterSearchService" /> + + <!-- ID Austria client specific services --> + <bean id="idAustriaClientAuthCredentialProvider" + class="at.asitplus.eidas.specific.modules.auth.eidas.v2.idaustriaclient.provider.IdAustriaClientAuthCredentialProvider" /> + + <bean id="idAustriaClientAuthMetadataProvider" + class="at.asitplus.eidas.specific.modules.auth.eidas.v2.idaustriaclient.provider.IdAustriaClientAuthMetadataProvider" /> + + <bean id="idAustriaClientMetadataHealthCheck" + class="at.asitplus.eidas.specific.modules.auth.eidas.v2.idaustriaclient.provider.IdAustriaClientAuthHealthCheck" /> + + <bean id="idAustriaClientAuthMetadataController" + class="at.asitplus.eidas.specific.modules.auth.eidas.v2.idaustriaclient.controller.IdAustriaClientAuthMetadataController" /> + + <bean id="idAustriaClientAuthSignalController" + class="at.asitplus.eidas.specific.modules.auth.eidas.v2.idaustriaclient.controller.IdAustriaClientAuthSignalController" /> + + <!-- Authentication Process Tasks --> - <bean id="ConnecteIDASNodeTask" + <bean id="GenerateAuthnRequestTask" class="at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks.GenerateAuthnRequestTask" scope="prototype" /> - <bean id="ReceiveResponseFromeIDASNodeTask" - class="at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks.ReceiveAuthnResponseTask" - scope="prototype" /> + <bean id="ReceiveAuthnResponseTask" + class="at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks.ReceiveAuthnResponseTask" + scope="prototype" /> + + <bean id="ReceiveAuthnResponseAlternativeTask" + class="at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks.ReceiveAuthnResponseAlternativeTask" + scope="prototype" /> <bean id="CreateIdentityLinkTask" class="at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks.CreateIdentityLinkTask" scope="prototype" /> + <bean id="InitialSearchTask" + class="at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks.InitialSearchTask" + scope="prototype" /> + + <bean id="AlternativeSearchTask" + class="at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks.AlternativeSearchTask" + scope="prototype" /> + + <bean id="CreateNewErnpEntryTask" + class="at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks.CreateNewErnpEntryTask" + scope="prototype" /> + + <bean id="GenerateOtherLoginMethodGuiTask" + class="at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks.GenerateOtherLoginMethodGuiTask" + scope="prototype" /> + + <bean id="GenerateMobilePhoneSignatureRequestTask" + class="at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks.GenerateMobilePhoneSignatureRequestTask" + scope="prototype" /> + + <bean id="ReceiveOtherLoginMethodGuiResponseTask" + class="at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks.ReceiveOtherLoginMethodGuiResponseTask" + scope="prototype" /> + + <bean id="ReceiveMobilePhoneSignatureResponseTask" + class="at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks.ReceiveMobilePhoneSignatureResponseTask" + scope="prototype" /> + + <bean id="GenerateAustrianResidenceGuiTask" + class="at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks.GenerateAustrianResidenceGuiTask" + scope="prototype" /> + + <bean id="ReceiveAustrianResidenceGuiResponseTask" + class="at.asitplus.eidas.specific.modules.auth.eidas.v2.tasks.ReceiveAustrianResidenceGuiResponseTask" + scope="prototype" /> + + </beans>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/eidas_v2_auth_ref_impl_config.beans.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/eidas_v2_auth_ref_impl_config.beans.xml new file mode 100644 index 00000000..cde9687e --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/eidas_v2_auth_ref_impl_config.beans.xml @@ -0,0 +1,39 @@ +<?xml version="1.0" encoding="UTF-8"?> +<beans xmlns="http://www.springframework.org/schema/beans" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:context="http://www.springframework.org/schema/context" + xmlns:tx="http://www.springframework.org/schema/tx" + xmlns:aop="http://www.springframework.org/schema/aop" + xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd + http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd + http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd + http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd"> + + <context:annotation-config /> + + <import + resource="classpath:specificCommunicationDefinitionApplicationContext.xml" /> + + <bean id="specificConnectorAttributesFile" + class="java.lang.String"> + <constructor-arg value="eidas-attributes.xml" /> + </bean> + + <bean id="specificAdditionalAttributesFile" + class="java.lang.String"> + <constructor-arg value="additional-attributes.xml" /> + </bean> + + <bean id="specificConnectorAttributesFileWithPath" + class="java.lang.String"> + <constructor-arg + value="#{specificConnectorConfigRepository}#{specificConnectorAttributesFile}" /> + </bean> + + <bean id="specificConnectorAdditionalAttributesFileWithPath" + class="java.lang.String"> + <constructor-arg + value="#{specificConnectorConfigRepository}#{specificAdditionalAttributesFile}" /> + </bean> + +</beans>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/messages/eidas_connector_message.properties b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/messages/eidas_connector_message.properties new file mode 100644 index 00000000..cfb48d57 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/messages/eidas_connector_message.properties @@ -0,0 +1,27 @@ +module.eidasauth.00=Wrong configuration. Missing property: {0} + +module.eidasauth.idaustria.02=eIDAS module has an error in configuration. Reason: {0} +module.eidasauth.idaustria.05=eIDAS module can not initialize SAML2 metadata provider for entityId: {0}. Reason: {1} + + +module.eidasauth.01=eIDAS module has an error in configuration: {0}. Reason: {1} + +module.eidasauth.03=eIDAS module has a general error during request pre-processing. Reason: {0} +module.eidasauth.04=eIDAS module has a general error during response post-processing. +module.eidasauth.06=eIDAS module was selected, but eIDAS is NOT enabled for SP: {0} + + +module.eidasauth.98=eIDAS module has an internal error. Reason: {0} +module.eidasauth.99=eIDAS module has an generic internal error. + +module.eidasauth.matching.00=Matching failed, because find more than one ZMR entries with one eIDAS personal-identifier +module.eidasauth.matching.01=Matching failed, because of an ZMR communication error. Reason: {0} +module.eidasauth.matching.02=Matching failed, because ZMR response contains historic information which is not supported. +module.eidasauth.matching.03=Matching failed in workflow step: {0} with error: {1} +module.eidasauth.matching.04=An error occurred while loading your data from official registers. Please contact the support. +module.eidasauth.matching.05=Matching failed, because result from alternative authentication-method does not match to eIDAS authentication +module.eidasauth.matching.06=Matching failed, because GUI form for matching by residence was invalid filled + + +module.eidasauth.matching.98=Matching failed, because of an invalid or unknown request parameter. +module.eidasauth.matching.99=Matching failed, because of an unexpected processing error. Reason: {0}
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/Muster/WienBezirkRequest.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/Muster/WienBezirkRequest.xml new file mode 100644 index 00000000..fae66796 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/Muster/WienBezirkRequest.xml @@ -0,0 +1,58 @@ +<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
+ <soapenv:Header>
+ <ns9:Security xmlns:ns9="http://schemas.xmlsoap.org/ws/2002/04/secext" xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns:ns6="http://bmi.gv.at/namespace/zmr-su/ernp/20050901#" xmlns:ns5="http://www.w3.org/2000/09/xmldsig#" xmlns:ns8="http://egov.gv.at/pvp1.xsd" xmlns:ns7="http://bmi.gv.at/namespace/zmr-su/gis/20070725#" xmlns:ns2="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" xmlns:ns4="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:ns3="http://bmi.gv.at/namespace/zmr-su/lmr/20050401#">
+ <ns8:pvpToken version="1.8">
+ <ns8:authenticate>
+ <ns8:participantId>AT:B:xxx</ns8:participantId>
+ <ns8:userPrincipal>
+ <ns8:userId>userid</ns8:userId>
+ <ns8:cn>full name</ns8:cn>
+ <ns8:gvOuId>AT:B:xxx</ns8:gvOuId>
+ <ns8:ou>Organisation</ns8:ou>
+ <ns8:gvSecClass>3</ns8:gvSecClass>
+ <ns8:gvGid>AT:B:112:PID:71923</ns8:gvGid>
+ <ns8:mail>e@mail</ns8:mail>
+ </ns8:userPrincipal>
+ </ns8:authenticate>
+ <ns8:authorize>
+ <ns8:role value="ZMR-Anfrage"></ns8:role>
+ </ns8:authorize>
+ <ns8:accounting></ns8:accounting>
+ </ns8:pvpToken>
+ </ns9:Security>
+ </soapenv:Header>
+ <soapenv:Body>
+ <Request xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns:ns6="http://bmi.gv.at/namespace/zmr-su/ernp/20050901#" xmlns:ns5="http://www.w3.org/2000/09/xmldsig#" xmlns:ns8="http://egov.gv.at/pvp1.xsd" xmlns:ns7="http://bmi.gv.at/namespace/zmr-su/gis/20070725#" xmlns:ns9="http://schemas.xmlsoap.org/ws/2002/04/secext" xmlns:ns2="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" xmlns:ns4="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:ns3="http://bmi.gv.at/namespace/zmr-su/lmr/20050401#">
+ <WorkflowInfoClient>
+ <ProzessName>GP_Abfragen</ProzessName>
+ <ProzessInstanzID>786700000003030</ProzessInstanzID>
+ <SequenzID>0</SequenzID>
+ <VorgangName>ZMR_VO_Adresssuche_im_GWR__6</VorgangName>
+ </WorkflowInfoClient>
+ <ClientInfo>
+ <Organisation>
+ <GemeindeNr>09999</GemeindeNr>
+ </Organisation>
+ <Client>ZMR3-GUI 1.2.36.2-</Client>
+ </ClientInfo>
+ <ns4:AdresssucheRequest>
+ <ns4:AdresssucheInfo>
+ <ns4:Suchart>ADRESSSUCHE</ns4:Suchart>
+ </ns4:AdresssucheInfo>
+ <ns4:Adressdaten>
+ <ns2:PostAdresse>
+ <ns2:Gemeinde>Wien</ns2:Gemeinde>
+ <ns2:Gemeindekennziffer>90001</ns2:Gemeindekennziffer>
+ <ns2:Ortschaft>Wien,Favoriten</ns2:Ortschaft>
+ <ns2:Zustelladresse>
+ <ns2:AdressRegisterEintrag></ns2:AdressRegisterEintrag>
+ </ns2:Zustelladresse>
+ </ns2:PostAdresse>
+ <Adressschluessel>
+ <OKZ>17232</OKZ>
+ </Adressschluessel>
+ </ns4:Adressdaten>
+ </ns4:AdresssucheRequest>
+ </Request>
+ </soapenv:Body>
+</soapenv:Envelope>
diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/Muster/WienBezirkResponse.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/Muster/WienBezirkResponse.xml new file mode 100644 index 00000000..20151698 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/Muster/WienBezirkResponse.xml @@ -0,0 +1,12422 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#">
+ <soapenv:Body>
+ <base:Response xmlns:ns10="http://bmi.gv.at/namespace/zmr-su/gis/20070725#" xmlns:ns11="http://egov.gv.at/pvp1.xsd" xmlns:ns12="http://schemas.xmlsoap.org/ws/2002/04/secext" xmlns:ns7="http://bmi.gv.at/namespace/zmr-su/lmr/20050401#" xmlns:ns8="http://www.w3.org/2000/09/xmldsig#" xmlns:ns9="http://bmi.gv.at/namespace/zmr-su/ernp/20050901#">
+ <base:WorkflowInfoServer>
+ <base:ProzessName>GP_Mindestsicherung</base:ProzessName>
+ <base:ProzessAnzeigeName>Mindestsicherung</base:ProzessAnzeigeName>
+ <base:ProzessInstanzID>786700000003031</base:ProzessInstanzID>
+ <base:SequenzID>0</base:SequenzID>
+ </base:WorkflowInfoServer>
+ <base:ServerInfo>
+ <base:GeneriertVon>ZMR-Server Version: 0.0</base:GeneriertVon>
+ <base:GeneriertAm>2021-05-27T10:58:13.555</base:GeneriertAm>
+ <base:ServerTransaktionNr>8581910000014155</base:ServerTransaktionNr>
+ </base:ServerInfo>
+ <zmr:AdresssucheResponse>
+ <zmr:AdresssucheAnfrage>
+ <zmr:AdresssucheInfo>
+ <zmr:Suchart>ADRESSSUCHE</zmr:Suchart>
+ </zmr:AdresssucheInfo>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ </zmr:AdresssucheAnfrage>
+ <base:Message>
+ <base:Number>30115</base:Number>
+ <base:Text>Adresssuche durchgeführt, mehrere Treffer zur Auswahl.</base:Text>
+ </base:Message>
+ <zmr:Adresssuchergebnis>
+ <zmr:Detailgrad>Strassenname</zmr:Detailgrad>
+ <base:GefundeneSaetze>589</base:GefundeneSaetze>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Absbergbrücke</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>910326</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Absberggasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900007</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Ada-Christen-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905509</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Adolf-Kirchl-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900025</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Adolf-Unger-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905520</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Ahornhof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>914201</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Alaudagasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905508</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Alfred-Adler-Straße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906627</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Alfred-Stix-Platz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900066</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Alma-Rosé-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905519</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Alpengasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900085</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Altdorferstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900092</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Alte Laaer Straße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900094</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Alxingergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900106</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Am Belvedere</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>912045</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Am Hauptbahnhof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901314</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Am Johannesberg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>909120</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Am Laaer Berg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>914005</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Amalienbad</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>922002</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Amarantgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900110</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Ampferergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900149</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>An der Hölle</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900175</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>An der Kuhtrift</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>909729</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>An der Ostbahn</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900180</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Angeligasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900198</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Anna-Boschek-Hof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>914348</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Anningerweg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>909142</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Anny-Angel-Katan-Weg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906981</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Anton-Balzer-Weg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>912511</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Anton-Hölzl-Hof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>914252</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Antonie-Alt-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906624</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Antonsplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900229</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Arnold-Holm-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905521</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Arsenalstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900260</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Arthaberplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900263</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Artholdgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906724</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Aspangbahn</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>990713</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>August-Forel-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900299</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>August-Kronberger-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900303</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>August-Motz-Rettungsstation</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>918434</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>August-Sigl-Straße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906124</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Bahnhof Matzleinsdorfer Platz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>990534</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Bahnlände</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900342</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Baron-Karl-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906085</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Battiggasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900371</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Beichlgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>909318</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Belgradplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900403</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Benischkegasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>909155</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Bergtaidingweg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905510</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Berlepschgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900434</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Bernadottegasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900435</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Bernhardtstalgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900439</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Berthold-Viertel-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900444</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Biererlgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900468</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Bildungscampus Sonnwendviertel</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>921151</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Birkenhof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>914203</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Birnbaumgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900480</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Bischofgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900486</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Bischofplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900487</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Bitterlichstraßenbrücke</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>910452</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Bitterlichstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900488</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Blaschkagasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>909124</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Bleichsteinerstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900498</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Bleigasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900499</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Bloch-Bauer-Promenade</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>912685</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Braheplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900552</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Brantinggasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900561</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Braunspergengasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900568</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Brigitte-Neumeister-Platz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906747</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Brunngraberhof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>914020</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Brunnweg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900626</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Brücke Ferdinand-Löwe-Straße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>910300</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Buchengasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900630</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Bullgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900650</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Burgenlandgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900654</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Bürgergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900641</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Canettistraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906628</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Carl-Appel-Straße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906526</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Carl-Prohaska-Platz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900678</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Ceralegasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900688</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Chiarigasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900694</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Clemens-Holzmeister-Straße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906529</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Collmanngasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>909153</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Columbusgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900724</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Columbusplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900725</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Computerstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905998</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Czeikestraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905930</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Dampfgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900769</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Daumegasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>909736</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Davidgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900786</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Dieselgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900826</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Doerenkampgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>909159</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Domaniggasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905947</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Donabaumgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900889</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Dr.-Eberle-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>909145</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Dr.-Franz-Pauer-Hof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>914206</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Durchlass Volksparkteich</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>910449</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Eckertgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900963</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Eckhelgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>909139</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Economogasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900966</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Eddagasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900967</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Eibesbrunnergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901002</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Eichenstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901009</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Eisenmengergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901025</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Eisenstadtplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901026</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Ellen-Key-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901040</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Emil-Fucik-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906513</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Emil-Fucik-Hof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>914309</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Emil-Hertzka-Platz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901050</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Emil-Ottenthal-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901052</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Emilie-Flöge-Weg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>912763</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Endlichergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901056</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Enge Lucken</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905538</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Erlachgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901086</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Erlachplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901087</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Ernst-Kirchweger-Hof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>914282</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Ernst-Ludwig-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901095</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Eschenallee</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901100</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Eschenkogelgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901102</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Ettenreichgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901113</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Eugenie-Fink-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905524</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Eva-Zilcher-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906721</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Adresszeile>Favoriten</Adresszeile>
+ <Strassenname>Evangelischer Friedhof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>919048</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>true</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Fatinitzaweg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901145</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Favoritenstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901147</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Favoritner Gewerbering</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>909900</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Felix-Grafe-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905533</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Ferdinand-Löwe-Straße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901173</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Fernkorngasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901177</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Feuchterslebengasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901183</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Feßlergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901181</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Filmstadttreppenbrücke</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>910444</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Filmteichstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901204</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Fingergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901195</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Fischhofgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>909135</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Adresszeile>Favoriten</Adresszeile>
+ <Strassenname>Fliederhof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905672</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>true</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Fliederhof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>914204</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Florian-Geyer-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901224</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Fontanastraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905936</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Franz-Jachym-Platz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906268</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Franz-Koci-Straße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905535</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Franz-Mika-Weg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>912560</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Franz-Schreker-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901278</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Franz-Schuh-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901281</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Franz-von-Sales-Steg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>910440</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Franzosenweg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901272</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Adresszeile>Favoriten</Adresszeile>
+ <Strassenname>Friedhofstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901312</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>true</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Friedrich-Adler-Weg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906120</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Friedrich-Knauer-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901321</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Friedrich-Teller-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901327</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Friesenplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901330</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Fritz-Hahn-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906719</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Fritz-Pregl-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901335</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Frödenplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901338</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Fußgehersteg über die A3</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>910448</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Fürstenhoferstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905933</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Gaißmayrgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901383</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Adresszeile>Favoriten</Adresszeile>
+ <Strassenname>Gartengasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905709</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>true</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Gartenschaugasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>909156</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Gartensteg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>910381</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Gasparoneweg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901405</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Geißfußgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901428</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Gellertgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901432</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Gellertplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901433</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Georg-Prentl-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901448</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Georg-Wiesmayer-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901451</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Georg-Wilhelm-Pabst-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905531</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>George-Washington-Hof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>914200</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Gerhard-Bronner-Straße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906629</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Gertrude-Fröhlich-Sandner-Straße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906626</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Gimniggasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901496</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Gombrichgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906701</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Graffgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901570</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Grenzackerstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901595</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Grohnergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906125</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Grundäckergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901650</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Gudrunstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901660</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Gutheil-Schoder-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901690</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Gußriegelstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901682</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Gödelgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>912783</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Göteborggasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901535</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Götzgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901538</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Güterzentrum Wien Süd</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>919100</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Hackergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906699</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Hantzenbergergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901798</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Hardtmuthgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901802</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Harry-Glück-Platz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906780</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Hasengasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901818</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Hasenöhrlstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901821</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Hauptwegbrücke</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>910443</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Hausergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901844</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Hebbelgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901857</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Hebbelplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901858</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Hederichgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901862</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Heimkehrergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901880</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Heinrich-Zeder-Weg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>912577</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Helmut-Zilk-Park</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>920314</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Hentzigasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901915</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Hermann-Mark-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906683</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Hermann-Schöne-Platz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901930</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Hermine-Fiala-Hof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>914259</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Herndlgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901937</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Herogasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901939</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Herschelgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901942</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Hertha-Firnberg-Straße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906253</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Herzgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901948</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Heuberggstättenstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901959</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Himberger Brücke</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>910075</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Himberger Straße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901972</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Hintere Liesingbachstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901980</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Hintschiggasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906123</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Hlawkagasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906722</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Hofherrgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902033</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Holbeingasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902054</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Holeyplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902056</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Hollitzergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902061</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Holzknechtstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902069</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Horrplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>900376</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Hubert-Gsur-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905526</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Hueberhof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>914084</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Hugo-Meisl-Weg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>912447</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Humboldtgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902101</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Humboldtplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902102</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Huppgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902106</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Hämmerlegasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901719</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Ignaz-Pleyel-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902122</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Indigoweg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902143</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Innovationsstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906582</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Inzersdorfer Straße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902154</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Jagdgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902171</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Jean-Jaures-Hof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>914086</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Jenny-Lind-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902198</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Johann-Friedl-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902221</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Johann-Friedl-Steg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>910079</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Johann-Pölzer-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905545</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Johannitergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902225</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Josef-Enslein-Platz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902241</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Jungbauerweg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>912451</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Jura-Soyfer-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905544</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Am Lindkogl</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916411</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Amarantgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916518</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG An der Rosiwalgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916701</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Anningerblick</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916362</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Arbeiter Schrebergarten Verein Favoriten</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916363</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Aus eigener Kraft</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916034</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Bitterlichstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916583</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Blumental Alt</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916039</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Blumental Neu</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916354</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Boschberg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916040</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Eremit</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916429</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Eschenkogel</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916412</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Ettenreich</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916067</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Favoriten</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916069</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Fischeralm</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916071</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Frohsinn</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916076</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Garten-und Tierfreunde</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916087</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Grenzacker</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916085</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Hentzigasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916437</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Heuberggstätten</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916428</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Karl-Fürstenhofer</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916419</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Kriegsinvalide Österreich</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916434</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Laaerwald Gruppe Ferstl</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916519</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Laxenburger Allee</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916410</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Liesingbach</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916451</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Löwygrube</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916361</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Mühlbach</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916427</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Rasenstadt</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916413</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Reifental</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916194</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Rudolfshöhe</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916210</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Rudolfshügel</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916211</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG SDL Laaerwald</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916516</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Südhang</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916498</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Unterer Gaisberg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916244</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Unterm Sender</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916517</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Weichselgarten</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916259</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Weichseltal</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916463</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Wienerberg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916477</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Wienerfeld</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916414</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Wilhelmshöhe</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916261</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Zum Acker</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916702</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG Zwillingsee</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916356</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG ÖBB Maxing Schwimmschulteich</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916526</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG ÖBB Wien-Süd 2054</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916435</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>KLG ÖBB Zweigverein 2066</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>916525</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Kaistraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902323</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Karl-Diener-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902364</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Karl-Popper-Straße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906622</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Karl-Wrba-Hof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>914224</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Karmarschgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902392</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Karplusgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902397</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Katharinengasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902404</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Keldorfergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902421</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Kempelengasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902425</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Kennergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902428</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Keplergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902430</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Keplerplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902431</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Kerschbaumgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906381</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Kiesewettergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902451</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Adresszeile>Favoriten</Adresszeile>
+ <Strassenname>Kirchengasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902463</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>true</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Kirsteweg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905810</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Kittelsengasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902473</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Kiurinagasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902474</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Klasterskygasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>909143</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Klausenburger Straße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902484</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Klederinger Brücke</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>910081</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Klederinger Straße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902489</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Klemens-Dorn-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902506</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Knöllgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902535</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Koliskogasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902572</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Kolowratgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>909157</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Kornauthgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>909972</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Kossmatplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902618</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Adresszeile>Favoriten</Adresszeile>
+ <Strassenname>Kreuzgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902654</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>true</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Kreuzsteg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>910078</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Kronawettergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902667</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Kudlichgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902683</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Kundratstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902708</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Kur-und Erholungspark Laaer Berg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>920103</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Kurbadstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902758</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Kurt-Tichy-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>909138</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Kästenbaumgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902304</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Kästenbaumtunnel</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>910771</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Käthe-Odwody-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>912608</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Köglergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902546</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Laaer Berg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>918154</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Laaer Wald</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905673</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Laaer-Berg-Straße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902724</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Laaer-Wald-Straße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902725</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Laaerbergbad</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>922018</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Laimäckergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902741</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Landgutgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902754</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Langsulzgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902771</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Laubeplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902789</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Laxenburger Brücke</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>910293</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Laxenburger Straße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902802</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Lecherweg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902812</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Leebgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902817</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Lehmgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902822</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Leibnizgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902828</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Leopoldsdorfer Brücke</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>910076</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Leopoldsdorfer Straße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902856</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Libussagasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902879</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Liesingbachstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902899</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Lindkogelgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902913</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Lippmanngasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902926</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Ludwig-von-Höhnel-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>902992</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Lundgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903000</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Löwyweg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906101</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Macholdastraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906214</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Maiklgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903025</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Maillygasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903027</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Malborghetgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903032</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Malmögasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903036</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Mannhartgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903044</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Mannschildgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903046</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Marconiweg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903060</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Margareta-Heinrich-Weg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905931</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Margarete-Hilferding-Hof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>914338</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Margaretengürtel</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903065</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Maria-Kuhn-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906527</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Maria-Lassnig-Straße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906720</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Maria-Rekker-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905920</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Maria-und-Rudolf-Fischer-Hof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>914113</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Marianne-Pollak-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906723</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Marizaweg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>909943</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Matzleinsdorf Frachtenbahnhof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>990507</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Max-Fleischer-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905561</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Max-Mauermann-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903137</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Medeagasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903150</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Migerkastraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903208</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Mithlingerhof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>914120</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Moritz-Seeler-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905528</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Moselgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>909152</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Muhrengasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903315</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Munchgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903318</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Munchplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903319</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Mundygasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903320</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Munthegasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903321</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Murbangasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906167</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Männertreugasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903017</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Mühlgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903296</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Mühlstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903303</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Naderstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903338</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Neilreichgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903355</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Neuburgergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905503</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Neugrabenstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903381</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Neusetzgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903391</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Nielrosenweg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905704</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Ober-Laa Frachtenbahnhof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>990508</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Ober-Laaer Friedhof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>919030</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Ober-Laaer Platz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903466</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Obere Grenzgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905588</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Oberlaaer Steg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>910077</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Oberlaaer Straße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903467</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Olaus-Petri-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903498</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Olof-Palme-Hof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>914278</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Oppenheimgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903510</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Oppenheimweg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905609</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Ordengasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903514</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Otto-Geißler-Platz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906390</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Otto-Probst-Platz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906211</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Otto-Probst-Straße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906062</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Otto-Willmann-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905816</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Ottokar-Fischer-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906766</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Palisagasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903550</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Paltramplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903556</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Passage Gudrunstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>910311</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Passage Triester Straße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>910320</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Passinigasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903584</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Patrubangasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903589</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Per-Albin-Hansson-Straße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903617</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Pernerstorfergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903623</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Pernerstorferhof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>914126</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Pernerstorfersteg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>910382</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Peutlmühlensteg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>910049</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Pichelmayergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903676</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Pickgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906274</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Pirchangasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903693</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Planetengasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903700</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Popovweg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903729</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Puchsbaumgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903789</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Puchsbaumplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903790</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Pölzerhof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>914130</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Quaringasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903807</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Quarinhof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>914135</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Quellenplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903809</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Quellenstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903810</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>R.-Platzer-Hof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>914194</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Raaber-Bahn-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903815</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Radnitzkygasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903830</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Ramsaygasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903845</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Randhartingergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903848</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Ranzonigasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903853</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Raxstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903875</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Rechberggasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903878</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Reichenbachgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903892</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Reisingergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903912</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Remystraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903921</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Restaurantbrücke</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>910442</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Reumannplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903933</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Ricarda-Huch-Weg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905815</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Rickard-Lindström-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903943</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Rieplstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903953</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Rissaweggasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903963</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Rosiwalgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904037</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Rotdornallee</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904043</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Rotenhofgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904046</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Rothneusiedler Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904058</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Rothneusiedl</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>918350</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Roubiczekgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>909140</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Rudolf-Friemel-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906580</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Rudolf-Kalab-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>909929</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Rudolf-Skodak-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>901402</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Rustenfeldgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905587</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Rädda-Barnen-Platz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903828</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>SMZ-Süd Kaiser-Franz-Josef-Spital</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>921005</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>SP-Favoritner-Athletik-Club</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>922224</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>SP-Haus des Sportes</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>922223</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>SP-Laaerberg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>922225</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>SP-Rapid Oberlaa</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>922222</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>SP-Stadt Wien</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>922226</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>SP-WSTW-Verkehrsbetriebe</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>922227</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>SP-Wienerberg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>922228</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Sahulkastraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904112</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Saligergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904119</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Salvatorianerplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904128</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Sanzingasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904164</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Sapphogasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904166</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Saßmanngasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904169</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Schautagasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904206</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Scheugasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904232</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Scheunenstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904233</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Schleiergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904272</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Schrackbrücke</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>910450</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Schrankenberggasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904348</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Schrödingerhof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>914147</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Schröttergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904361</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Schwarzgrubergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904415</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Schönygasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906050</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Sebastianbrücke</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>910080</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Sedlacekweg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>912448</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Segnerstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904459</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Selma-Lagerlöf-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904476</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Senefeldergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904482</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Senfgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904483</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Servaesgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904487</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Sibeliusstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904497</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Siccardsburggasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904498</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Sickingengasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904500</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Sindelargasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904543</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Sindinggasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904544</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Sissy-Löwinger-Weg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906727</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Soesergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904562</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Sonderadresse 10. Bezirk</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>918910</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Sonnleithnergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904586</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Sonnwendgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904587</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Starkegasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904661</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Staudiglgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904665</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Stefan-Fadinger-Platz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904710</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Steg Absberggasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>910375</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Steg an der Kaistraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>910074</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Steineichengasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904690</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Steinschötelgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904703</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Stella-Kadmon-Weg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>909937</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Steudelgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904717</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Stinygasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904728</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Stockholmer Platz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904731</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Suchenwirtplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904803</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Susi-Nicoletti-Weg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>909137</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Südtiroler Platz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904807</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Tegnérgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904843</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Adresszeile>Favoriten</Adresszeile>
+ <Strassenname>Teichgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904845</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>true</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Tesarekplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906212</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Tessingasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904859</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Theodor-Sickel-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904875</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Thermalbad Oberlaa</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>922007</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Thomas-Münzer-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904885</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Trambauerstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904929</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Triester Straße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904954</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Troststraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904962</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Twin Tower</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>918483</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Tyrnauer Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904989</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>U-Bahn Station Alaudagasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>990134</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>U-Bahn Station Altes Landgut</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>990133</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>U-Bahn Station Keplerplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>990041</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>U-Bahn Station Neulaa</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>990135</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>U-Bahn Station Oberlaa</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>990136</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>U-Bahn Station Reumannplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>990027</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>U-Bahn Station Troststraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>990132</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Uetzgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904995</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Uhlandgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904996</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Uhligstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>904997</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Undsetgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905008</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Unter-Laaer Straße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905027</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Unter-Meidlinger Straße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905028</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Untere Bahnlände</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906292</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Untere Kaistraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906293</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Unterfahrung Laaer-Berg-Straße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>910313</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Unterführung Laaer Wald</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>910447</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Unterführung Neilreichgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>910123</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Unterlaaer Platz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906159</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Unterlaa</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>918298</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Upsalagasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905030</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Urselbrunnengasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905036</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Vally-Weigl-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906700</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Van-der-Nüll-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905040</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Vettersgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905072</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Victor-Gruen-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906047</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Viktor-Adler-Hof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>914169</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Viktor-Adler-Markt</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>917024</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Viktor-Adler-Platz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905075</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Vitalygasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906716</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Vivaldigasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>909971</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Vogentalgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905102</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Volkmargasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905109</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Volkspark-Laaerberge</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>920047</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Vollnhoferplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906611</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Vondrakplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906369</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Waldgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905140</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Waldmüllerpark</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>920091</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Waltenhofengasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905164</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Walter-Lindenbaum-Gasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905573</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Watzlawickweg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>912762</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Weichselbaumgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905199</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Weidelstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905202</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Weigandhof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905698</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Weitmosergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905239</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Weizengasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905241</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Weldengasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905243</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Wendstattgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905574</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Wiedner Gürtel</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905278</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Wielandgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905281</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Wielandplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905282</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Wienerbergerplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>907013</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Wienerbergstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905284</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Wienerfeldgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905285</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Wiesenthalgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906048</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Wilczekgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905310</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Wilhelm-Pinka-Platz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>906257</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Windtenstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905343</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Wirerstraße</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905354</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Wöhlergasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905367</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Zelda-Kaplan-Weg</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>912782</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Zentralverschiebebahnhof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>990547</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Zohmanngasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905474</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Zur Spinnerin</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905487</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Zwölfpfenniggasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905502</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Zülowgasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>905572</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Zürcher Hof</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>914180</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ </zmr:Adresssuchergebnis>
+ </zmr:AdresssucheResponse>
+ </base:Response>
+ </soapenv:Body>
+</soapenv:Envelope>
diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/Muster/WienBezirkStrasseRequest.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/Muster/WienBezirkStrasseRequest.xml new file mode 100644 index 00000000..5e10d725 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/Muster/WienBezirkStrasseRequest.xml @@ -0,0 +1,59 @@ +<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
+ <soapenv:Header>
+ <ns9:Security xmlns:ns9="http://schemas.xmlsoap.org/ws/2002/04/secext" xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns:ns6="http://bmi.gv.at/namespace/zmr-su/ernp/20050901#" xmlns:ns5="http://www.w3.org/2000/09/xmldsig#" xmlns:ns8="http://egov.gv.at/pvp1.xsd" xmlns:ns7="http://bmi.gv.at/namespace/zmr-su/gis/20070725#" xmlns:ns2="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" xmlns:ns4="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:ns3="http://bmi.gv.at/namespace/zmr-su/lmr/20050401#">
+ <ns8:pvpToken version="1.8">
+ <ns8:authenticate>
+ <ns8:participantId>AT:B:xxx</ns8:participantId>
+ <ns8:userPrincipal>
+ <ns8:userId>userid</ns8:userId>
+ <ns8:cn>full name</ns8:cn>
+ <ns8:gvOuId>AT:B:xxx</ns8:gvOuId>
+ <ns8:ou>Organisation</ns8:ou>
+ <ns8:gvSecClass>3</ns8:gvSecClass>
+ <ns8:gvGid>AT:B:112:PID:71923</ns8:gvGid>
+ <ns8:mail>e@mail</ns8:mail>
+ </ns8:userPrincipal>
+ </ns8:authenticate>
+ <ns8:authorize>
+ <ns8:role value="ZMR-Anfrage"></ns8:role>
+ </ns8:authorize>
+ <ns8:accounting></ns8:accounting>
+ </ns8:pvpToken>
+ </ns9:Security>
+ </soapenv:Header>
+ <soapenv:Body>
+ <Request xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns:ns6="http://bmi.gv.at/namespace/zmr-su/ernp/20050901#" xmlns:ns5="http://www.w3.org/2000/09/xmldsig#" xmlns:ns8="http://egov.gv.at/pvp1.xsd" xmlns:ns7="http://bmi.gv.at/namespace/zmr-su/gis/20070725#" xmlns:ns9="http://schemas.xmlsoap.org/ws/2002/04/secext" xmlns:ns2="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" xmlns:ns4="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:ns3="http://bmi.gv.at/namespace/zmr-su/lmr/20050401#">
+ <WorkflowInfoClient>
+ <ProzessName>GP_Abfragen</ProzessName>
+ <ProzessInstanzID>786700000003031</ProzessInstanzID>
+ <SequenzID>0</SequenzID>
+ <VorgangName>ZMR_VO_Adresssuche_im_GWR__6</VorgangName>
+ </WorkflowInfoClient>
+ <ClientInfo>
+ <Organisation>
+ <GemeindeNr>09999</GemeindeNr>
+ </Organisation>
+ <Client>ZMR3-GUI 1.2.36.2-</Client>
+ </ClientInfo>
+ <ns4:AdresssucheRequest>
+ <ns4:AdresssucheInfo>
+ <ns4:Suchart>ADRESSSUCHE</ns4:Suchart>
+ </ns4:AdresssucheInfo>
+ <ns4:Adressdaten>
+ <ns2:PostAdresse>
+ <ns2:Gemeinde>Wien</ns2:Gemeinde>
+ <ns2:Gemeindekennziffer>90001</ns2:Gemeindekennziffer>
+ <ns2:Ortschaft>Wien,Favoriten</ns2:Ortschaft>
+ <ns2:Zustelladresse>
+ <ns2:Strassenname>Pal*</ns2:Strassenname>
+ <ns2:AdressRegisterEintrag></ns2:AdressRegisterEintrag>
+ </ns2:Zustelladresse>
+ </ns2:PostAdresse>
+ <Adressschluessel>
+ <OKZ>17232</OKZ>
+ </Adressschluessel>
+ </ns4:Adressdaten>
+ </ns4:AdresssucheRequest>
+ </Request>
+ </soapenv:Body>
+</soapenv:Envelope>
diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/Muster/WienBezirkStrasseResponse.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/Muster/WienBezirkStrasseResponse.xml new file mode 100644 index 00000000..f7f3a7c6 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/Muster/WienBezirkStrasseResponse.xml @@ -0,0 +1,92 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#">
+ <soapenv:Body>
+ <base:Response xmlns:ns10="http://bmi.gv.at/namespace/zmr-su/gis/20070725#" xmlns:ns11="http://egov.gv.at/pvp1.xsd" xmlns:ns12="http://schemas.xmlsoap.org/ws/2002/04/secext" xmlns:ns7="http://bmi.gv.at/namespace/zmr-su/lmr/20050401#" xmlns:ns8="http://www.w3.org/2000/09/xmldsig#" xmlns:ns9="http://bmi.gv.at/namespace/zmr-su/ernp/20050901#">
+ <base:WorkflowInfoServer>
+ <base:ProzessName>GP_Mindestsicherung</base:ProzessName>
+ <base:ProzessAnzeigeName>Mindestsicherung</base:ProzessAnzeigeName>
+ <base:ProzessInstanzID>786700000003032</base:ProzessInstanzID>
+ <base:SequenzID>0</base:SequenzID>
+ </base:WorkflowInfoServer>
+ <base:ServerInfo>
+ <base:GeneriertVon>ZMR-Server Version: 0.0</base:GeneriertVon>
+ <base:GeneriertAm>2021-05-27T10:58:33.454</base:GeneriertAm>
+ <base:ServerTransaktionNr>8581910000014159</base:ServerTransaktionNr>
+ </base:ServerInfo>
+ <zmr:AdresssucheResponse>
+ <zmr:AdresssucheAnfrage>
+ <zmr:AdresssucheInfo>
+ <zmr:Suchart>ADRESSSUCHE</zmr:Suchart>
+ </zmr:AdresssucheInfo>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Pal*</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ </zmr:AdresssucheAnfrage>
+ <base:Message>
+ <base:Number>30115</base:Number>
+ <base:Text>Adresssuche durchgeführt, mehrere Treffer zur Auswahl.</base:Text>
+ </base:Message>
+ <zmr:Adresssuchergebnis>
+ <zmr:Detailgrad>Strassenname</zmr:Detailgrad>
+ <base:GefundeneSaetze>2</base:GefundeneSaetze>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Palisagasse</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903550</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Paltramplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903556</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ </zmr:Adresssuchergebnis>
+ </zmr:AdresssucheResponse>
+ </base:Response>
+ </soapenv:Body>
+</soapenv:Envelope>
diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/Muster/WienRequest.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/Muster/WienRequest.xml new file mode 100644 index 00000000..aa32c91c --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/Muster/WienRequest.xml @@ -0,0 +1,52 @@ +<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
+ <soapenv:Header>
+ <ns9:Security xmlns:ns9="http://schemas.xmlsoap.org/ws/2002/04/secext" xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns:ns6="http://bmi.gv.at/namespace/zmr-su/ernp/20050901#" xmlns:ns5="http://www.w3.org/2000/09/xmldsig#" xmlns:ns8="http://egov.gv.at/pvp1.xsd" xmlns:ns7="http://bmi.gv.at/namespace/zmr-su/gis/20070725#" xmlns:ns2="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" xmlns:ns4="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:ns3="http://bmi.gv.at/namespace/zmr-su/lmr/20050401#">
+ <ns8:pvpToken version="1.8">
+ <ns8:authenticate>
+ <ns8:participantId>AT:B:xxx</ns8:participantId>
+ <ns8:userPrincipal>
+ <ns8:userId>userid</ns8:userId>
+ <ns8:cn>full name</ns8:cn>
+ <ns8:gvOuId>AT:B:xxx</ns8:gvOuId>
+ <ns8:ou>Organisation</ns8:ou>
+ <ns8:gvSecClass>3</ns8:gvSecClass>
+ <ns8:gvGid>AT:B:112:PID:71923</ns8:gvGid>
+ <ns8:mail>e@mail</ns8:mail>
+ </ns8:userPrincipal>
+ </ns8:authenticate>
+ <ns8:authorize>
+ <ns8:role value="ZMR-Anfrage"></ns8:role>
+ </ns8:authorize>
+ <ns8:accounting></ns8:accounting>
+ </ns8:pvpToken>
+ </ns9:Security>
+ </soapenv:Header>
+ <soapenv:Body>
+ <Request xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns:ns6="http://bmi.gv.at/namespace/zmr-su/ernp/20050901#" xmlns:ns5="http://www.w3.org/2000/09/xmldsig#" xmlns:ns8="http://egov.gv.at/pvp1.xsd" xmlns:ns7="http://bmi.gv.at/namespace/zmr-su/gis/20070725#" xmlns:ns9="http://schemas.xmlsoap.org/ws/2002/04/secext" xmlns:ns2="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" xmlns:ns4="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:ns3="http://bmi.gv.at/namespace/zmr-su/lmr/20050401#">
+ <WorkflowInfoClient>
+ <ProzessName>GP_Abfragen</ProzessName>
+ <VorgangName>ZMR_VO_Adresssuche_im_GWR__6</VorgangName>
+ </WorkflowInfoClient>
+ <ClientInfo>
+ <Organisation>
+ <GemeindeNr>09999</GemeindeNr>
+ </Organisation>
+ <Client>ZMR3-GUI 1.2.36.2-</Client>
+ </ClientInfo>
+ <ns4:AdresssucheRequest>
+ <ns4:AdresssucheInfo>
+ <ns4:Suchart>ADRESSSUCHE</ns4:Suchart>
+ </ns4:AdresssucheInfo>
+ <ns4:Adressdaten>
+ <ns2:PostAdresse>
+ <ns2:Gemeinde>wien</ns2:Gemeinde>
+ <ns2:Zustelladresse>
+ <ns2:AdressRegisterEintrag></ns2:AdressRegisterEintrag>
+ </ns2:Zustelladresse>
+ </ns2:PostAdresse>
+ <Adressschluessel></Adressschluessel>
+ </ns4:Adressdaten>
+ </ns4:AdresssucheRequest>
+ </Request>
+ </soapenv:Body>
+</soapenv:Envelope>
diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/Muster/WienResponse.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/Muster/WienResponse.xml new file mode 100644 index 00000000..8a246423 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/Muster/WienResponse.xml @@ -0,0 +1,478 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#">
+ <soapenv:Body>
+ <base:Response xmlns:ns10="http://bmi.gv.at/namespace/zmr-su/gis/20070725#" xmlns:ns11="http://egov.gv.at/pvp1.xsd" xmlns:ns12="http://schemas.xmlsoap.org/ws/2002/04/secext" xmlns:ns7="http://bmi.gv.at/namespace/zmr-su/lmr/20050401#" xmlns:ns8="http://www.w3.org/2000/09/xmldsig#" xmlns:ns9="http://bmi.gv.at/namespace/zmr-su/ernp/20050901#">
+ <base:WorkflowInfoServer>
+ <base:ProzessName>GP_Mindestsicherung</base:ProzessName>
+ <base:ProzessAnzeigeName>Mindestsicherung</base:ProzessAnzeigeName>
+ <base:ProzessInstanzID>786700000003030</base:ProzessInstanzID>
+ <base:SequenzID>0</base:SequenzID>
+ </base:WorkflowInfoServer>
+ <base:ServerInfo>
+ <base:GeneriertVon>ZMR-Server Version: 0.0</base:GeneriertVon>
+ <base:GeneriertAm>2021-05-27T10:53:35.703</base:GeneriertAm>
+ <base:ServerTransaktionNr>8581910000014151</base:ServerTransaktionNr>
+ </base:ServerInfo>
+ <zmr:AdresssucheResponse>
+ <zmr:AdresssucheAnfrage>
+ <zmr:AdresssucheInfo>
+ <zmr:Suchart>ADRESSSUCHE</zmr:Suchart>
+ </zmr:AdresssucheInfo>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Gemeinde>wien</Gemeinde>
+ </PostAdresse>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ </zmr:AdresssucheAnfrage>
+ <base:Message>
+ <base:Number>30115</base:Number>
+ <base:Text>Adresssuche durchgeführt, mehrere Treffer zur Auswahl.</base:Text>
+ </base:Message>
+ <zmr:Adresssuchergebnis>
+ <zmr:Detailgrad>Ortschaft</zmr:Detailgrad>
+ <base:GefundeneSaetze>23</base:GefundeneSaetze>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Alsergrund</Ortschaft>
+ <Zustelladresse>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17231</base:OKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Brigittenau</Ortschaft>
+ <Zustelladresse>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17242</base:OKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Donaustadt</Ortschaft>
+ <Zustelladresse>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17244</base:OKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Döbling</Ortschaft>
+ <Zustelladresse>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17241</base:OKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Floridsdorf</Ortschaft>
+ <Zustelladresse>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17243</base:OKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Hernals</Ortschaft>
+ <Zustelladresse>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17239</base:OKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Hietzing</Ortschaft>
+ <Zustelladresse>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17235</base:OKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Innere Stadt</Ortschaft>
+ <Zustelladresse>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17223</base:OKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Josefstadt</Ortschaft>
+ <Zustelladresse>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17230</base:OKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Landstraße</Ortschaft>
+ <Zustelladresse>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17225</base:OKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Leopoldstadt</Ortschaft>
+ <Zustelladresse>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17224</base:OKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Liesing</Ortschaft>
+ <Zustelladresse>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17245</base:OKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Margareten</Ortschaft>
+ <Zustelladresse>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17227</base:OKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Mariahilf</Ortschaft>
+ <Zustelladresse>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17228</base:OKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Meidling</Ortschaft>
+ <Zustelladresse>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17234</base:OKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Neubau</Ortschaft>
+ <Zustelladresse>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17229</base:OKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Ottakring</Ortschaft>
+ <Zustelladresse>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17238</base:OKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Penzing</Ortschaft>
+ <Zustelladresse>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17236</base:OKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Rudolfsheim-Fünfhaus</Ortschaft>
+ <Zustelladresse>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17237</base:OKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Simmering</Ortschaft>
+ <Zustelladresse>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17233</base:OKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Wieden</Ortschaft>
+ <Zustelladresse>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17226</base:OKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Währing</Ortschaft>
+ <Zustelladresse>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag/>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17240</base:OKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ </zmr:Adresssuchergebnis>
+ </zmr:AdresssucheResponse>
+ </base:Response>
+ </soapenv:Body>
+</soapenv:Envelope>
diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/Muster/WienStrasseAuswahlRequest.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/Muster/WienStrasseAuswahlRequest.xml new file mode 100644 index 00000000..f00859b6 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/Muster/WienStrasseAuswahlRequest.xml @@ -0,0 +1,60 @@ +<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
+ <soapenv:Header>
+ <ns9:Security xmlns:ns9="http://schemas.xmlsoap.org/ws/2002/04/secext" xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns:ns6="http://bmi.gv.at/namespace/zmr-su/ernp/20050901#" xmlns:ns5="http://www.w3.org/2000/09/xmldsig#" xmlns:ns8="http://egov.gv.at/pvp1.xsd" xmlns:ns7="http://bmi.gv.at/namespace/zmr-su/gis/20070725#" xmlns:ns2="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" xmlns:ns4="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:ns3="http://bmi.gv.at/namespace/zmr-su/lmr/20050401#">
+ <ns8:pvpToken version="1.8">
+ <ns8:authenticate>
+ <ns8:participantId>AT:B:xxx</ns8:participantId>
+ <ns8:userPrincipal>
+ <ns8:userId>userid</ns8:userId>
+ <ns8:cn>full name</ns8:cn>
+ <ns8:gvOuId>AT:B:xxx</ns8:gvOuId>
+ <ns8:ou>Organisation</ns8:ou>
+ <ns8:gvSecClass>3</ns8:gvSecClass>
+ <ns8:gvGid>AT:B:112:PID:71923</ns8:gvGid>
+ <ns8:mail>e@mail</ns8:mail>
+ </ns8:userPrincipal>
+ </ns8:authenticate>
+ <ns8:authorize>
+ <ns8:role value="ZMR-Anfrage"></ns8:role>
+ </ns8:authorize>
+ <ns8:accounting></ns8:accounting>
+ </ns8:pvpToken>
+ </ns9:Security>
+ </soapenv:Header>
+ <soapenv:Body>
+ <Request xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns:ns6="http://bmi.gv.at/namespace/zmr-su/ernp/20050901#" xmlns:ns5="http://www.w3.org/2000/09/xmldsig#" xmlns:ns8="http://egov.gv.at/pvp1.xsd" xmlns:ns7="http://bmi.gv.at/namespace/zmr-su/gis/20070725#" xmlns:ns9="http://schemas.xmlsoap.org/ws/2002/04/secext" xmlns:ns2="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" xmlns:ns4="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:ns3="http://bmi.gv.at/namespace/zmr-su/lmr/20050401#">
+ <WorkflowInfoClient>
+ <ProzessName>GP_Abfragen</ProzessName>
+ <ProzessInstanzID>786700000003032</ProzessInstanzID>
+ <SequenzID>0</SequenzID>
+ <VorgangName>ZMR_VO_Adresssuche_im_GWR__6</VorgangName>
+ </WorkflowInfoClient>
+ <ClientInfo>
+ <Organisation>
+ <GemeindeNr>09999</GemeindeNr>
+ </Organisation>
+ <Client>ZMR3-GUI 1.2.36.2-</Client>
+ </ClientInfo>
+ <ns4:AdresssucheRequest>
+ <ns4:AdresssucheInfo>
+ <ns4:Suchart>ADRESSSUCHE</ns4:Suchart>
+ </ns4:AdresssucheInfo>
+ <ns4:Adressdaten>
+ <ns2:PostAdresse>
+ <ns2:Gemeinde>Wien</ns2:Gemeinde>
+ <ns2:Gemeindekennziffer>90001</ns2:Gemeindekennziffer>
+ <ns2:Ortschaft>Wien,Favoriten</ns2:Ortschaft>
+ <ns2:Zustelladresse>
+ <ns2:Strassenname>Paltramplatz</ns2:Strassenname>
+ <ns2:AdressRegisterEintrag></ns2:AdressRegisterEintrag>
+ </ns2:Zustelladresse>
+ </ns2:PostAdresse>
+ <Adressschluessel>
+ <OKZ>17232</OKZ>
+ <SKZ>903556</SKZ>
+ </Adressschluessel>
+ </ns4:Adressdaten>
+ </ns4:AdresssucheRequest>
+ </Request>
+ </soapenv:Body>
+</soapenv:Envelope>
diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/Muster/WienStrasseAuswahlResponse.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/Muster/WienStrasseAuswahlResponse.xml new file mode 100644 index 00000000..359b6cbb --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/Muster/WienStrasseAuswahlResponse.xml @@ -0,0 +1,311 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#">
+ <soapenv:Body>
+ <base:Response xmlns:ns10="http://bmi.gv.at/namespace/zmr-su/gis/20070725#" xmlns:ns11="http://egov.gv.at/pvp1.xsd" xmlns:ns12="http://schemas.xmlsoap.org/ws/2002/04/secext" xmlns:ns7="http://bmi.gv.at/namespace/zmr-su/lmr/20050401#" xmlns:ns8="http://www.w3.org/2000/09/xmldsig#" xmlns:ns9="http://bmi.gv.at/namespace/zmr-su/ernp/20050901#">
+ <base:WorkflowInfoServer>
+ <base:ProzessName>GP_Mindestsicherung</base:ProzessName>
+ <base:ProzessAnzeigeName>Mindestsicherung</base:ProzessAnzeigeName>
+ <base:ProzessInstanzID>786700000003033</base:ProzessInstanzID>
+ <base:SequenzID>0</base:SequenzID>
+ </base:WorkflowInfoServer>
+ <base:ServerInfo>
+ <base:GeneriertVon>ZMR-Server Version: 0.0</base:GeneriertVon>
+ <base:GeneriertAm>2021-05-27T11:10:51.129</base:GeneriertAm>
+ <base:ServerTransaktionNr>8581910000014163</base:ServerTransaktionNr>
+ </base:ServerInfo>
+ <zmr:AdresssucheResponse>
+ <zmr:AdresssucheAnfrage>
+ <zmr:AdresssucheInfo>
+ <zmr:Suchart>ADRESSSUCHE</zmr:Suchart>
+ </zmr:AdresssucheInfo>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Paltramplatz</Strassenname>
+ <Abgabestelle>false</Abgabestelle>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903556</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>false</base:GBDUntteil>
+ </zmr:Adressdaten>
+ </zmr:AdresssucheAnfrage>
+ <base:Message>
+ <base:Number>30115</base:Number>
+ <base:Text>Adresssuche durchgeführt, mehrere Treffer zur Auswahl.</base:Text>
+ </base:Message>
+ <zmr:Adresssuchergebnis>
+ <zmr:Detailgrad>Orientierungsnummer</zmr:Detailgrad>
+ <base:GefundeneSaetze>10</base:GefundeneSaetze>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Postleitzahl>1100</Postleitzahl>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Paltramplatz</Strassenname>
+ <Orientierungsnummer>1</Orientierungsnummer>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag>
+ <Adresscode>6823056</Adresscode>
+ </AdressRegisterEintrag>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressstatus>HXX1XXWXX</base:Adressstatus>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903556</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>true</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Postleitzahl>1100</Postleitzahl>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Paltramplatz</Strassenname>
+ <Orientierungsnummer>2</Orientierungsnummer>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag>
+ <Adresscode>6823057</Adresscode>
+ </AdressRegisterEintrag>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressstatus>HXX1XXWXX</base:Adressstatus>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903556</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>true</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Postleitzahl>1100</Postleitzahl>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Paltramplatz</Strassenname>
+ <Orientierungsnummer>3</Orientierungsnummer>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag>
+ <Adresscode>6823058</Adresscode>
+ </AdressRegisterEintrag>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressstatus>HXX1XXWXX</base:Adressstatus>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903556</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>true</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Postleitzahl>1100</Postleitzahl>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Paltramplatz</Strassenname>
+ <Orientierungsnummer>4</Orientierungsnummer>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag>
+ <Adresscode>6823059</Adresscode>
+ </AdressRegisterEintrag>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressstatus>HXX1XXWXX</base:Adressstatus>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903556</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>true</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Postleitzahl>1100</Postleitzahl>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Paltramplatz</Strassenname>
+ <Orientierungsnummer>5-6</Orientierungsnummer>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag>
+ <Adresscode>6823060</Adresscode>
+ </AdressRegisterEintrag>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressstatus>HXX1XXWXX</base:Adressstatus>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903556</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>true</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Postleitzahl>1100</Postleitzahl>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Paltramplatz</Strassenname>
+ <Orientierungsnummer>7</Orientierungsnummer>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag>
+ <Adresscode>6823061</Adresscode>
+ </AdressRegisterEintrag>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressstatus>HXX1XXWXX</base:Adressstatus>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903556</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>I</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>true</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Postleitzahl>1100</Postleitzahl>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Paltramplatz</Strassenname>
+ <Orientierungsnummer>8</Orientierungsnummer>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag>
+ <Adresscode>6823062</Adresscode>
+ </AdressRegisterEintrag>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressstatus>HXX1XXWXX</base:Adressstatus>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903556</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>true</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Postleitzahl>1100</Postleitzahl>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Paltramplatz</Strassenname>
+ <Orientierungsnummer>9</Orientierungsnummer>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag>
+ <Adresscode>6823063</Adresscode>
+ </AdressRegisterEintrag>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressstatus>HXX1XXWXX</base:Adressstatus>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903556</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>I</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>true</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Postleitzahl>1100</Postleitzahl>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Paltramplatz</Strassenname>
+ <Orientierungsnummer>10</Orientierungsnummer>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag>
+ <Adresscode>6823064</Adresscode>
+ </AdressRegisterEintrag>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressstatus>HXX1XXWXX</base:Adressstatus>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903556</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>H</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>true</base:GBDUntteil>
+ </zmr:Adressdaten>
+ <zmr:Adressdaten>
+ <PostAdresse>
+ <Staatscode>AUT</Staatscode>
+ <Staatsname>Österreich</Staatsname>
+ <Postleitzahl>1100</Postleitzahl>
+ <Gemeinde>Wien</Gemeinde>
+ <Gemeindekennziffer>90001</Gemeindekennziffer>
+ <Ortschaft>Wien,Favoriten</Ortschaft>
+ <Zustelladresse>
+ <Strassenname>Paltramplatz</Strassenname>
+ <Orientierungsnummer>11</Orientierungsnummer>
+ <Abgabestelle>false</Abgabestelle>
+ <AdressRegisterEintrag>
+ <Adresscode>6823065</Adresscode>
+ </AdressRegisterEintrag>
+ </Zustelladresse>
+ </PostAdresse>
+ <base:Adressstatus>HXX1XXWXX</base:Adressstatus>
+ <base:Adressschluessel>
+ <base:OKZ>17232</base:OKZ>
+ <base:SKZ>903556</base:SKZ>
+ </base:Adressschluessel>
+ <base:HauptIdent>I</base:HauptIdent>
+ <base:NameZuteil>false</base:NameZuteil>
+ <base:GBDUntteil>true</base:GBDUntteil>
+ </zmr:Adressdaten>
+ </zmr:Adresssuchergebnis>
+ </zmr:AdresssucheResponse>
+ </base:Response>
+ </soapenv:Body>
+</soapenv:Envelope>
diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/wsdl/Messages.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/wsdl/Messages.xsd new file mode 100644 index 00000000..03b711f1 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/wsdl/Messages.xsd @@ -0,0 +1,50 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Name: Messages.xsd +Zweck: Definiert die Message-Datentypen fuer Services Request und Response (siehe Service.wsdl) +Author(s): Tschurtschenthaler Thomas, ZMR-SU + +Aenderungshistorie: +2010-09-29 teo: Schnittstellen-Liste aktualisiert +2005-05-24 tsch: BPKPruefung hinzugefuegt +2005-02-02 tsch: QKZBearbeiten, QKZAuswertung hinzugefuegt +2005-01-14 tsch: Aviso aktivieren entfernt, Gleichstzungtabelle Warten hinzugefuegt +2004-11-26 tsch: Adoption, Steuerfahndung, Aviso freischalten/aktivieren hinzugefuegt +2004-11-22 tsch: Gerichtskommissaerabfrage hinzugefuegt +2004-09-28 tsch: Wehrfplichtigenanfrage, ablaufende Auskunfssperren-Suche hinzugefuegt +2004-09-27 tsch: Storno/Korrektur hinzugefuegt +2004-09-09 tsch: SZR-Vorgaenge sowie Person trennen/zusammenfuehren hinzugefuegt +2004-07-30 tsch: Erstellung +--> + +<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" + elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + + <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" schemaLocation="../xsd/zmr/ZMRProxy.xsd"/> + + + <xsd:complexType name="RequestType"> + <xsd:sequence> + <xsd:element ref="base:WorkflowInfoClient"/> + <xsd:element ref="base:ClientInfo"/> + <xsd:choice> + <xsd:element ref="zmr:AdresssucheRequest"/> + </xsd:choice> + </xsd:sequence> + </xsd:complexType> + + <xsd:complexType name="ResponseType"> + <xsd:sequence> + <xsd:element ref="base:WorkflowInfoServer"/> + <xsd:element ref="base:ServerInfo"/> + <xsd:choice> + <xsd:element ref="zmr:AdresssucheResponse"/> + </xsd:choice> + </xsd:sequence> + </xsd:complexType> + +</xsd:schema> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/wsdl/Service.wsdl b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/wsdl/Service.wsdl new file mode 100644 index 00000000..3dbeabc7 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/wsdl/Service.wsdl @@ -0,0 +1,62 @@ +<definitions xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:wsse="http://schemas.xmlsoap.org/ws/2002/04/secext"
+ xmlns="http://schemas.xmlsoap.org/wsdl/"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" name="Service">
+ <types>
+ <xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#" targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#">
+ <xsd:import namespace="http://schemas.xmlsoap.org/ws/2002/04/secext" schemaLocation="secext.xsd"/>
+ <xsd:include schemaLocation="Messages.xsd"/>
+ <xsd:element name="Request" type="RequestType"/>
+ <xsd:element name="Response" type="ResponseType"/>
+ <xsd:element name="ServiceFault">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="ErrorCode"/>
+ <xsd:element ref="ErrorMessage"/>
+ <xsd:element ref="ServerTransaktionNr"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ </xsd:schema>
+ </types>
+ <message name="ServiceRequest">
+ <part name="in" element="base:Request"/>
+ <part name="WSSEHeader" element="wsse:Security"/>
+ </message>
+ <message name="ServiceResponse">
+ <part name="out" element="base:Response"/>
+ </message>
+ <message name="ServiceFault">
+ <part name="servicefault" element="base:ServiceFault"/>
+ </message>
+ <portType name="ServicePort">
+ <operation name="service">
+ <input message="base:ServiceRequest"/>
+ <output message="base:ServiceResponse"/>
+ <fault name="servicefault" message="base:ServiceFault"/>
+ </operation>
+ </portType>
+ <binding name="ServiceBinding" type="base:ServicePort">
+ <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
+ <operation name="service">
+ <soap:operation style="document"/>
+ <input>
+ <soap:header message="base:ServiceRequest" part="WSSEHeader" use="literal"/>
+ <soap:body use="literal" parts="in"/>
+ </input>
+ <output>
+ <soap:body use="literal"/>
+ </output>
+ <fault name="servicefault">
+ <soap:fault name="servicefault" use="literal"/>
+ </fault>
+ </operation>
+ </binding>
+ <service name="Service">
+ <port name="Service" binding="base:ServiceBinding">
+ <soap:address location="https://pvawp.bmi.gv.at/bmi.gv.at/soap/zmr/soap/ZMRService"/>
+ </port>
+ </service>
+</definitions>
diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/wsdl/secext.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/wsdl/secext.xsd new file mode 100644 index 00000000..1005b12a --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/wsdl/secext.xsd @@ -0,0 +1,150 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Legal Disclaimer
+
+The presentation, distribution or other dissemination of the information
+contained in this specification is not a license, either expressly or impliedly,
+to any intellectual property owned or controlled by IBM or Microsoft and\or any other
+third party. IBM and Microsoft and\or any other third party may have patents, patent
+applications, trademarks, copyrights, or other intellectual property rights
+covering subject matter in this document. The furnishing of this document
+does not give you any license to IBM's and Microsoft's or any other third party's patents,
+trademarks, copyrights, or other intellectual property.
+
+This specification and the information contained herein is provided on an "AS IS"
+ basis and to the maximum extent permitted by applicable law, IBM and Microsoft provides
+the document AS IS AND WITH ALL FAULTS, and hereby disclaims all other warranties
+and conditions, either express, implied or statutory, including, but not limited
+to, any (if any) implied warranties, duties or conditions of merchantability, of
+fitness for a particular purpose, of accuracy or completeness of responses, of
+results, of workmanlike effort, of lack of viruses, and of lack of negligence,
+all with regard to the document. ALSO, THERE IS NO WARRANTY OR CONDITION OF
+TITLE, QUIET ENJOYMENT, QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR
+NON-INFRINGEMENT OF ANY INTELLECTUAL PROPERTY RIGHTS WITH REGARD TO THE DOCUMENT.
+
+IN NO EVENT WILL IBM or MICROSOFT BE LIABLE TO ANY OTHER PARTY FOR THE COST OF PROCURING
+SUBSTITUTE GOODS OR SERVICES, LOST PROFITS, LOSS OF USE, LOSS OF DATA, OR ANY
+INCIDENTAL, CONSEQUENTIAL, DIRECT, INDIRECT, OR SPECIAL DAMAGES WHETHER UNDER
+CONTRACT, TORT, WARRANTY, OR OTHERWISE, ARISING IN ANY WAY OUT OF THIS OR ANY
+OTHER AGREEMENT RELATING TO THIS DOCUMENT, WHETHER OR NOT SUCH PARTY HAD ADVANCE
+NOTICE OF THE POSSIBILITY OF SUCH DAMAGES.
+
+Copyright Notice
+
+Copyright 2001, 2002 IBM Corporation and Microsoft Corporation. All rights reserved.
+-->
+<xsd:schema targetNamespace="http://schemas.xmlsoap.org/ws/2002/04/secext" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsse="http://schemas.xmlsoap.org/ws/2002/04/secext" xmlns="http://schemas.xmlsoap.org/ws/2002/04/secext" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" elementFormDefault="qualified" attributeFormDefault="unqualified" version="0.2">
+ <xsd:element name="Security">
+ <xsd:annotation>
+ <xsd:documentation>
+ This element defines header block to use for security-relevant data directed at a specific SOAP actor.
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded">
+ <xsd:annotation>
+ <xsd:documentation>
+ The use of "any" is to allow extensibility and different forms of security data.
+ </xsd:documentation>
+ </xsd:annotation>
+ </xsd:any>
+ </xsd:sequence>
+ <xsd:anyAttribute processContents="lax"/>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="UsernameToken">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="Username"/>
+ <xsd:element ref="Password" minOccurs="0"/>
+ </xsd:sequence>
+ <xsd:attribute name="Id" type="xsd:ID"/>
+ <xsd:anyAttribute namespace="##other"/>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="Username">
+ <xsd:complexType>
+ <xsd:simpleContent>
+ <xsd:extension base="xsd:string">
+ <xsd:anyAttribute namespace="##other"/>
+ </xsd:extension>
+ </xsd:simpleContent>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="Password">
+ <xsd:complexType>
+ <xsd:simpleContent>
+ <xsd:extension base="xsd:string">
+ <xsd:attribute name="Type" type="xsd:QName"/>
+ <xsd:anyAttribute namespace="##other"/>
+ </xsd:extension>
+ </xsd:simpleContent>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="BinarySecurityToken">
+ <xsd:annotation>
+ <xsd:documentation>A security token that is encoded in binary</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:simpleContent>
+ <xsd:extension base="xsd:string">
+ <xsd:attribute name="Id" type="xsd:ID"/>
+ <xsd:attribute name="ValueType" type="xsd:QName"/>
+ <xsd:attribute name="EncodingType" type="xsd:QName"/>
+ <xsd:anyAttribute namespace="##other" processContents="strict"/>
+ </xsd:extension>
+ </xsd:simpleContent>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="SecurityTokenReference">
+ <xsd:annotation>
+ <xsd:documentation>
+ This element is used reference a security token.
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:choice minOccurs="0" maxOccurs="unbounded">
+ <xsd:element ref="Reference"/>
+ <xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:choice>
+ <xsd:attribute name="Id" type="xsd:ID"/>
+ <xsd:anyAttribute namespace="##other" processContents="lax"/>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="Reference">
+ <xsd:complexType>
+ <xsd:attribute name="URI" type="xsd:anyURI"/>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:simpleType name="PasswordTypeEnum">
+ <xsd:restriction base="xsd:QName">
+ <xsd:enumeration value="wsse:PasswordText"/>
+ <xsd:enumeration value="wsse:PasswordDigest"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ <xsd:simpleType name="ValueTypeEnum">
+ <xsd:restriction base="xsd:QName">
+ <xsd:enumeration value="wsse:X509v3"/>
+ <xsd:enumeration value="wsse:Kerberosv5TGT"/>
+ <xsd:enumeration value="wsse:Kerberosv5ST"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ <xsd:simpleType name="EncodingTypeEnum">
+ <xsd:restriction base="xsd:QName">
+ <xsd:enumeration value="wsse:Base64Binary"/>
+ <xsd:enumeration value="wsse:HexBinary"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ <xsd:simpleType name="FaultcodeEnum">
+ <xsd:restriction base="xsd:QName">
+ <xsd:enumeration value="wsse:UnsupportedSecurityToken"/>
+ <xsd:enumeration value="wsse:UnsupportedAlgorithm"/>
+ <xsd:enumeration value="wsse:InvalidSecurity"/>
+ <xsd:enumeration value="wsse:InvalidSecurityToken"/>
+ <xsd:enumeration value="wsse:FailedAuthentication"/>
+ <xsd:enumeration value="wsse:FailedCheck"/>
+ <xsd:enumeration value="wsse:SecurityTokenUnavailable"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/wsdl/secext_pvp.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/wsdl/secext_pvp.xsd new file mode 100644 index 00000000..24896b99 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/wsdl/secext_pvp.xsd @@ -0,0 +1,152 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Legal Disclaimer
+
+The presentation, distribution or other dissemination of the information
+contained in this specification is not a license, either expressly or impliedly,
+to any intellectual property owned or controlled by IBM or Microsoft and\or any other
+third party. IBM and Microsoft and\or any other third party may have patents, patent
+applications, trademarks, copyrights, or other intellectual property rights
+covering subject matter in this document. The furnishing of this document
+does not give you any license to IBM's and Microsoft's or any other third party's patents,
+trademarks, copyrights, or other intellectual property.
+
+This specification and the information contained herein is provided on an "AS IS"
+ basis and to the maximum extent permitted by applicable law, IBM and Microsoft provides
+the document AS IS AND WITH ALL FAULTS, and hereby disclaims all other warranties
+and conditions, either express, implied or statutory, including, but not limited
+to, any (if any) implied warranties, duties or conditions of merchantability, of
+fitness for a particular purpose, of accuracy or completeness of responses, of
+results, of workmanlike effort, of lack of viruses, and of lack of negligence,
+all with regard to the document. ALSO, THERE IS NO WARRANTY OR CONDITION OF
+TITLE, QUIET ENJOYMENT, QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR
+NON-INFRINGEMENT OF ANY INTELLECTUAL PROPERTY RIGHTS WITH REGARD TO THE DOCUMENT.
+
+IN NO EVENT WILL IBM or MICROSOFT BE LIABLE TO ANY OTHER PARTY FOR THE COST OF PROCURING
+SUBSTITUTE GOODS OR SERVICES, LOST PROFITS, LOSS OF USE, LOSS OF DATA, OR ANY
+INCIDENTAL, CONSEQUENTIAL, DIRECT, INDIRECT, OR SPECIAL DAMAGES WHETHER UNDER
+CONTRACT, TORT, WARRANTY, OR OTHERWISE, ARISING IN ANY WAY OUT OF THIS OR ANY
+OTHER AGREEMENT RELATING TO THIS DOCUMENT, WHETHER OR NOT SUCH PARTY HAD ADVANCE
+NOTICE OF THE POSSIBILITY OF SUCH DAMAGES.
+
+Copyright Notice
+
+Copyright 2001, 2002 IBM Corporation and Microsoft Corporation. All rights reserved.
+-->
+<xsd:schema targetNamespace="http://schemas.xmlsoap.org/ws/2002/04/secext" xmlns:pvp="http://egov.gv.at/pvp1.xsd" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsse="http://schemas.xmlsoap.org/ws/2002/04/secext" xmlns="http://schemas.xmlsoap.org/ws/2002/04/secext" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" elementFormDefault="qualified" attributeFormDefault="unqualified" version="0.2">
+ <xsd:import namespace="http://egov.gv.at/pvp1.xsd" schemaLocation="../xsd/eingebunden/pvp1.xsd"/>
+ <xsd:element name="Security">
+ <xsd:annotation>
+ <xsd:documentation>
+ This element defines header block to use for security-relevant data directed at a specific SOAP actor.
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="pvp:pvpToken" minOccurs="0"/>
+ <xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded">
+ <xsd:annotation>
+ <xsd:documentation>
+ The use of "any" is to allow extensibility and different forms of security data.
+ </xsd:documentation>
+ </xsd:annotation>
+ </xsd:any>
+ </xsd:sequence>
+ <xsd:anyAttribute processContents="lax"/>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="UsernameToken">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="Username"/>
+ <xsd:element ref="Password" minOccurs="0"/>
+ </xsd:sequence>
+ <xsd:attribute name="Id" type="xsd:ID"/>
+ <xsd:anyAttribute namespace="##other"/>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="Username">
+ <xsd:complexType>
+ <xsd:simpleContent>
+ <xsd:extension base="xsd:string">
+ <xsd:anyAttribute namespace="##other"/>
+ </xsd:extension>
+ </xsd:simpleContent>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="Password">
+ <xsd:complexType>
+ <xsd:simpleContent>
+ <xsd:extension base="xsd:string">
+ <xsd:attribute name="Type" type="xsd:QName"/>
+ <xsd:anyAttribute namespace="##other"/>
+ </xsd:extension>
+ </xsd:simpleContent>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="BinarySecurityToken">
+ <xsd:annotation>
+ <xsd:documentation>A security token that is encoded in binary</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:simpleContent>
+ <xsd:extension base="xsd:string">
+ <xsd:attribute name="Id" type="xsd:ID"/>
+ <xsd:attribute name="ValueType" type="xsd:QName"/>
+ <xsd:attribute name="EncodingType" type="xsd:QName"/>
+ <xsd:anyAttribute namespace="##other" processContents="strict"/>
+ </xsd:extension>
+ </xsd:simpleContent>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="SecurityTokenReference">
+ <xsd:annotation>
+ <xsd:documentation>
+ This element is used reference a security token.
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:choice minOccurs="0" maxOccurs="unbounded">
+ <xsd:element ref="Reference"/>
+ <xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:choice>
+ <xsd:attribute name="Id" type="xsd:ID"/>
+ <xsd:anyAttribute namespace="##other" processContents="lax"/>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="Reference">
+ <xsd:complexType>
+ <xsd:attribute name="URI" type="xsd:anyURI"/>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:simpleType name="PasswordTypeEnum">
+ <xsd:restriction base="xsd:QName">
+ <xsd:enumeration value="wsse:PasswordText"/>
+ <xsd:enumeration value="wsse:PasswordDigest"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ <xsd:simpleType name="ValueTypeEnum">
+ <xsd:restriction base="xsd:QName">
+ <xsd:enumeration value="wsse:X509v3"/>
+ <xsd:enumeration value="wsse:Kerberosv5TGT"/>
+ <xsd:enumeration value="wsse:Kerberosv5ST"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ <xsd:simpleType name="EncodingTypeEnum">
+ <xsd:restriction base="xsd:QName">
+ <xsd:enumeration value="wsse:Base64Binary"/>
+ <xsd:enumeration value="wsse:HexBinary"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ <xsd:simpleType name="FaultcodeEnum">
+ <xsd:restriction base="xsd:QName">
+ <xsd:enumeration value="wsse:UnsupportedSecurityToken"/>
+ <xsd:enumeration value="wsse:UnsupportedAlgorithm"/>
+ <xsd:enumeration value="wsse:InvalidSecurity"/>
+ <xsd:enumeration value="wsse:InvalidSecurityToken"/>
+ <xsd:enumeration value="wsse:FailedAuthentication"/>
+ <xsd:enumeration value="wsse:FailedCheck"/>
+ <xsd:enumeration value="wsse:SecurityTokenUnavailable"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/allgemein/Messages.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/allgemein/Messages.xsd new file mode 100644 index 00000000..47dcda53 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/allgemein/Messages.xsd @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Messages.xsd
+Zweck: Definiert die Message-Datentypen fuer Services Request und Response (siehe Service.wsdl)
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2012-08-09 xfu: +BasTabelleAbfrage.xsd
+2004-02-18 tsch: Erstellung
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:include schemaLocation="../eingebunden/InfoTechnisch.xsd"/>
+ <xsd:include schemaLocation="../eingebunden/Workflow.xsd"/>
+ <xsd:include schemaLocation="Benutzereinstellungen.xsd"/>
+ <xsd:include schemaLocation="Organisationseinstellungen.xsd"/>
+ <xsd:include schemaLocation="GeschaeftsprozesseAuflisten.xsd"/>
+ <xsd:include schemaLocation="Auswertungen.xsd"/>
+ <xsd:include schemaLocation="BasTabelleAbfrage.xsd"/>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/allgemein/Service.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/allgemein/Service.xsd new file mode 100644 index 00000000..81cd3e80 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/allgemein/Service.xsd @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Name: Service.xsd
+Zweck: Definiert die Serviceroot - Elemente base:Request und base:Response global
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2008-07-25 teo: +PDFResponse (optional! ZMR setzt dieses Feld bisher nicht!)
+2004-08-19 tsch: Erstellung
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:include schemaLocation="Messages.xsd"/>
+ <xsd:include schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+
+ <xsd:element name="Request">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="WorkflowInfoClient"/>
+ <xsd:element ref="ClientInfo"/>
+ <xsd:any processContents="lax"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="Response">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="WorkflowInfoServer"/>
+ <xsd:element name="PDFResponse" type="xsd:base64Binary" minOccurs="0"/>
+ <xsd:element ref="ServerInfo"/>
+ <xsd:any processContents="lax"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/AbfrageMuster.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/AbfrageMuster.xsd new file mode 100644 index 00000000..9430ade8 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/AbfrageMuster.xsd @@ -0,0 +1,140 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Name: AbfrageParameter.xsd +Zweck: Definiert Datentypen für generische Suchabfragen mit simplen Operatoren +Author(s): Tschurtschenthaler Thomas (basierend auf suchmuster.xsd von DI Heinz Töfferl - Comm-Unity Software Development GmbH & Co KG) +Aenderungshistorie: +2005-03-30 tsch: Erstellung +--> +<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + <xsd:element name="AbfrageMuster"> + <xsd:annotation> + <xsd:documentation>Daten zu einem Suchmuster (Ausdruck)</xsd:documentation> + </xsd:annotation> + <xsd:complexType> + <xsd:choice> + <xsd:sequence> + <xsd:element ref="FeldAbfrage"/> + <xsd:element ref="SubFeldAbfrage" minOccurs="0" maxOccurs="unbounded"/> + </xsd:sequence> + <xsd:sequence> + <xsd:annotation> + <xsd:documentation> + Dient zur Klammerung von Suchmuster-Ausdrücken. + Muss erst dann unterstützt werden, wenn eine Klammerung nötig wird. + </xsd:documentation> + </xsd:annotation> + <xsd:element ref="AbfrageMuster"/> + <xsd:element ref="SubAbfrageMuster" minOccurs="0" maxOccurs="unbounded"/> + </xsd:sequence> + </xsd:choice> + <xsd:attribute name="AbfrageName" type="xsd:string" use="optional"/> + </xsd:complexType> + </xsd:element> + <xsd:element name="FeldAbfrage"> + <xsd:annotation> + <xsd:documentation>Eine Sucheinschränkung (= Einschränkung für ein Feld)</xsd:documentation> + </xsd:annotation> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="Feld" type="xsd:string"/> + <xsd:element ref="Relation"/> + <xsd:element name="Wert" type="xsd:string"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + <xsd:element name="Operation" block="restriction" default="UND"> + <xsd:annotation> + <xsd:documentation>Verknüpfung mit der nächsten Zeile (Default: AND)</xsd:documentation> + </xsd:annotation> + <xsd:simpleType> + <xsd:restriction base="xsd:NMTOKEN"> + <xsd:enumeration value="UND"/> + <xsd:enumeration value="ODER"/> + <xsd:enumeration value="ODER_SELF"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Relation"> + <xsd:annotation> + <xsd:documentation>Mögliche Vergleichsoperatoren.</xsd:documentation> + </xsd:annotation> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:enumeration value="IST"/> + <xsd:enumeration value="IST NICHT"/> + <xsd:enumeration value="BEGINNT MIT"/> + <xsd:enumeration value="BEGINNT NICHT MIT"/> + <xsd:enumeration value="ENDET MIT"/> + <xsd:enumeration value="ENDET NICHT MIT"/> + <xsd:enumeration value="GRÖSSER ALS"/> + <xsd:enumeration value="GRÖSSER GLEICH"/> + <xsd:enumeration value="KLEINER ALS"/> + <xsd:enumeration value="KLEINER GLEICH"/> + <xsd:enumeration value="ENTHÄLT"/> + <xsd:enumeration value="ENTHÄLT NICHT"/> + <xsd:enumeration value="IST LEER"/> + <xsd:enumeration value="IST NICHT LEER"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="AbfrageSortierung"> + <xsd:annotation> + <xsd:documentation>Daten zur Sortierung einer Abfrage</xsd:documentation> + </xsd:annotation> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="SortSchluessel" maxOccurs="unbounded"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + <xsd:element name="SortSchluessel"> + <xsd:annotation> + <xsd:documentation>Sortierungsschluessel einer Abfrage</xsd:documentation> + </xsd:annotation> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="Feld" type="xsd:string"/> + <xsd:element name="Absteigend" type="xsd:boolean"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + <xsd:element name="SubFeldAbfrage"> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="Operation"/> + <xsd:element ref="FeldAbfrage"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + <xsd:element name="SubAbfrageMuster"> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="Operation"/> + <xsd:element ref="AbfrageMuster"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="AbfrageParameter"> + <xsd:annotation> + <xsd:documentation>Daten zur Parametrisierung einer Abfrage</xsd:documentation> + </xsd:annotation> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="Parameter" maxOccurs="unbounded"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + <xsd:element name="Parameter"> + <xsd:annotation> + <xsd:documentation>Ein einzelner Abfrageparameter</xsd:documentation> + </xsd:annotation> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="Name" type="xsd:string"/> + <xsd:element name="Wert" type="xsd:string"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> +</xsd:schema> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/AkademischerGradFelder.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/AkademischerGradFelder.xsd new file mode 100644 index 00000000..fc910841 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/AkademischerGradFelder.xsd @@ -0,0 +1,61 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Name: AkademischerGradFelder.xsd +Zweck: Definiert allgemein nutzbare Felder für akademische Grade +Author(s): Tschurtschenthaler Thomas, ZMR-SU + +Aenderungshistorie: +2004-12-15 tsch: AkadGradReihung - Wertebereich erweitert +2004-06-20 tsch: Erstellung +--> + +<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + + <xsd:include schemaLocation="SimpleTypes.xsd"/> + + <xsd:element name="AkadGradStellung"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:enumeration value="VOR"/> + <xsd:enumeration value="NACH"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="AkadGradReihung"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:enumeration value="0"/> + <xsd:enumeration value="1"/> + <xsd:enumeration value="2"/> + <xsd:enumeration value="2/3"/> + <xsd:enumeration value="3"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="AkadGradLang"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="90"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="AkadGradKurz"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="30"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="AkadGradKey" type="IDType"/> +</xsd:schema> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/Blaettern.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/Blaettern.xsd new file mode 100644 index 00000000..5b556802 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/Blaettern.xsd @@ -0,0 +1,56 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Name: Blaettern.xsd +Zweck: Definiert Request-Typen für das allgemeine Blättern; Die Response hängt vom Workflow-Vorgang ab (Personensuchergebnis, Avisosuchergebnis, ...) +Author(s): Tschurtschenthaler Thomas, ZMR-SU + +Aenderungshistorie: +2006-04-19 toef: Richtungswerte 'Anfang' und 'Ende' hinzugefügt +2005-09-20 tsch: Richtungswert 'Aktualisieren' hinzugefügt +2004-06-14 tsch: Organisation nach ClientInfo verschoben +2004-04-07 tsch: Erstellung +--> + +<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + <xsd:include schemaLocation="InfoFachlich.xsd"/> + + <xsd:element name="BlaetternRequest"> + <xsd:annotation> + <xsd:documentation> + Für Suchvorgänge, in deren Ergebnisliste geblättert werden kann, stellt dieser Request + eine generische Schnittstelle zum Blättern dar. Er wird mit demselben Vorgang-Namen in der + Workflowschnittstelle geschickt, wie der ursprüngliche Suche-Request. Als Ergebnis wird + das Suchergebnis des ensprechenden Suchvorgangs analog zur rsprünglichen Suche-Response geliefert. + </xsd:documentation> + </xsd:annotation> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="BlaetternInfo"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="BlaetternInfo"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="ErgebnislisteName" type="xsd:string" minOccurs="0"/> + <xsd:element name="Richtung"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:enumeration value="Vor"/> + <xsd:enumeration value="Zurueck"/> + <xsd:enumeration value="Aktualisieren"/> + <xsd:enumeration value="Anfang"/> + <xsd:enumeration value="Ende"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element ref="AnzahlSaetze"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> +</xsd:schema> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/DokumentFelder.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/DokumentFelder.xsd new file mode 100644 index 00000000..270cb52a --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/DokumentFelder.xsd @@ -0,0 +1,74 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Name: DokumentFelder.xsd +Zweck: Definiert allgemein nutzbare Felder für Dokumente/Reisedokumente +Author(s): Tschurtschenthaler Thomas, ZMR-SU + +Aenderungshistorie: +2005-09-26 tsch: DokumentName hinzugefügt +2004-09-29 tsch: Felder für Standard-Dokumente hinzugefügt +2004-06-24 tsch: AusstellDatum: Timestamp wird xsd:date +2004-01-22 tsch: Erstellung +--> + +<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + + <xsd:include schemaLocation="SimpleTypes.xsd"/> + + <xsd:element name="DokumentArt"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="55"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="DokumentNummer"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="256"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="EintragungsNummer"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="45"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="DokumentName"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="54"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="AusstellDatum" type="xsd:date"/> + <xsd:element name="AblaufDatum" type="xsd:date"/> + <xsd:element name="SterbeDatum" type="xsd:date"/> + <xsd:element name="SterbeUhrzeit" type="xsd:time"/> + <xsd:element name="AusstellBehoerde"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="90"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Ausstellungsstaat" type="StaatenNameType"/> + <xsd:element name="DokumentGiltBis" type="TimestampType"/> + +</xsd:schema> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/EingebundenProxy.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/EingebundenProxy.xsd new file mode 100644 index 00000000..450fad59 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/EingebundenProxy.xsd @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- +Name: EingebundenProxy.xsd +Zweck: Fasst XSD-Files zusammen, die oft eingebunden werden +Author(s): Tschurtschenthaler Thomas, ZMR-SU + +Aenderungshistorie: +2009-07-07 teo: +PersonExport +2003-12-10 tsch: Erstellung +--> + +<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + + <xsd:include schemaLocation="InfoFachlich.xsd"/> + <xsd:include schemaLocation="InfoTechnisch.xsd"/> + <xsd:include schemaLocation="MeldungFelder.xsd"/> + <xsd:include schemaLocation="PersonFelder.xsd"/> + <xsd:include schemaLocation="DokumentFelder.xsd"/> + <xsd:include schemaLocation="Workflow.xsd"/> + <xsd:include schemaLocation="Blaettern.xsd"/> + <xsd:include schemaLocation="AkademischerGradFelder.xsd"/> + <xsd:include schemaLocation="AbfrageMuster.xsd"/> + <xsd:include schemaLocation="PersonExport.xsd"/> +</xsd:schema> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/Entity.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/Entity.xsd new file mode 100644 index 00000000..4ed61a4f --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/Entity.xsd @@ -0,0 +1,135 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Name: Entity.xsd +Zweck: Definiert allgemeine Datentypen für Entities (Person, Meldung, ...) der Register +Author(s): Tschurtschenthaler Thomas, ZMR-SU + +Aenderungshistorie: +2012-08-09 xfu: Beginncode und -text ist optional +2004-10-27 tsch: Behoerdenschluessel hinzugefügt +2004-09-28 tsch: OrgBezeichnung hinzugefügt +2004-06-21 tsch: EntityReferenz ohne LetzteAenderung +2004-06-18 tsch: BeginnText hinzugefügt +2004-01-22 tsch: EntityErgebnisReferenz statt Entity abstract +2003-11-16 tsch: Erstellung +--> +<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + + <xsd:include schemaLocation="SimpleTypes.xsd"/> + + <xsd:element name="EntityErgebnisReferenz" type="EntityErgebnisReferenzType"/> + <xsd:complexType name="EntityErgebnisReferenzType"> + <xsd:annotation> + <xsd:documentation>Referenziert eine Entity in der Datenbank für Suchergebnisse</xsd:documentation> + </xsd:annotation> + + <xsd:sequence> + <xsd:sequence> + <xsd:element ref="Technisch"/> + <xsd:group ref="ErgebnisFachlichGroup"/> + </xsd:sequence> + </xsd:sequence> + + </xsd:complexType> + + <xsd:element name="EntityReferenz" type="EntityReferenzType"/> + <xsd:complexType name="EntityReferenzType"> + <xsd:annotation> + <xsd:documentation>Referenziert eine Entity in der Datenbank für Aenderungen (immer die aktuellste, das heisst jüngstes 'Von')</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element ref="EntityID"/> + </xsd:sequence> + </xsd:complexType> + + <xsd:element name="Technisch"> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="EntityID"/> + <xsd:element ref="LetzteAenderung"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:group name="ErgebnisFachlichGroup"> + <xsd:sequence> + <xsd:element ref="Von"/> + <xsd:element ref="BeginnCode" minOccurs="0"/> <!-- Einträge in BAS.STAAT und BAS.AKADGRAD haben keinen Beginncode (werden aber in BasTabelleAbfrage.xsd abgerufen) --> + <xsd:element ref="BeginnText" minOccurs="0"/> + <xsd:element ref="BeginnFreitext" minOccurs="0"/> + <xsd:element ref="Bis" minOccurs="0"/> + <xsd:element ref="DurchgefuehrtVon"/> + </xsd:sequence> + </xsd:group> + + <xsd:element name="Von" type="TimestampType"/> + <xsd:element name="Bis" type="TimestampType"/> + <xsd:element name="BeginnCode" type="GrundCodeType"/> + <xsd:element name="BeginnText" type="GrundTextType"/> + <xsd:element name="BeginnFreitext" type="GrundFreitextType"/> + <xsd:element name="EntityID" type="ENTITYIDType"/> + <xsd:element name="LetzteAenderung" type="TimestampType"/> + <xsd:element name="DurchgefuehrtVon" type="DurchgefuehrtVonType"/> + <xsd:complexType name="DurchgefuehrtVonType"> + <xsd:sequence> + <xsd:element ref="Organisation"/> + <xsd:element ref="Benutzer" minOccurs="0"/> + </xsd:sequence> + </xsd:complexType> + + <xsd:element name="Organisation"> + <xsd:complexType> + <xsd:annotation> + <xsd:documentation> + Die derzeit bekannten Organisationen sind strikt definiert (BehoerdenNr, GemeindeNr, KundenNr); + neue, noch nicht definierte Organiationen, können mittels eines (Orgtyp, OrgCode)-Paares übermittelt werden. + </xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:choice> + <xsd:choice> + <xsd:element ref="BehoerdenNr"/> + <xsd:element ref="GemeindeNr"/> + <xsd:element ref="KundenNr"/> + <xsd:element ref="Behoerdenschluessel"/> + </xsd:choice> + <xsd:sequence> + <xsd:element ref="OrgTyp"/> + <xsd:element ref="OrgCode"/> + </xsd:sequence> + </xsd:choice> + <xsd:element ref="OrgBezeichnung" minOccurs="0"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + <xsd:element name="BehoerdenNr" type="BehoerdenNrType"/> + <xsd:element name="Behoerdenschluessel" type="BehoerdenschluesselType"/> + <xsd:element name="GemeindeNr" type="GemeindeNrType"/> + <xsd:element name="KundenNr" type="KundenNrType"/> + <xsd:element name="OrgTyp" type="OrgTypType"/> + <xsd:element name="OrgCode" type="OrgCodeType"/> + <xsd:element name="Benutzer" type="BenutzerType"/> + <xsd:element name="OrgBezeichnung"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="80"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="BehoerdenBezeichnung"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="80"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + +</xsd:schema> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/InfoFachlich.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/InfoFachlich.xsd new file mode 100644 index 00000000..9bf8ceb0 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/InfoFachlich.xsd @@ -0,0 +1,103 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Name: InfoFachlich.xsd +Zweck: Definiert Typen für allgemeine fachliche Informationen der Usecases +Author(s): Tschurtschenthaler Thomas, ZMR-SU + +Aenderungshistorie: +2006-08-08 tsch: Feld EingeschraenkteHistorie hinzugefügt +2004-09-09 tsch: Register hinzugefügt +2004-07-07 tsch: InfoFachlichType.Von optional, InfoFachlichType.GrundCode Mussfeld +2004-06-22 tsch: SaetzeVon, SaetzeBis hinzugefügt +2004-06-18 tsch: ErgebnissatzInfo, Beendigung hinzugefügt +2004-04-17 tsch: Organisation entfernt +2004-04-13 tsch: InfoFachlichType - GrundCode optional +2003-11-16 tsch: Erstellung +--> + +<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" + elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + <xsd:include schemaLocation="SimpleTypes.xsd"/> + <xsd:include schemaLocation="Entity.xsd"/> + <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="PersonDataZMR.xsd"/> + + <xsd:element name="ErgebnissatzInfo" type ="ErgebnissatzInfoType"/> + <xsd:complexType name="ErgebnissatzInfoType"> + <xsd:sequence> + <xsd:annotation> + <xsd:documentation> + Letze-Änderung-Timestamp des Gesamt-Satzes (Jüngster Timestamp aller Entities im Satz), + Muss bei einem Änderungsvorgang als Letzte-Änderung-Timestamp geschickt werden. + </xsd:documentation> + </xsd:annotation> + <xsd:element ref="LetzteAenderung"/> + </xsd:sequence> + </xsd:complexType> + + <xsd:element name="Message"> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="Number"/> + <xsd:element ref="Text"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="Number" type="IntegerType"/> + <xsd:element name="Text"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:minLength value="0"/> + <xsd:maxLength value="250"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:complexType name="InfoFachlichType" abstract="true"> + <xsd:annotation> + <xsd:documentation>allgemeine fachliche Informationen</xsd:documentation> + </xsd:annotation> + + <xsd:sequence> + <xsd:element ref="Von" minOccurs="0"/> + <xsd:element name="GrundCode" type="GrundCodeType"/> + <xsd:element ref="GrundFreitext" minOccurs="0"/> + </xsd:sequence> + </xsd:complexType> + + <xsd:element name="BPKPersonInfo" type="BPKPersonInfoType"/> + <xsd:complexType name="BPKPersonInfoType"> + <xsd:annotation> + <xsd:documentation>Bereichspezifische Bürgerkarten-Information einer Person</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element ref="cio:NatuerlichePerson"/> + <xsd:element ref="Bereichskennung"/> + <xsd:element ref="BPK"/> + </xsd:sequence> + </xsd:complexType> + + <xsd:element name="Beendigung" type="xsd:boolean"/> + <xsd:element name="Bezugsfeld" type="BezugsfeldType"/> + + <xsd:element name="Stichtag" type="TimestampType"/> + <xsd:element name="InclusivHistorie" type="xsd:boolean"/> + <xsd:element name="EingeschraenkteHistorie" type="xsd:boolean"/> + <xsd:element name="Formalisiert" type="xsd:boolean"/> + <xsd:element name="ErstellePDF" type="xsd:boolean"/> + <xsd:element name="InclusivAusgeblendeteSaetze" type="xsd:boolean"/> + <xsd:element name="InclusivNameVorErsterEhe" type="xsd:boolean"/> + <xsd:element name="GefundeneSaetze" type="IntegerType"/> + <xsd:element name="AnzahlSaetze" type="IntegerType"/> + <xsd:element name="SaetzeVon" type="IntegerType"/> + <xsd:element name="SaetzeBis" type="IntegerType"/> + <xsd:element name="GrundFreitext" type="GrundFreitextType"/> + <xsd:element name="Bereichskennung" type="xsd:string"/> + <xsd:element name="BPK" type="xsd:string"/> + <xsd:element name="Register" type="RegisterType"/> + +</xsd:schema> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/InfoTechnisch.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/InfoTechnisch.xsd new file mode 100644 index 00000000..567a91f0 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/InfoTechnisch.xsd @@ -0,0 +1,103 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Name: InfoTechnisch.xsd +Zweck: Definiert Typen für allgemeine technische Informationen der Usecases +Author(s): Tschurtschenthaler Thomas, ZMR-SU + +Aenderungshistorie: +2004-09-09 tsch: ErrorCode, ErrorMessage hinzugefügt +2004-06-24 tsch: UserInfo als Message definiert +2004-05-17 tsch: Organisation, Client dazugefügt; Softwarehaus, ClientVersion entfernt +2003-11-16 tsch: Erstellung +--> + +<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + <xsd:include schemaLocation="InfoFachlich.xsd"/> + + <xsd:element name="ClientInfo" type="ClientInfoType"/> + + <xsd:complexType name="ClientInfoType"> + <xsd:annotation> + <xsd:documentation>Technische Client-Informationen</xsd:documentation> + </xsd:annotation> + + <xsd:sequence> + <xsd:element ref="Organisation"/> + <xsd:element ref="Client"> + <xsd:annotation> + <xsd:documentation>Herstellername der Client-Software inklusive Version (Bsp.: ZMRHTMLClient V3.0)</xsd:documentation> + </xsd:annotation> + </xsd:element> + </xsd:sequence> + </xsd:complexType> + + <xsd:element name="Client"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="18"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + + <xsd:element name="ServerInfo" type="ServerInfoType"/> + + <xsd:complexType name="ServerInfoType"> + <xsd:annotation> + <xsd:documentation>Technische Server-Informationen</xsd:documentation> + </xsd:annotation> + + <xsd:sequence> + <xsd:element ref="GeneriertVon"> + <xsd:annotation> + <xsd:documentation>Applikationsname und -version</xsd:documentation> + </xsd:annotation> + </xsd:element> + <xsd:element ref="GeneriertAm"> + <xsd:annotation> + <xsd:documentation>Generierung Timestamp</xsd:documentation> + </xsd:annotation> + </xsd:element> + <xsd:element ref="ServerTransaktionNr"> + <xsd:annotation> + <xsd:documentation>Transaktionsnummer des Servers</xsd:documentation> + </xsd:annotation> + </xsd:element> + <xsd:element ref="UserInfo" minOccurs="0"> + <xsd:annotation> + <xsd:documentation> + Enthält neue User-Information (wie z.B. Information über Wartungarbeiten am ZMR) + Diese Info kann dem User am Bildschirm angezeigt werden. + </xsd:documentation> + </xsd:annotation> + </xsd:element> + </xsd:sequence> + </xsd:complexType> + + <xsd:element name="GeneriertVon"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="50"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="GeneriertAm" type="TimestampType"/> + <xsd:element name="ErrorCode" type="xsd:string"/> + <xsd:element name="ErrorMessage" type="xsd:string"/> + <xsd:element name="ServerTransaktionNr" type="IDType"/> + <xsd:element name="UserInfo"> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="Message"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> +</xsd:schema> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/MeldungFelder.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/MeldungFelder.xsd new file mode 100644 index 00000000..7a9feda1 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/MeldungFelder.xsd @@ -0,0 +1,283 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Name: MeldungFelder.xsd +Zweck: Definiert allgemein nutzbare Felder für Meldedaten +Author(s): Tschurtschenthaler Thomas, ZMR-SU + +Aenderungshistorie: +2010-11-24 mp: +Infotext (ZMR-1513) +2009-11-20 mp: Gebäudeeigenschaft und Nutzungsart hinzugefügt +2006-06-26 tsch: OrientierungsnummerBis hinzugefügt +2005-12-06 tsch: Detailfelder für GWR-Tueren hinzugefügt +2004-12-09 tsch: OKZ und SKZ alphanumerisch +2004-08-16 tsch: Bezirkskennung, DruckZusatztext hinzugefügt +2004-08-02 tsch: PeriodeCode, PeriodeText, PeriodeFreitext hinzugefügt +2004-07-30 tsch: HauptIdentadresse->HauptIdent; AdressZusatz enfernt; +OKZ; +SKZ; +Adressschluessel; +InfoMeldewesen +2004-06-24 tsch: GBRRefkey, Postleitzahlgebiet hinzugefügt +2004-01-27 tsch: Erstellung +--> + +<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + <xsd:include schemaLocation="SimpleTypes.xsd"/> + + + <xsd:element name="GemeldetVon" type="TimestampType"/> + <xsd:element name="GemeldetBis" type="TimestampType"/> + + <xsd:element name="PeriodeCode" type="GrundCodeType"/> + <xsd:element name="PeriodeText" type="GrundTextType"/> + <xsd:element name="PeriodeFreitext" type="GrundFreitextType"/> + + <xsd:element name="Unterkunftgeber"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="250"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="ADRRefkey"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="12"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="GBRRefkey"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="12"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="HauptIdent"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:enumeration value="H"/> + <xsd:enumeration value="I"/> + <xsd:enumeration value="B"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="OKZ"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[0-9;A-Z]{5}"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="SKZ"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[0-9;A-Z]{6}"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="Adressstatus"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="9"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="Hofname"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="50"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="StrasseZweisprachig"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="108"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="Gebaeudeunterscheidung"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="60"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="Postleitzahlgebiet"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="54"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="InfoMeldewesen"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="100"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="GBDUntteil" type="xsd:boolean"/> + + <xsd:element name="NameZuteil" type="xsd:boolean"/> + + <xsd:element name="Adressschluessel"> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="OKZ" minOccurs="0"/> + <xsd:element ref="SKZ" minOccurs="0"/> + <xsd:element ref="ADRRefkey" minOccurs="0"/> + <xsd:element ref="GBRRefkey" minOccurs="0"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="Bezirkskennung"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[0-9]{3}"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="DruckZusatztext"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="230"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="Infotext"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="230"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="TuerNr"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="25"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="TopNr"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="25"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="Lagebeschreibung"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="25"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="NtzLage"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="1"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="NtzStock"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="3"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="NtzAdrart"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="1"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="OrientierungsnummerBis"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="32"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="GbdEigenschaft"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="2"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="NtzArt"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="2"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + +</xsd:schema> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/PersonDataZMR.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/PersonDataZMR.xsd new file mode 100644 index 00000000..8a05c612 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/PersonDataZMR.xsd @@ -0,0 +1,741 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Name: PersonDataZMR.xsd +Zweck: Striktere Redefinition des Generischen Schemas zum Speichern und Austauschen von Personendaten des Chief Information Office Austria, Stabsstelle IKT-Strategie des Bundes, BMÖLS +Author(s): Tschurtschenthaler Thomas, ZMR-SU + +Aenderungshistorie: +2012-04-12 ee : element "Adresse" entfernt, substitutionGroups darauf entfernt + -> mit wsdl2java wieder kompilierbar, sonst "Adresse is referenced but not defined." error +2010-07-09 rp : LMR-783: +GueltigVon, GueltigBis bei Staatsangehoerigkeit +2009-11-25 teo : ZMR-1296 Anpassungen aufgrund Bundesgesetz über die eingetragene Partnerschaft (EPG) +2006-04-18 woeg: Familienstand +2005-09-26 tsch: Internetadresse, Telefonadresse übernommen, Postleitzahl alphanumerisch +2004-01-31 tsch: maximale Feldlänge für Geburtsbundesland auf 72 erhöht, minimale auf 0. +2004-12-09 tsch: Adresscode und Objektnummer alphanumerisch, Postleitzahl mit führender Null +2004-11-02 tsch: Elemenent Affix in PersonenNameTyp Unbounded +2004-08-24 tsch: Element PersonenDaten übernommen +2004-07-30 tsch: Anpassungen von Personrecord-Feldern: +Adresszeile; Gebaeudeteil->Gebaeude; Nutzungseinheitnummer->Nutzungseinheit; NTZLNR->Nutzungseinheitlaufnummer; +Postfach; AdressRegEintrag->AdressRegisterEintrag;Gemeindekennzahl->Gemeindekennziffer +2004-07-20 tsch: Staatsangehörigkeit-Felder optional +2004-07-08 tsch: Region (Postleitzahlgebiet) hinzugefügt +2004-06-24 tsch: StaatsCode, StaatsName in Postadresse übernommen +2004-01-28 tsch: Adaptionen an neuen CIO-PersonDataDE Record +2004-01-27 tsch: ZMRAdresse wird PostAdresse +2004-01-15 tsch: Erstellung +--> + +<xsd:schema targetNamespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + <xsd:import namespace="http://www.w3.org/2000/09/xmldsig#" schemaLocation="W3C-XMLDSig.xsd"/> + <xsd:annotation> + <xsd:documentation>This version of person deploys only global elements. All types derived from abstract types have been replaced by substitution groups</xsd:documentation> + </xsd:annotation> + + <xsd:element name="Identification" type="IdentificationType"> + <xsd:annotation> + <xsd:documentation>unique identification entities</xsd:documentation> + </xsd:annotation> + </xsd:element> + <xsd:complexType name="IdentificationType"> + <xsd:annotation> + <xsd:documentation>unique identifier</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element name="Value" type="xsd:string"> + <xsd:annotation> + <xsd:documentation>actual value of the identifier.</xsd:documentation> + </xsd:annotation> + </xsd:element> + <xsd:element name="Type" type="xsd:anyURI"> + <xsd:annotation> + <xsd:documentation>type of value (eg 'ZMR', 'SV-Nummer', 'Martrikelnummer', database identification, ...)</xsd:documentation> + </xsd:annotation> + </xsd:element> + <xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"> + <xsd:annotation> + <xsd:documentation>zusätzliche felder</xsd:documentation> + </xsd:annotation> + </xsd:any> + </xsd:sequence> + </xsd:complexType> + + + <xsd:element name="PersonenDaten" type="PersonenDatenTyp"> + <xsd:annotation> + <xsd:documentation>Personendatenstruktur</xsd:documentation> + </xsd:annotation> + </xsd:element> + + <xsd:complexType name="PersonenDatenTyp"> + <xsd:sequence> + <xsd:element ref="NatuerlichePerson"/> + <xsd:element ref="PostAdresse" minOccurs="0" maxOccurs="unbounded"/> + </xsd:sequence> + </xsd:complexType> + + + <xsd:element name="NatuerlichePerson" type="NatuerlichePersonTyp" substitutionGroup="Person"> + <xsd:annotation> + <xsd:documentation>element of physical person type</xsd:documentation> + </xsd:annotation> + </xsd:element> + <xsd:element name="Person" type="AbstractPersonType"> + <xsd:annotation> + <xsd:documentation>element of person type</xsd:documentation> + </xsd:annotation> + </xsd:element> + + <xsd:complexType name="AbstractPersonType" abstract="true"> + <xsd:annotation> + <xsd:documentation>main structure of person data</xsd:documentation> + </xsd:annotation> + <xsd:sequence minOccurs="0"> + <xsd:element name="Identification" type="IdentificationType" minOccurs="0" maxOccurs="unbounded"> + <xsd:annotation> + <xsd:documentation>unique identification entities</xsd:documentation> + </xsd:annotation> + </xsd:element> + </xsd:sequence> + <xsd:attribute name="Id" type="xsd:ID" use="optional"/> + <xsd:anyAttribute namespace="##other"/> + </xsd:complexType> + + <xsd:complexType name="NatuerlichePersonTyp"> + <xsd:annotation> + <xsd:documentation>physical person</xsd:documentation> + </xsd:annotation> + <xsd:complexContent> + <xsd:extension base="AbstractPersonType"> + <xsd:sequence minOccurs="0"> + <xsd:element ref="PersonenName" minOccurs="0"/> + <xsd:element ref="AlternativName" minOccurs="0" maxOccurs="unbounded"/> + <xsd:element ref="Familienstand" minOccurs="0"/> + <xsd:element ref="Geschlecht" minOccurs="0"/> + <xsd:element ref="Geburtsdatum" minOccurs="0"/> + <xsd:element ref="Geburtsort" minOccurs="0"/> + <xsd:element ref="Geburtsbundesland" minOccurs="0"/> + <xsd:element ref="Geburtsstaat" minOccurs="0"/> + <xsd:element ref="Sterbedatum" minOccurs="0"/> + <xsd:element ref="Staatsangehoerigkeit" minOccurs="0" maxOccurs="unbounded"/> + <xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"> + <xsd:annotation> + <xsd:documentation>any additional properties</xsd:documentation> + </xsd:annotation> + </xsd:any> + </xsd:sequence> + </xsd:extension> + </xsd:complexContent> + </xsd:complexType> + + <xsd:element name="AlternativName"> + <xsd:annotation> + <xsd:documentation>Former name, Artist name, changes of Given name ... type of name is given as attribute - choose from list or define new type</xsd:documentation> + </xsd:annotation> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="Familienname"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="108"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + </xsd:sequence> + <xsd:attribute name="Type" type="DefinierterAlternativNamensTypTyp" use="required"/> + </xsd:complexType> + </xsd:element> + + <xsd:simpleType name="DefinierterAlternativNamensTypTyp"> + <xsd:annotation> + <xsd:documentation>known types of alternative names</xsd:documentation> + </xsd:annotation> + <xsd:restriction base="xsd:string"> + <xsd:enumeration value="Kuenstlername"/> + <xsd:enumeration value="Spitzname"/> + <xsd:enumeration value="FruehererName"/> + <xsd:enumeration value="Alias"/> + <xsd:enumeration value="NameVorErsterEhe"/> + </xsd:restriction> + </xsd:simpleType> + + <xsd:element name="PersonenName" type="PersonenNameTyp"/> + + <xsd:complexType name="PersonenNameTyp"> + <xsd:sequence> + <xsd:element ref="Vorname" minOccurs="0"/> + <xsd:element ref="Familienname" minOccurs="0"/> + <xsd:element ref="Affix" minOccurs="0" maxOccurs="unbounded"/> + </xsd:sequence> + </xsd:complexType> + + + <xsd:element name="Familienname"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="108"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Vorname" nillable="true"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="108"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Affix"> + <xsd:complexType> + <xsd:simpleContent> + <xsd:extension base="xsd:string"> + <xsd:attribute name="typ" use="required"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:enumeration value="akademischerGrad"/> + <xsd:enumeration value="Adelstitel"/> + <xsd:enumeration value="FamiliennamenSuffix"/> + <xsd:enumeration value="Anrede"/> + <xsd:enumeration value="Generation"/> + <xsd:enumeration value="Qualifikation"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:attribute> + <xsd:attribute name="position" use="required"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:enumeration value="prefix"/> + <xsd:enumeration value="suffix"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:attribute> + </xsd:extension> + </xsd:simpleContent> + </xsd:complexType> + </xsd:element> + <xsd:element name="Sterbedatum"> + <xsd:simpleType> + <xsd:annotation> + <xsd:documentation>simple type for dates (union), which may omit day and/or month</xsd:documentation> + </xsd:annotation> + <xsd:union memberTypes="xsd:date xsd:gYearMonth xsd:gYear"/> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Geburtsdatum"> + <xsd:simpleType> + <xsd:annotation> + <xsd:documentation>simple type for dates (union), which may omit day and/or month</xsd:documentation> + </xsd:annotation> + <xsd:union memberTypes="xsd:date xsd:gYearMonth xsd:gYear"/> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="Familienstand"> + <xsd:simpleType> + <xsd:annotation> + <xsd:documentation>simple type for marital status of a person</xsd:documentation> + </xsd:annotation> + <xsd:restriction base="xsd:token"> + <xsd:enumeration value="ledig"/> + <xsd:enumeration value="verheiratet"/> + <xsd:enumeration value="in eingetragener Partnerschaft lebend"/> + <xsd:enumeration value="geschieden"/> + <xsd:enumeration value="eingetragene Partnerschaft aufgelöst oder für nichtig erklärt"/> +<!-- <xsd:enumeration value="aufgelöste eingetragene Partnerschaft"/> --> + <xsd:enumeration value="verwitwet"/> + <xsd:enumeration value="hinterbliebener eingetragener Partner"/> + <xsd:enumeration value="Ehe aufgehoben oder für nichtig erklärt"/> + <xsd:enumeration value="unbekannt"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="Geschlecht"> + <xsd:simpleType> + <xsd:annotation> + <xsd:documentation>simple type for sex (gender) of person</xsd:documentation> + </xsd:annotation> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="50"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="Geburtsort"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="54"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="Geburtsstaat"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="54"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Geburtsbundesland"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="72"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="Staatsangehoerigkeit"> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="ISOCode3" minOccurs="0"/> + <xsd:element ref="StaatsnameDE" minOccurs="0"/> + <xsd:element ref="StaatsnameEN" minOccurs="0"/> + <xsd:element ref="StaatsnameFR" minOccurs="0"/> + <xsd:element name="GueltigVon" type="xsd:date" minOccurs="0"/> + <xsd:element name="GueltigBis" type="xsd:date" minOccurs="0"/> + <xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"> + <xsd:annotation> + <xsd:documentation>any additional properties</xsd:documentation> + </xsd:annotation> + </xsd:any> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="StaatsnameDE"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="54"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="StaatsnameEN"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="54"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="StaatsnameFR"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="54"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="PostAdresse" type="PostAdresseTyp" > + <xsd:annotation> + <xsd:documentation>Post oder ZMR Adresse, entspricht PostalAddress</xsd:documentation> + </xsd:annotation> + </xsd:element> + <xsd:complexType name="AbstractAddressType" abstract="true"> + <xsd:annotation> + <xsd:documentation>main structure of address data</xsd:documentation> + </xsd:annotation> + <xsd:sequence minOccurs="0"> + <xsd:element name="Identification" type="IdentificationType" minOccurs="0" maxOccurs="unbounded"> + <xsd:annotation> + <xsd:documentation>unique identification entities</xsd:documentation> + </xsd:annotation> + </xsd:element> + </xsd:sequence> + <xsd:attribute name="Id" type="xsd:ID" use="optional"/> + <xsd:anyAttribute namespace="##other"/> + </xsd:complexType> + <xsd:complexType name="PostAdresseTyp"> + <xsd:annotation> + <xsd:documentation>postal address</xsd:documentation> + </xsd:annotation> + <xsd:complexContent> + <xsd:extension base="AbstractAddressType"> + <xsd:sequence> + <xsd:element ref="Staatscode" minOccurs="0"/> + <xsd:element ref="Staatsname" minOccurs="0"/> + + <xsd:element ref="Postleitzahl" minOccurs="0"/> + <xsd:element ref="Region" minOccurs="0"/> + <xsd:element ref="Bundesland" minOccurs="0"/> + <xsd:element ref="Gemeinde" minOccurs="0"/> + <xsd:element ref="Gemeindekennziffer" minOccurs="0"/> + <xsd:element ref="Ortschaft" minOccurs="0"/> + <xsd:element ref="OrtschaftZweisprachig" minOccurs="0"/> + <xsd:element name="Zustelladresse" type="ZustelladresseTyp" minOccurs="0"/> + + <xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"> + <xsd:annotation> + <xsd:documentation>any additional properties</xsd:documentation> + </xsd:annotation> + </xsd:any> + </xsd:sequence> + </xsd:extension> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="ZustelladresseTyp"> + <xsd:sequence> + <xsd:element ref="Adresszeile" minOccurs="0"/> + <xsd:element ref="Strassenname" minOccurs="0"/> + <xsd:element ref="Orientierungsnummer" minOccurs="0"/> + <xsd:element ref="Gebaeude" minOccurs="0"/> + <xsd:element ref="Nutzungseinheit" minOccurs="0"/> + <xsd:element ref="Postfach" minOccurs="0"/> + <xsd:element ref="Wohnsitzqualitaet" minOccurs="0"/> + <xsd:element ref="Abgabestelle" minOccurs="0"/> + <xsd:element ref="Nutzungseinheitlaufnummer" minOccurs="0"/> + <xsd:element name="AdressRegisterEintrag" minOccurs="0"> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="Adresscode" minOccurs="0"/> + <xsd:element ref="Subcode" minOccurs="0"/> + <xsd:element ref="Objektnummer" minOccurs="0"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + </xsd:sequence> + </xsd:complexType> + + <xsd:element name="InternetAdresse" type="InternetAdresseTyp" > + <xsd:annotation> + <xsd:documentation>Entspricht InternetAddress</xsd:documentation> + </xsd:annotation> + </xsd:element> + <xsd:element name="TelefonAdresse" type="TelefonAdresseTyp" > + <xsd:annotation> + <xsd:documentation>Container für Telefonnummern, entspricht TelephoneAddress</xsd:documentation> + </xsd:annotation> + </xsd:element> + + <xsd:complexType name="InternetAdresseTyp"> + <xsd:annotation> + <xsd:documentation>internet based communication</xsd:documentation> + </xsd:annotation> + <xsd:complexContent> + <xsd:extension base="AbstractAddressType"> + <xsd:sequence minOccurs="0"> + <xsd:element ref="dsig:KeyInfo" minOccurs="0"> + <xsd:annotation> + <xsd:documentation>certificate for secure communication</xsd:documentation> + </xsd:annotation> + </xsd:element> + <xsd:element name="Adresse"> + <xsd:annotation> + <xsd:documentation>eURI: mail-Adresse, Web, FTP, LDAP, ..., entspricht Address</xsd:documentation> + </xsd:annotation> + <xsd:simpleType> + <xsd:restriction base="xsd:anyURI"> + <xsd:minLength value="0"/> + <xsd:maxLength value="60"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"> + <xsd:annotation> + <xsd:documentation>any additional properties</xsd:documentation> + </xsd:annotation> + </xsd:any> + </xsd:sequence> + </xsd:extension> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="TelefonAdresseTyp"> + <xsd:annotation> + <xsd:documentation>phone numbers</xsd:documentation> + </xsd:annotation> + <xsd:complexContent> + <xsd:extension base="AbstractAddressType"> + <xsd:sequence> + <xsd:element name="Typ"> + <xsd:annotation> + <xsd:documentation>type of phononumber - category (eg 'Festnetz', 'Mobile', 'fax', ...)</xsd:documentation> + </xsd:annotation> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:enumeration value="Festnetz"/> + <xsd:enumeration value="Mobil"/> + <xsd:enumeration value="Fax"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Nummer" type="TelekomNummerTyp"> + <xsd:annotation> + <xsd:documentation>phonenumber</xsd:documentation> + </xsd:annotation> + </xsd:element> + <xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"> + <xsd:annotation> + <xsd:documentation>any additional properties</xsd:documentation> + </xsd:annotation> + </xsd:any> + </xsd:sequence> + </xsd:extension> + </xsd:complexContent> + </xsd:complexType> + + <xsd:complexType name="TelekomNummerTyp"> + <xsd:choice> + <xsd:element ref="FormatierteNummer"/> + <xsd:group ref="TelekomNummernGruppe"/> + </xsd:choice> + </xsd:complexType> + + <xsd:group name="TelekomNummernGruppe"> + <xsd:sequence> + <xsd:element ref="InternationalerLaendercode" minOccurs="0"/> + <xsd:element ref="NationalNummer" minOccurs="0"/> + <xsd:element ref="Vorwahl" minOccurs="0"/> + <xsd:element ref="Anschlussnummer"/> + <xsd:element ref="Klappe" minOccurs="0"/> + </xsd:sequence> + </xsd:group> + + <xsd:element name="InternationalerLaendercode" type="xsd:string"> + <xsd:annotation> + <xsd:documentation>entspricht InternationalCountryCode</xsd:documentation> + </xsd:annotation> + </xsd:element> + <xsd:element name="NationalNummer" type="xsd:string"> + <xsd:annotation> + <xsd:documentation>entspricht NationalNumber</xsd:documentation> + </xsd:annotation> + </xsd:element> + <xsd:element name="Vorwahl" type="xsd:string"> + <xsd:annotation> + <xsd:documentation>entspricht AreaCityCode</xsd:documentation> + </xsd:annotation> + </xsd:element> + <xsd:element name="Anschlussnummer" type="xsd:string"> + <xsd:annotation> + <xsd:documentation>entspricht SubscriberNumber</xsd:documentation> + </xsd:annotation> + </xsd:element> + <xsd:element name="FormatierteNummer"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="25"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Klappe" type="xsd:string"> + <xsd:annotation> + <xsd:documentation>entspricht Extension</xsd:documentation> + </xsd:annotation> + </xsd:element> + + + <xsd:element name="Abgabestelle" type="xsd:boolean"/> + + <xsd:element name="Wohnsitzqualitaet"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:enumeration value="H"/> + <xsd:enumeration value="N"/> + <xsd:enumeration value="O"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="ISOCode3"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[A-Z]{3}"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Staatscode"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[A-Z]{3}"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Staatsname"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="54"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Postleitzahl"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="10"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Region"> + <xsd:annotation> + <xsd:documentation>entspricht Region</xsd:documentation> + </xsd:annotation> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="54"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="Bundesland"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:enumeration value="Wien"/> + <xsd:enumeration value="Niederösterreich"/> + <xsd:enumeration value="Burgenland"/> + <xsd:enumeration value="Oberösterreich"/> + <xsd:enumeration value="Steiermark"/> + <xsd:enumeration value="Salzburg"/> + <xsd:enumeration value="Kärnten"/> + <xsd:enumeration value="Tirol"/> + <xsd:enumeration value="Vorarlberg"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Gemeinde"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="54"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Gemeindekennziffer"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[0-9]{5}"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Ortschaft"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:minLength value="1"/> + <xsd:maxLength value="54"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="OrtschaftZweisprachig"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:minLength value="0"/> + <xsd:maxLength value="45"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="Adresscode"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[0-9;A-Z]{7}"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Subcode"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[0-9]{3}"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Nutzungseinheitlaufnummer"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[0-9]{4}"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Objektnummer"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[0-9;A-Z]{7}"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="Strassenname"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="54"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="Orientierungsnummer"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="32"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="Gebaeude"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="75"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="Nutzungseinheit"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="40"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="Adresszeile"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="54"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="Postfach"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="20"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + +</xsd:schema> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/PersonExport.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/PersonExport.xsd new file mode 100644 index 00000000..ae0b5712 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/PersonExport.xsd @@ -0,0 +1,107 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Name: PersonExport.xsd + Zweck: Definiert allgemein nutzbare Export-Schnittstelle um eine Liste von Personen abzubilden. + Author(s): Ehrenmüller Oliver, ZMR-SU + + Aenderungshistorie: + 2009-07-20 teo: Überarbeitung PersonExportElementType + 2009-07-08 teo: erstellt +--> + +<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + <xsd:annotation> + <xsd:documentation>Definiert allgemein nutzbare Export-Schnittstelle um eine Liste von Personen abzubilden.</xsd:documentation> + </xsd:annotation> + <xsd:include schemaLocation="InfoFachlich.xsd"/> + + <xsd:element name="PersonExport" type="PersonExportType"> + <xsd:annotation> + <xsd:documentation>Root-Element des Personenexports.</xsd:documentation> + </xsd:annotation> + </xsd:element> + + <xsd:complexType name="PersonExportType"> + <xsd:annotation> + <xsd:documentation>Root-Element des Personenexports.</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element ref="Message"/> + <xsd:element ref="Stichtag"/> + <xsd:element name="Database"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:minLength value="1"/> + <xsd:maxLength value="20"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Person" type="PersonExportElementType" minOccurs="0" maxOccurs="unbounded"> + <xsd:annotation> + <xsd:documentation> + Gruppiert nach Personen werden alle Elemente in dieser + Liste abgebildet. + </xsd:documentation> + </xsd:annotation> + </xsd:element> + </xsd:sequence> + </xsd:complexType> + + <xsd:complexType name="PersonExportElementType"> + <xsd:annotation> + <xsd:documentation>Dieser Type beinhaltet alle Elemente die zu einer Person gehören.</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element name="ID" type="ENTITYIDType"/> + <xsd:element name="Typ" type="xsd:string"/> + <xsd:element name="Satz" type="PersonExportSatzType" minOccurs="0" maxOccurs="unbounded"> + <xsd:annotation> + <xsd:documentation> + Diese Liste beinhaltet alle Sätze die zu einer + Person gehören. Unabhängig von der Tabelle oder + Strang-Historie. + Fehlt die Liste, ist die Entity zu löschen. + </xsd:documentation> + </xsd:annotation> + </xsd:element> + </xsd:sequence> + </xsd:complexType> + + <xsd:complexType name="PersonExportSatzType"> + <xsd:annotation> + <xsd:documentation> + Dieser Type beinhaltet alle Elemente die sich auf einen Eintrag + in einer beliebigen Tabelle beziehen. + </xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element name="Tabelle"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:minLength value="1"/> + <xsd:maxLength value="20"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element ref="EntityID"/> + <xsd:element name="RecID" type="ENTITYIDType"/> + <xsd:element name="Created" type="TimestampType"/> + <xsd:element name="Feld" type="PersonExportFeldType" maxOccurs="unbounded"/> + </xsd:sequence> + </xsd:complexType> + + <xsd:complexType name="PersonExportFeldType"> + <xsd:annotation> + <xsd:documentation>Generiersche Name/Wert-Paare für Export</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element name="Name" type="xsd:string"/> + <xsd:element name="Wert" type="xsd:string"/> + </xsd:sequence> + </xsd:complexType> + +</xsd:schema> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/PersonFelder.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/PersonFelder.xsd new file mode 100644 index 00000000..0a80e0de --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/PersonFelder.xsd @@ -0,0 +1,70 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Name: PersonFelder.xsd +Zweck: Definiert allgemein nutzbare Felder für Personendaten +Author(s): Tschurtschenthaler Thomas, ZMR-SU + +Aenderungshistorie: +2006-06-26 tsch: GeburtsdatumBis hinzugefügt +2005-08-30 tsch: OrdnungsZahlType hinzugefügt +2004-01-15 tsch: SVNummer hinzugefügt +2004-06-24 tsch: OrdnungsZahl, Titel hinzugefügt +2004-01-27 tsch: Erstellung +--> + +<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + <xsd:include schemaLocation="SimpleTypes.xsd"/> + + <xsd:annotation> + <xsd:documentation>Personendaten-Felder</xsd:documentation> + </xsd:annotation> + <xsd:element name="ZMRZahl" type="ZMRZahlType"/> + + <xsd:simpleType name="ZMRZahlType"> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[0-9]{12}"/> + </xsd:restriction> + </xsd:simpleType> + + <xsd:element name="OrdnungsZahl" type="OrdnungsZahlType"/> + + <xsd:simpleType name="OrdnungsZahlType"> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[0-9]{12}"/> + </xsd:restriction> + </xsd:simpleType> + + <xsd:element name="SVNummer"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[0-9]{10}"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="Titel"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="45"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="StaatZugezogen" type="StaatenNameType"/> + <xsd:element name="StaatVerzogen" type="StaatenNameType"/> + + <xsd:element name="GeburtsdatumBis"> + <xsd:simpleType> + <xsd:annotation> + <xsd:documentation>simple type for dates (union), which may omit day and/or month</xsd:documentation> + </xsd:annotation> + <xsd:union memberTypes="xsd:date xsd:gYearMonth xsd:gYear"/> + </xsd:simpleType> + </xsd:element> +</xsd:schema> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/SimpleTypes.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/SimpleTypes.xsd new file mode 100644 index 00000000..fb02488d --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/SimpleTypes.xsd @@ -0,0 +1,173 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Name: SimpleTypes.xsd +Zweck: Definiert allgemein nutzbare simple Datentypen +Author(s): Tschurtschenthaler Thomas, ZMR-SU + +2010-08-25 teo: ZMR-339: ID 343 - USERID DB-Feld erweitern +2006-05-03 tsch: KGNummerType hinzugefügt +2004-10-27 tsch: BehoerdenschluesselType hinzugefügt +2004-09-09 tsch: RegisterType hinzugefügt +2004-09-08 tsch: BenutzerNameType hinzugefügt +2004-08-17 tsch: GemeindeNrType hinzugefügt +2004-06-18 tsch: GrundTextType hinzugefügt +--> + +<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + + <xsd:simpleType name="IntegerType"> + <xsd:annotation> + <xsd:documentation>IntegerType: nicht negativer Integer mit Maximalwert 2^31-1 (Beschränkung durch Datenbank)</xsd:documentation> + </xsd:annotation> + <xsd:restriction base="xsd:nonNegativeInteger"> + <xsd:maxExclusive value="2147483648"/> + </xsd:restriction> + </xsd:simpleType> + + <xsd:simpleType name="DatumType"> + <xsd:annotation> + <xsd:documentation>DatumType: Format richtet sich nach xsd:date, '00' bei Monat und Tag erlaubt</xsd:documentation> + </xsd:annotation> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[0-9]{4}[\-][0-9]{2}[\-][0-9]{2}"/> + </xsd:restriction> + </xsd:simpleType> + + + <xsd:simpleType name="TimestampType"> + <xsd:annotation> + <xsd:documentation>TimestampType: Format richtet sich nach xsd:dateTime, Angabe der Millisekunden ist Pflicht, Zeitzone nicht erlaubt</xsd:documentation> + </xsd:annotation> + <xsd:restriction base="xsd:dateTime"> + <xsd:pattern value="[0-9]{4}[\-][0-9]{2}[\-][0-9]{2}[T][0-9]{2}[:][0-9]{2}[:][0-9]{2}[.][0-9]{3}"/> + </xsd:restriction> + </xsd:simpleType> + + <xsd:simpleType name="IDType"> + <xsd:annotation> + <xsd:documentation>IDs</xsd:documentation> + </xsd:annotation> + <xsd:restriction base="xsd:unsignedLong"> + </xsd:restriction> + </xsd:simpleType> + <xsd:simpleType name="ENTITYIDType"> + <xsd:annotation> + <xsd:documentation>Entity-IDs (können auch alphanumerisch sein, z.B. alte edvzahlen)</xsd:documentation> + </xsd:annotation> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="64"/> + </xsd:restriction> + </xsd:simpleType> + + <xsd:simpleType name="StaatenNameType"> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="45"/> + </xsd:restriction> + </xsd:simpleType> + + <xsd:simpleType name="GrundCodeType"> + <xsd:restriction base="xsd:string" > + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="20"/> + </xsd:restriction> + </xsd:simpleType> + <xsd:simpleType name="GrundTextType"> + <xsd:restriction base="xsd:string"> + <xsd:minLength value="1"/> + <xsd:maxLength value="50"/> + </xsd:restriction> + </xsd:simpleType> + <xsd:simpleType name="GrundFreitextType"> + <xsd:restriction base="xsd:string"> + <xsd:minLength value="0"/> + <xsd:maxLength value="228"/> + </xsd:restriction> + </xsd:simpleType> + + <xsd:simpleType name="BehoerdenNrType"> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[0-9]{6}"/> + </xsd:restriction> + </xsd:simpleType> + <xsd:simpleType name="BehoerdenschluesselType"> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[0-9]{6}|C[0-9]{5}"/> + </xsd:restriction> + </xsd:simpleType> + <xsd:simpleType name="GemeindeNrType"> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[0-9]{5}"/> + </xsd:restriction> + </xsd:simpleType> + <xsd:simpleType name="KGNummerType"> + <xsd:restriction base="xsd:string"> + <xsd:minLength value="5"/> + <xsd:maxLength value="5"/> + </xsd:restriction> + </xsd:simpleType> + <xsd:simpleType name="GemeindenameType"> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="54"/> + </xsd:restriction> + </xsd:simpleType> + <xsd:simpleType name="KundenNrType"> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[0-9]{5,6}"/> + </xsd:restriction> + </xsd:simpleType> + <xsd:simpleType name="OrgTypType"> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="20"/> + </xsd:restriction> + </xsd:simpleType> + <xsd:simpleType name="OrgCodeType"> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="20"/> + </xsd:restriction> + </xsd:simpleType> + <xsd:simpleType name="BezugsfeldType"> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="50"/> + </xsd:restriction> + </xsd:simpleType> + <xsd:simpleType name="BenutzerType"> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="100"/> + </xsd:restriction> + </xsd:simpleType> + <xsd:simpleType name="BenutzerNameType"> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="45"/> + </xsd:restriction> + </xsd:simpleType> + <xsd:simpleType name="RegisterType"> + <xsd:restriction base="xsd:string"> + <xsd:enumeration value="ZMR"/> + <xsd:enumeration value="EGR"/> + <xsd:enumeration value="LMR"/> + <xsd:enumeration value="ZPR"/> + </xsd:restriction> + </xsd:simpleType> + +</xsd:schema> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/W3C-XMLDSig.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/W3C-XMLDSig.xsd new file mode 100644 index 00000000..3745c774 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/W3C-XMLDSig.xsd @@ -0,0 +1,274 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- PUBLIC "-//W3C//DTD XMLSchema 200102//EN" "http://www.w3.org/2001/XMLSchema.dtd" + --> +<!--<!DOCTYPE schema + [ + <!ATTLIST schema + xmlns:ds CDATA #FIXED "http://www.w3.org/2000/09/xmldsig#" +> + <!ENTITY dsig 'http://www.w3.org/2000/09/xmldsig#'> + <!ENTITY % p ''> + <!ENTITY % s ''> +]> --> +<!-- Schema for XML Signatures + http://www.w3.org/2000/09/xmldsig# + $Revision: 1.1 $ on $Date: 2002/11/11 16:24:27 $ by $Author: Linauer $ + + Copyright 2001 The Internet Society and W3C (Massachusetts Institute + of Technology, Institut National de Recherche en Informatique et en + Automatique, Keio University). All Rights Reserved. + http://www.w3.org/Consortium/Legal/ + + This document is governed by the W3C Software License [1] as described + in the FAQ [2]. + + [1] http://www.w3.org/Consortium/Legal/copyright-software-19980720 + [2] http://www.w3.org/Consortium/Legal/IPR-FAQ-20000620.html#DTD +--> +<schema targetNamespace="http://www.w3.org/2000/09/xmldsig#" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" version="0.1"> + <!-- Basic Types Defined for Signatures --> + <!-- modified to ensure that whiteSpace is preserved +<simpleType name="CryptoBinary"> + <restriction base="base64Binary"> + </restriction> +</simpleType> + --> + <simpleType name="CryptoBinary"> + <restriction base="string"> + <whiteSpace value="preserve"/> + <pattern value="[A-Za-z0-9\+/=\n\r\t ]*"/> + </restriction> + </simpleType> + <!-- Start Signature --> + <element name="Signature" type="ds:SignatureType"/> + <complexType name="SignatureType"> + <sequence> + <element ref="ds:SignedInfo"/> + <element ref="ds:SignatureValue"/> + <element ref="ds:KeyInfo" minOccurs="0"/> + <element ref="ds:Object" minOccurs="0" maxOccurs="unbounded"/> + </sequence> + <attribute name="Id" type="ID" use="optional"/> + </complexType> + <element name="SignatureValue" type="ds:SignatureValueType"/> + <complexType name="SignatureValueType"> + <simpleContent> + <extension base="ds:CryptoBinary"> + <attribute name="Id" type="ID" use="optional"/> + </extension> + </simpleContent> + </complexType> + <!-- Start SignedInfo --> + <element name="SignedInfo" type="ds:SignedInfoType"/> + <complexType name="SignedInfoType"> + <sequence> + <element ref="ds:CanonicalizationMethod"/> + <element ref="ds:SignatureMethod"/> + <element ref="ds:Reference" maxOccurs="unbounded"/> + </sequence> + <attribute name="Id" type="ID" use="optional"/> + </complexType> + <element name="CanonicalizationMethod" type="ds:CanonicalizationMethodType"/> + <complexType name="CanonicalizationMethodType" mixed="true"> + <sequence> + <any namespace="##any" minOccurs="0" maxOccurs="unbounded"/> + <!-- (0,unbounded) elements from (1,1) namespace --> + </sequence> + <attribute name="Algorithm" type="anyURI" use="required"/> + </complexType> + <element name="SignatureMethod" type="ds:SignatureMethodType"/> + <complexType name="SignatureMethodType" mixed="true"> + <sequence> + <element name="HMACOutputLength" type="ds:HMACOutputLengthType" minOccurs="0"/> + <any namespace="##other" minOccurs="0" maxOccurs="unbounded"/> + <!-- (0,unbounded) elements from (1,1) external namespace --> + </sequence> + <attribute name="Algorithm" type="anyURI" use="required"/> + </complexType> + <!-- Start Reference --> + <element name="Reference" type="ds:ReferenceType"/> + <complexType name="ReferenceType"> + <sequence> + <element ref="ds:Transforms" minOccurs="0"/> + <element ref="ds:DigestMethod"/> + <element ref="ds:DigestValue"/> + </sequence> + <attribute name="Id" type="ID" use="optional"/> + <attribute name="URI" type="anyURI" use="optional"/> + <attribute name="Type" type="anyURI" use="optional"/> + </complexType> + <element name="Transforms" type="ds:TransformsType"/> + <complexType name="TransformsType"> + <sequence> + <element ref="ds:Transform" maxOccurs="unbounded"/> + </sequence> + </complexType> + <element name="Transform" type="ds:TransformType"/> + <complexType name="TransformType" mixed="true"> + <choice minOccurs="0" maxOccurs="unbounded"> + <any namespace="##other" processContents="lax"/> + <element name="XPath" type="string"/> + <!-- (1,1) elements from (0,unbounded) namespaces --> + </choice> + <attribute name="Algorithm" type="anyURI" use="required"/> + </complexType> + <!-- End Reference --> + <element name="DigestMethod" type="ds:DigestMethodType"/> + <complexType name="DigestMethodType" mixed="true"> + <sequence> + <any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> + </sequence> + <attribute name="Algorithm" type="anyURI" use="required"/> + </complexType> + <element name="DigestValue" type="ds:DigestValueType"/> + <simpleType name="DigestValueType"> + <restriction base="ds:CryptoBinary"/> + </simpleType> + <!-- End SignedInfo --> + <!-- Start KeyInfo --> + <element name="KeyInfo" type="ds:KeyInfoType"/> + <complexType name="KeyInfoType" mixed="true"> + <choice maxOccurs="unbounded"> + <element ref="ds:KeyName"/> + <element ref="ds:KeyValue"/> + <element ref="ds:RetrievalMethod"/> + <element ref="ds:X509Data"/> + <element ref="ds:PGPData"/> + <element ref="ds:SPKIData"/> + <element ref="ds:MgmtData"/> + <any namespace="##other" processContents="lax"/> + <!-- (1,1) elements from (0,unbounded) namespaces --> + </choice> + <attribute name="Id" type="ID" use="optional"/> + </complexType> + <element name="KeyName" type="string"/> + <element name="MgmtData" type="string"/> + <element name="KeyValue" type="ds:KeyValueType"/> + <complexType name="KeyValueType" mixed="true"> + <choice> + <element ref="ds:DSAKeyValue"/> + <element ref="ds:RSAKeyValue"/> + <any namespace="##other" processContents="lax"/> + </choice> + </complexType> + <element name="RetrievalMethod" type="ds:RetrievalMethodType"/> + <complexType name="RetrievalMethodType"> + <sequence> + <element name="Transforms" type="ds:TransformsType" minOccurs="0"/> + </sequence> + <attribute name="URI" type="anyURI"/> + <attribute name="Type" type="anyURI" use="optional"/> + </complexType> + <!-- Start X509Data --> + <element name="X509Data" type="ds:X509DataType"/> + <complexType name="X509DataType"> + <sequence maxOccurs="unbounded"> + <choice> + <element name="X509IssuerSerial" type="ds:X509IssuerSerialType"/> + <element name="X509SKI" type="ds:CryptoBinary"/> + <element name="X509SubjectName" type="string"/> + <element name="X509Certificate" type="ds:CryptoBinary"/> + <element name="X509CRL" type="ds:CryptoBinary"/> + <any namespace="##other" processContents="lax"/> + </choice> + </sequence> + </complexType> + <complexType name="X509IssuerSerialType"> + <sequence> + <element name="X509IssuerName" type="string"/> + <element name="X509SerialNumber" type="integer"/> + </sequence> + </complexType> + <!-- End X509Data --> + <!-- Begin PGPData --> + <element name="PGPData" type="ds:PGPDataType"/> + <complexType name="PGPDataType"> + <choice> + <sequence> + <element name="PGPKeyID" type="ds:CryptoBinary"/> + <element name="PGPKeyPacket" type="ds:CryptoBinary" minOccurs="0"/> + <any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> + </sequence> + <sequence> + <element name="PGPKeyPacket" type="ds:CryptoBinary"/> + <any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> + </sequence> + </choice> + </complexType> + <!-- End PGPData --> + <!-- Begin SPKIData --> + <element name="SPKIData" type="ds:SPKIDataType"/> + <complexType name="SPKIDataType"> + <sequence maxOccurs="unbounded"> + <element name="SPKISexp" type="ds:CryptoBinary"/> + <any namespace="##other" processContents="lax" minOccurs="0"/> + </sequence> + </complexType> + <!-- End SPKIData --> + <!-- End KeyInfo --> + <!-- Start Object (Manifest, SignatureProperty) --> + <element name="Object" type="ds:ObjectType"/> + <complexType name="ObjectType" mixed="true"> + <sequence minOccurs="0" maxOccurs="unbounded"> + <any namespace="##any" processContents="lax"/> + </sequence> + <attribute name="Id" type="ID" use="optional"/> + <attribute name="MimeType" type="string" use="optional"/> + <attribute name="Encoding" type="anyURI" use="optional"/> + <!-- add a grep facet --> + </complexType> + <element name="Manifest" type="ds:ManifestType"/> + <complexType name="ManifestType"> + <sequence> + <element ref="ds:Reference" maxOccurs="unbounded"/> + </sequence> + <attribute name="Id" type="ID" use="optional"/> + </complexType> + <element name="SignatureProperties" type="ds:SignaturePropertiesType"/> + <complexType name="SignaturePropertiesType"> + <sequence> + <element ref="ds:SignatureProperty" maxOccurs="unbounded"/> + </sequence> + <attribute name="Id" type="ID" use="optional"/> + </complexType> + <element name="SignatureProperty" type="ds:SignaturePropertyType"/> + <complexType name="SignaturePropertyType" mixed="true"> + <choice maxOccurs="unbounded"> + <any namespace="##other" processContents="lax"/> + <!-- (1,1) elements from (1,unbounded) namespaces --> + </choice> + <attribute name="Target" type="anyURI" use="required"/> + <attribute name="Id" type="ID" use="optional"/> + </complexType> + <!-- End Object (Manifest, SignatureProperty) --> + <!-- Start Algorithm Parameters --> + <simpleType name="HMACOutputLengthType"> + <restriction base="integer"/> + </simpleType> + <!-- Start KeyValue Element-types --> + <element name="DSAKeyValue" type="ds:DSAKeyValueType"/> + <complexType name="DSAKeyValueType"> + <sequence> + <sequence minOccurs="0"> + <element name="P" type="ds:CryptoBinary"/> + <element name="Q" type="ds:CryptoBinary"/> + </sequence> + <element name="J" type="ds:CryptoBinary" minOccurs="0"/> + <element name="G" type="ds:CryptoBinary" minOccurs="0"/> + <element name="Y" type="ds:CryptoBinary"/> + <sequence minOccurs="0"> + <element name="Seed" type="ds:CryptoBinary"/> + <element name="PgenCounter" type="ds:CryptoBinary"/> + </sequence> + </sequence> + </complexType> + <element name="RSAKeyValue" type="ds:RSAKeyValueType"/> + <complexType name="RSAKeyValueType"> + <sequence> + <element name="Modulus" type="ds:CryptoBinary"/> + <element name="Exponent" type="ds:CryptoBinary"/> + </sequence> + </complexType> + <!-- End KeyValue Element-types --> + <!-- End Signature --> +</schema> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/Workflow.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/Workflow.xsd new file mode 100644 index 00000000..ce300b0e --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/eingebunden/Workflow.xsd @@ -0,0 +1,200 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Name: Workflow.xsd +Zweck: Definiert Datentypen für die Geschäftsprozesssteuerung der Usecases +Author(s): Tschurtschenthaler Thomas, ZMR-SU + +Aenderungshistorie: +2004-08-02 tsch: Vorgang WorkflowsAuflisten hinzugefügt +2004-06-29 tsch: Subprozess Struktur vereinfacht +2004-06-14 tsch: ProzessAnzeigeenamen hinzugefügt +2004-06-14 tsch: Optionale VerlassenerProzessInstanzID hinzugefügt +2004-05-19 tsch: SequenceID hinzugefügt, Umbenennung Process->Prozess +2004-05-17 tsch: Umbenennungen: Activity nach Vorgang, Workflowitems nach Subprozesse +2004-05-04 tsch: ProcessID->ProcessName, ActivityID->ActivityName +2003-12-12 tsch: Erstellung +--> + +<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + + <xsd:include schemaLocation="SimpleTypes.xsd"/> + + + <xsd:element name="WorkflowInfoClient"> + <xsd:annotation> + <xsd:documentation>Workflowinformationen des Clients</xsd:documentation> + </xsd:annotation> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="ProzessName"/> + <xsd:sequence minOccurs="0"> + <xsd:annotation> + <xsd:documentation> + Wenn der Geschäftsprozess aus mehreren Vorgängen besteht, + müssen die ProzessinstanzID und SequenzID aus der letzten + Server-Response vom Client geschickt werden. + Beim ersten Vorgang eines neuen Geschäftsprozesses dürfen die beiden + Felder nicht geschickt werden. + Bei Beginn einen neuen Geschäftsprozesses SOLLTE die InstanzID des letztzen + Prozesses als VerlassenerProzessInstanzID mitgeschickt werden + </xsd:documentation> + </xsd:annotation> + <xsd:element ref="ProzessInstanzID"/> + <xsd:element ref="VerlassenerProzessInstanzID" minOccurs="0"/> + <xsd:element ref="SequenzID"/> + </xsd:sequence> + <xsd:element ref="VorgangName"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="WorkflowInfoServer"> + <xsd:annotation> + <xsd:documentation>Workflowinformationen des Servers</xsd:documentation> + </xsd:annotation> + <xsd:complexType> + <xsd:sequence> + <xsd:annotation> + <xsd:documentation> + Der Prozessname dient zur technischen Identifikation des Prozesses, der ProzessAnzeigeName + kann zur Anzeige auf der Benutzeroberfläche verwendet werden. + </xsd:documentation> + </xsd:annotation> + <xsd:element ref="ProzessName"/> + <xsd:element ref="ProzessAnzeigeName" minOccurs="0"/> + <xsd:element ref="ProzessInstanzID"/> + <xsd:element ref="ProzessStatus"/> + <xsd:element ref="SequenzID"/> + <xsd:element ref="Subprozess" minOccurs="1" maxOccurs="unbounded"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:complexType name="SubprozessType"> + <xsd:sequence> + <xsd:annotation> + <xsd:documentation> + Der VorgangName dient zur technischen Identifikation des Vorgangs, der VorgangAnzeigeName + kann zur Anzeige auf der Benutzeroberfläche verwendet werden. + Die Elemente VorgangRestriction und VorgangConditions werden in näherer Zukunft nicht implementiert + und können ignoriert werden (werden nicht befüllt). + </xsd:documentation> + </xsd:annotation> + <xsd:element ref="VorgangName"/> + <xsd:element ref="VorgangAnzeigeName" minOccurs="0"/> + <xsd:element ref="VorgangStatus"/> + <xsd:element ref="VorgangRestriction" minOccurs="0" maxOccurs="unbounded"/> + <xsd:element ref="VorgangConditions" minOccurs="0"/> + <xsd:element name="Required" type="xsd:boolean"/> + <xsd:element name="Visible" type="xsd:boolean"/> + <xsd:element ref="Subprozess" minOccurs="0" maxOccurs="unbounded"/> + </xsd:sequence> + </xsd:complexType> + + <xsd:element name="Subprozess" type="SubprozessType"/> + + <xsd:element name="ProzessInstanzID" type="IDType"/> + <xsd:element name="VerlassenerProzessInstanzID" type="IDType"/> + <xsd:element name="SequenzID" type="IDType"/> + + <xsd:element name="ProzessName"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="90"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="ProzessAnzeigeName"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="90"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="ProzessStatus"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:enumeration value="O"/> + <xsd:enumeration value="A"/> + <xsd:enumeration value="C"/> + <xsd:enumeration value="E"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="VorgangName"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="90"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="VorgangAnzeigeName"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="90"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="VorgangStatus"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:enumeration value="O"/> + <xsd:enumeration value="A"/> + <xsd:enumeration value="C"/> + <xsd:enumeration value="E"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="VorgangRestriction"> + <xsd:annotation> + <xsd:documentation>regionale Restriktion, die fuer den Vorgang gilt (z.B. Gemeindenummer, fuer die Personen angemeldet werden duerfen.</xsd:documentation> + </xsd:annotation> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="RestrictionType" type="xsd:string"/> + <xsd:element name="RestrictionValue" type="xsd:string"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + + <xsd:element name="VorgangConditions"> + <xsd:annotation> + <xsd:documentation>Liste von Bedingungen, unter denen das Item aktiv wird.</xsd:documentation> + </xsd:annotation> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="SelectedItems" minOccurs="1" maxOccurs="unbounded"> + <xsd:annotation> + <xsd:documentation>Liste von alternativen Voraussetzungen (ODER) für die Anwählbarkeit der Activity. Ein Eintrag repräsentiert eine Reihe von Objekten, die im Suchergebnis ausgewählt sein müssen (UND).</xsd:documentation> + </xsd:annotation> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="SelectedItem" type="xsd:string" minOccurs="1" maxOccurs="unbounded"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + +</xsd:schema> + diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/zmr/Adresssuche.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/zmr/Adresssuche.xsd new file mode 100644 index 00000000..4952ff44 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/zmr/Adresssuche.xsd @@ -0,0 +1,128 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Name: Adresssuche.xsd +Zweck: Definiert Datentypen für die Suche nach offiziellen STATA-Adressen im ZMR +Author(s): Tschurtschenthaler Thomas, ZMR-SU + +Aenderungshistorie: +2009-11-20 mp: +Gebäudeeigenschaft, +Nutzungsart +2005-06-15 pwag: CQ1370: Suchart ADRESSPRUEFUNG hinzugefügt +2004-11-15 tsch: Detailgrad Gemeinde hinzugefügt +2004-07-30 tsch: HauptIdentadresse->HauptIdent; Felder hinzu: Adressstatus, Adressschlüssel, HauptIdent, Hofname, Gebaeudeunterscheidung, GBDUntteil, InfoMeldewesen +2004-07-08 tsch: Felder Adresszusatz, HauptIdentadresse hinzugefügt +2004-06-24 tsch: GBRRefkey hinzugefügt +2004-05-17 tsch: Organisation entfernt +2004-01-27 tsch: Erstellung +--> + +<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" + xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" + xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" + elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + + <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/> + <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/> + + <xsd:element name="AdresssucheRequest"> + <xsd:annotation> + <xsd:documentation>Suchdaten für die STATA - Adresssuche im ZMR</xsd:documentation> + </xsd:annotation> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="AdresssucheInfo"/> + <xsd:element ref="Adressdaten"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="AdresssucheResponse"> + <xsd:annotation> + <xsd:documentation>Anfragedaten, sowie Suchergebnis oder Text-Meldung (falls nichts gefunden)</xsd:documentation> + </xsd:annotation> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="AdresssucheAnfrage"/> + <xsd:element ref="base:Message"/> + <!-- gibt an, ob Klaerungsadressen erlaubt sind oder nicht --> + <xsd:element name="inclKlaerungsadressen" type="xsd:boolean" minOccurs="0"/> + <xsd:element ref="Adresssuchergebnis"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="AdresssucheAnfrage"> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="AdresssucheInfo"/> + <xsd:element ref="Adressdaten"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="AdresssucheInfo" type="AdresssucheInfoType"/> + <xsd:complexType name="AdresssucheInfoType"> + <xsd:annotation> + <xsd:documentation>Fachliche Informationen zur Adresssuche</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element name="Suchart"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:enumeration value="ADRESSSUCHE"/> + <xsd:enumeration value="IDENTEADRESSENSUCHE"/> + <xsd:enumeration value="ADRESSPRUEFUNG"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + </xsd:sequence> + </xsd:complexType> + + <xsd:element name="Adresssuchergebnis" type="AdresssuchergebnisType"/> + <xsd:complexType name="AdresssuchergebnisType"> + <xsd:sequence> + <xsd:element name="Detailgrad"> + <xsd:annotation> + <xsd:documentation>Gibt der Detailgrad der Adressen im Suchergebnis an</xsd:documentation> + </xsd:annotation> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:enumeration value="Gemeinde"/> + <xsd:enumeration value="Ortschaft"/> + <xsd:enumeration value="Strassenname"/> + <xsd:enumeration value="Orientierungsnummer"/> + <xsd:enumeration value="Gebaeudeteil"/> + <xsd:enumeration value="Tuer"/> + <xsd:enumeration value="Gesamtadresse"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element ref="base:GefundeneSaetze"> + <xsd:annotation> + <xsd:documentation>Gesamtanzahl der gefundenen Sätze</xsd:documentation> + </xsd:annotation> + </xsd:element> + <xsd:element ref="Adressdaten" minOccurs="0" maxOccurs="unbounded"/> + </xsd:sequence> + </xsd:complexType> + + <xsd:element name="Adressdaten"> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="cio:PostAdresse" minOccurs="0"/> + <xsd:element ref="base:Adressstatus" minOccurs="0"/> + <xsd:element ref="base:Adressschluessel" minOccurs="0"/> + <xsd:element ref="base:HauptIdent" minOccurs="0"/> + <xsd:element ref="base:NameZuteil" minOccurs="0"/> + <xsd:element ref="base:Hofname" minOccurs="0"/> + <xsd:element ref="base:Gebaeudeunterscheidung" minOccurs="0"/> + <xsd:element ref="base:GBDUntteil" minOccurs="0"/> + <xsd:element ref="base:InfoMeldewesen" minOccurs="0"/> + <xsd:element ref="base:GbdEigenschaft" minOccurs="0"/> + <xsd:element ref="base:NtzArt" minOccurs="0"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> +</xsd:schema> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/zmr/ZMRProxy.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/zmr/ZMRProxy.xsd new file mode 100644 index 00000000..a29b2b92 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/addresssearching_client/xsd/zmr/ZMRProxy.xsd @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- +Name: ZMRProxy.xsd +Zweck: Fasst alle ZMR-Vorgangs XSD-Files zusammen +Author(s): Tschurtschenthaler Thomas, ZMR-SU + +Aenderungshistorie: +2011-09-05 teo: Änderungsdienst ZWR (PN126) +2010-03-08 teo: Historische Meldungskorrektur +2010-02-01 teo: MeldebestätigungenAnforderung hinzugefügt +2009-08-24 mp: TechnischeAnsicht hinzugefügt +2009-08-06 teo: Auskunftssperre ändern hinzugefügt +2009-05-07 teo: Ummeldeserviceabfrage hinzugefügt +2009-01-23 teo: GISSuche hinzugefügt +2006-11-06 tsch: ORFGISAnforderung hinzugefügt +2006-03-21 tsch: SZRSammelabfrage hinzugefügt +2005-01-14 tsch: Aviso aktivieren entfernt, Gleichstzungtabelle Warten hinzugefügt +2004-11-22 tsch: Gerichtskommissaerabfrage hinzugefügt +2004-09-28 tsch: Wehrfplichtigenanfrage, ablaufende Auskunfssperren-Suche hinzugefügt +2004-09-27 tsch: Storno/Korrektur hinzugefügt +2004-09-09 tsch: SZR-Vorgänge sowie Person trennen/zusammenführen hinzugefügt +2004-08-24 tsch: GISAdressabfrage hinzugefügt +2004-08-17 tsch: Erstellung +--> + +<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" + elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + + <xsd:include schemaLocation="../zmr/Adresssuche.xsd"/> +</xsd:schema> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/szr_client/SZR-1.1.WSDL b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/szr_client/SZR-1.1.WSDL index 3c34458d..3c34458d 100644 --- a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/szr_client/SZR-1.1.WSDL +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/szr_client/SZR-1.1.WSDL diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/szr_client/SZR-1.WSDL b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/szr_client/SZR-1.WSDL index 4ad2645a..4ad2645a 100644 --- a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/szr_client/SZR-1.WSDL +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/szr_client/SZR-1.WSDL diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/szr_client/SZR_v4.0.wsdl b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/szr_client/SZR_v4.0.wsdl index e7f296bd..e7f296bd 100644 --- a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/szr_client/SZR_v4.0.wsdl +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/szr_client/SZR_v4.0.wsdl diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/szr_client/pvp1.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/szr_client/pvp1.xsd index 09c0b1e3..09c0b1e3 100644 --- a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/szr_client/pvp1.xsd +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/szr_client/pvp1.xsd diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/szr_client/pvp19.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/szr_client/pvp19.xsd index 596a2b99..596a2b99 100644 --- a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/szr_client/pvp19.xsd +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/szr_client/pvp19.xsd diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/szr_client/szr.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/szr_client/szr.xsd index 85acfb65..85acfb65 100644 --- a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/szr_client/szr.xsd +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/szr_client/szr.xsd diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/szr_client/szr_ecdsa.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/szr_client/szr_ecdsa.xsd index 87ee80be..87ee80be 100644 --- a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/szr_client/szr_ecdsa.xsd +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/szr_client/szr_ecdsa.xsd diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/szr_client/szr_persondata.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/szr_client/szr_persondata.xsd index 3c9ac932..3c9ac932 100644 --- a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/szr_client/szr_persondata.xsd +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/szr_client/szr_persondata.xsd diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/szr_client/szr_pvp_sec.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/szr_client/szr_pvp_sec.xsd index 5001c1b8..5001c1b8 100644 --- a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/szr_client/szr_pvp_sec.xsd +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/szr_client/szr_pvp_sec.xsd diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/szr_client/szr_v4.0-schemas.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/szr_client/szr_v4.0-schemas.xml index d40efa45..d40efa45 100644 --- a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/szr_client/szr_v4.0-schemas.xml +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/szr_client/szr_v4.0-schemas.xml diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/szr_client/szr_v4.0-wsdl.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/szr_client/szr_v4.0-wsdl.xml index f95c35f0..f95c35f0 100644 --- a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/szr_client/szr_v4.0-wsdl.xml +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/szr_client/szr_v4.0-wsdl.xml diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/szr_client/szr_v4.0.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/szr_client/szr_v4.0.xsd index 2d25f2dc..2d25f2dc 100644 --- a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/szr_client/szr_v4.0.xsd +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/szr_client/szr_v4.0.xsd diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/szr_client/szr_xmldsig.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/szr_client/szr_xmldsig.xsd index 96b50b40..96b50b40 100644 --- a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/szr_client/szr_xmldsig.xsd +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/szr_client/szr_xmldsig.xsd diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/soapenv.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/soapenv.xsd new file mode 100644 index 00000000..cb89c710 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/soapenv.xsd @@ -0,0 +1,125 @@ +<?xml version='1.0' encoding='UTF-8' ?>
+
+<!-- Schema for the SOAP/1.1 envelope
+
+ This schema has been produced using W3C's SOAP Version 1.2 schema
+ found at:
+
+ http://www.w3.org/2001/06/soap-envelope
+
+ Copyright 2001 Martin Gudgin, Developmentor.
+
+ Changes made are the following:
+ - reverted namespace to http://schemas.xmlsoap.org/soap/envelope/
+ - reverted mustUnderstand to only allow 0 and 1 as lexical values
+ - made encodingStyle a global attribute 20020825
+
+ Further changes:
+
+ - removed default value from mustUnderstand attribute declaration - 20030314
+
+ Original copyright:
+
+ Copyright 2001 W3C (Massachusetts Institute of Technology,
+ Institut National de Recherche en Informatique et en Automatique,
+ Keio University). All Rights Reserved.
+ http://www.w3.org/Consortium/Legal/
+
+ This document is governed by the W3C Software License [1] as
+ described in the FAQ [2].
+
+ [1] http://www.w3.org/Consortium/Legal/copyright-software-19980720
+ [2] http://www.w3.org/Consortium/Legal/IPR-FAQ-20000620.html#DTD
+-->
+<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
+ xmlns:tns="http://schemas.xmlsoap.org/soap/envelope/"
+ targetNamespace="http://schemas.xmlsoap.org/soap/envelope/" >
+
+
+ <!-- Envelope, header and body -->
+ <xs:element name="Envelope" type="tns:Envelope" />
+ <xs:complexType name="Envelope" >
+ <xs:sequence>
+ <xs:element ref="tns:Header" minOccurs="0" />
+ <xs:element ref="tns:Body" minOccurs="1" />
+ <xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded" processContents="lax" />
+ </xs:sequence>
+ <xs:anyAttribute namespace="##other" processContents="lax" />
+ </xs:complexType>
+
+ <xs:element name="Header" type="tns:Header" />
+ <xs:complexType name="Header" >
+ <xs:sequence>
+ <xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded" processContents="lax" />
+ </xs:sequence>
+ <xs:anyAttribute namespace="##other" processContents="lax" />
+ </xs:complexType>
+
+ <xs:element name="Body" type="tns:Body" />
+ <xs:complexType name="Body" >
+ <xs:sequence>
+ <xs:any namespace="##any" minOccurs="0" maxOccurs="unbounded" processContents="strict" />
+ </xs:sequence>
+ <xs:anyAttribute namespace="##any" processContents="lax" >
+ <xs:annotation>
+ <xs:documentation>
+ Prose in the spec does not specify that attributes are allowed on the Body element
+ </xs:documentation>
+ </xs:annotation>
+ </xs:anyAttribute>
+ </xs:complexType>
+
+
+ <!-- Global Attributes. The following attributes are intended to be usable via qualified attribute names on any complex type referencing them. -->
+ <xs:attribute name="mustUnderstand" >
+ <xs:simpleType>
+ <xs:restriction base='xs:boolean'>
+ <xs:pattern value='0|1' />
+ </xs:restriction>
+ </xs:simpleType>
+ </xs:attribute>
+ <xs:attribute name="actor" type="xs:anyURI" />
+
+ <xs:simpleType name="encodingStyle" >
+ <xs:annotation>
+ <xs:documentation>
+ 'encodingStyle' indicates any canonicalization conventions followed in the contents of the containing element. For example, the value 'http://schemas.xmlsoap.org/soap/encoding/' indicates the pattern described in SOAP specification
+ </xs:documentation>
+ </xs:annotation>
+ <xs:list itemType="xs:anyURI" />
+ </xs:simpleType>
+
+ <xs:attribute name="encodingStyle" type="tns:encodingStyle" />
+ <xs:attributeGroup name="encodingStyle" >
+ <xs:attribute ref="tns:encodingStyle" />
+ </xs:attributeGroup>
+
+ <xs:element name="Fault" type="tns:Fault" />
+ <xs:complexType name="Fault" final="extension" >
+ <xs:annotation>
+ <xs:documentation>
+ Fault reporting structure
+ </xs:documentation>
+ </xs:annotation>
+ <xs:sequence>
+ <xs:element name="faultcode" type="xs:QName" />
+ <xs:element name="faultstring" type="xs:string" />
+ <xs:element name="faultactor" type="xs:anyURI" minOccurs="0" />
+ <xs:element name="detail" type="tns:detail" minOccurs="0" />
+ </xs:sequence>
+ </xs:complexType>
+
+ <xs:complexType name="detail">
+ <xs:sequence>
+ <xs:any namespace="##any" minOccurs="0" maxOccurs="unbounded" processContents="lax" />
+ </xs:sequence>
+ <xs:anyAttribute namespace="##any" processContents="lax" />
+ </xs:complexType>
+
+</xs:schema>
+
+
+
+
+
+
diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/ablaufendeauskunfssperren/ablaufendeauskunftssperrenrequest.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/ablaufendeauskunfssperren/ablaufendeauskunftssperrenrequest.xml new file mode 100644 index 00000000..173c3894 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/ablaufendeauskunfssperren/ablaufendeauskunftssperrenrequest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>GP_Ablaufende_Auskunftssperren</base:ProzessName> + <base:VorgangName>ZPR_VO_Ablaufende_Auskunftssperren</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:BehoerdenNr>000000</base:BehoerdenNr> + </base:Organisation> + <base:Client>Test</base:Client> + </base:ClientInfo> + <zmr:AblaufendeAuskunftssperrenSucheRequest> + <zmr:SperreBis>2005-01-01T00:00:00.000</zmr:SperreBis> + <base:AnzahlSaetze>10</base:AnzahlSaetze> + </zmr:AblaufendeAuskunftssperrenSucheRequest> + </base:Request> + </soap:Body> +</soap:Envelope>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/ablaufendeauskunfssperren/ablaufendeauskunftssperrenresponse.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/ablaufendeauskunfssperren/ablaufendeauskunftssperrenresponse.xml new file mode 100644 index 00000000..75fbd86f --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/ablaufendeauskunfssperren/ablaufendeauskunftssperrenresponse.xml @@ -0,0 +1,194 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Response> + <base:WorkflowInfoServer> + <base:ProzessName>GP_Ablaufende_Auskunftssperren</base:ProzessName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <base:ProzessStatus>A</base:ProzessStatus> + <base:SequenzID>00034</base:SequenzID> + <base:Subprozess> + <base:VorgangName>ZPR_VO_Ablaufende_Auskunftssperren</base:VorgangName> + <base:VorgangStatus>A</base:VorgangStatus> + <base:Required>false</base:Required> + <base:Visible>true</base:Visible> + </base:Subprozess> + </base:WorkflowInfoServer> + <base:ServerInfo> + <base:GeneriertVon>ZMR Server</base:GeneriertVon> + <base:GeneriertAm>2004-01-26T00:00:00.000</base:GeneriertAm> + <base:ServerTransaktionNr>1234567</base:ServerTransaktionNr> + </base:ServerInfo> + <zmr:AblaufendeAuskunftssperrenSucheResponse> + <zmr:AblaufendeAuskunftssperrenSucheAnfrage> + <zmr:SperreBis>2005-01-01T00:00:00.000</zmr:SperreBis> + <base:AnzahlSaetze>10</base:AnzahlSaetze> + </zmr:AblaufendeAuskunftssperrenSucheAnfrage> + <base:Message> + <base:Number>0003</base:Number> + <base:Text>Es wurde 1 Personen im ZMR gefunden</base:Text> + </base:Message> + <zmr:AblaufendeAuskunftssperreErgebnis> + <base:GefundeneSaetze>1</base:GefundeneSaetze> + <base:SaetzeVon>0</base:SaetzeVon> + <base:SaetzeBis>1</base:SaetzeBis> + <zmr:PersonErgebnisSatz> + <!-- 1. gelieferte Person im Suchergebnis (Personendaten + Meldedaten, historisch und aktuell) --> + <zmr:Personendaten> + <!-- Historienliste der Personendaten. Nur ein PersonErgebnis-Element, wenn nur aktuelle Daten --> + <zmr:PersonErgebnis> + <!-- aktueller Personendaten Gesamtdatensatz --> + <base:ErgebnissatzInfo> + <!-- letzter Änderungs-Zeitpunkt des Person-Gesamtdatensatzes (mit Staatsangehörigkeiten, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <!-- letzter Änderungs-Zeitpunkt der Person-Entity (ohne Staatsangehörigkeiten, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <base:BeginnCode>AMKOR</base:BeginnCode> + <base:BeginnText>Amtliche Korrektur</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <base:ZMRZahl>000111111111</base:ZMRZahl> + <zmr:NatuerlichePerson> + <zmr:PersonenName> + <Vorname>Maximilian</Vorname> + <Familienname>Mustermann</Familienname> + </zmr:PersonenName> + <Geschlecht>männlich</Geschlecht> + <Geburtsdatum>2001-05-07</Geburtsdatum> + <Geburtsort>Wien</Geburtsort> + <Geburtsbundesland>Wien</Geburtsbundesland> + <Geburtsstaat>Österreich</Geburtsstaat> + <zmr:Staatsangehoerigkeit> + <ISOCode3>AUT</ISOCode3> + <StaatsnameDE>Österreich</StaatsnameDE> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2003-01-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2003-01-01T00:00:00.000</base:Von> + <base:BeginnCode>REISEDOK_ANLEGEN</base:BeginnCode> + <base:BeginnText>Reisedokument anlegen</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + </zmr:Staatsangehoerigkeit> + </zmr:NatuerlichePerson> + </zmr:PersonErgebnis> + <zmr:PersonErgebnis> + <!-- historischer Personendaten Gesamtdatensatz (durch Vornamen-Änderung entstanden. Die Staatsagehörigkeit wurde nicht geändert und ist somit mit der im aktuellen Satz identisch--> + <base:ErgebnissatzInfo> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2003-01-01T00:00:00.000</base:Von> + <base:BeginnCode>GEBURT</base:BeginnCode> + <base:BeginnText>Geburt</base:BeginnText> + <base:Bis>2004-01-26T00:00:00.000</base:Bis> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <base:ZMRZahl>000111111111</base:ZMRZahl> + <zmr:NatuerlichePerson> + <zmr:PersonenName> + <Vorname>Hans</Vorname> + <Familienname>Mustermann</Familienname> + </zmr:PersonenName> + <Geschlecht>männlich</Geschlecht> + <Geburtsdatum>2001-05-07</Geburtsdatum> + <Geburtsort>Wien</Geburtsort> + <Geburtsbundesland>Wien</Geburtsbundesland> + <Geburtsstaat>Österreich</Geburtsstaat> + <zmr:Staatsangehoerigkeit> + <ISOCode3>AUT</ISOCode3> + <StaatsnameDE>Österreich</StaatsnameDE> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2003-01-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2003-01-01T00:00:00.000</base:Von> + <base:BeginnCode>REISEDOK_ANLEGEN</base:BeginnCode> + <base:BeginnText>Reisedokument anlegen</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + </zmr:Staatsangehoerigkeit> + </zmr:NatuerlichePerson> + </zmr:PersonErgebnis> + </zmr:Personendaten> + <zmr:Meldedaten> + <!-- Historienliste einer Meldung. Nur ein MeldungErgebnis-Element, wenn nur aktuelle Daten --> + <zmr:MeldungErgebnis> + <base:ErgebnissatzInfo> + <!-- letzter Änderungs-Zeitpunkt des Meldung-Gesamtdatensatzes (mit Auskunftssperren, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>00000002</base:EntityID> + <!-- letzter Änderungs-Zeitpunkt der Meldung-Entity (ohne Auskunftssperren, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <base:BeginnCode>WSANM</base:BeginnCode> + <base:BeginnText>Wohnsitz anmelden</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:BehoerdenNr>099999</base:BehoerdenNr> + </base:Organisation> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <zmr:Wohnsitz> + <zmr:PostAdresse> + <Postleitzahl>1245</Postleitzahl> + <Gemeinde>Testgemeinde</Gemeinde> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <Ortschaft>Testort</Ortschaft> + <zmr:Zustelladresse> + <Strassenname>Teststrasse</Strassenname> + <Orientierungsnummer>1</Orientierungsnummer> + <Wohnsitzqualitaet>H</Wohnsitzqualitaet> + </zmr:Zustelladresse> + </zmr:PostAdresse> + <base:Adressstatus>XXX000</base:Adressstatus> + </zmr:Wohnsitz> + <base:GemeldetVon>2004-01-26T00:00:00.000</base:GemeldetVon> + <base:PeriodeCode>WSANM</base:PeriodeCode> + <base:PeriodeText>Wohnsitz anmelden</base:PeriodeText> + </zmr:MeldungErgebnis> + </zmr:Meldedaten> + </zmr:PersonErgebnisSatz> + </zmr:AblaufendeAuskunftssperreErgebnis> + </zmr:AblaufendeAuskunftssperrenSucheResponse> + </base:Response> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/ablaufendeauskunfssperren/blaetternrequest.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/ablaufendeauskunfssperren/blaetternrequest.xml new file mode 100644 index 00000000..50517e75 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/ablaufendeauskunfssperren/blaetternrequest.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>GP_Ablaufende_Auskunftssperren</base:ProzessName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <!-- Die InstanzID der laufenden Prozesses muss hier übermittelt werden, um die Suche fortzusetzen (aus WorkflowInfoServer des ersten Suchergebnisses--> + <base:SequenzID>00034</base:SequenzID> + <base:VorgangName>ZPR_VO_Ablaufende_Auskunftssperren</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:BehoerdenNr>000000</base:BehoerdenNr> + </base:Organisation> + <base:Client>Test</base:Client> + </base:ClientInfo> + <base:BlaetternRequest> + <base:BlaetternInfo> + <base:Richtung>Vor</base:Richtung> + <base:AnzahlSaetze>3</base:AnzahlSaetze> + </base:BlaetternInfo> + </base:BlaetternRequest> + </base:Request> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/ablaufendeauskunfssperren/blaetternresponse.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/ablaufendeauskunfssperren/blaetternresponse.xml new file mode 100644 index 00000000..add2f3ad --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/ablaufendeauskunfssperren/blaetternresponse.xml @@ -0,0 +1,195 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Response> + <base:WorkflowInfoServer> + <base:ProzessName>GP_Ablaufende_Auskunftssperren</base:ProzessName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <base:ProzessStatus>A</base:ProzessStatus> + <base:SequenzID>00034</base:SequenzID> + <base:Subprozess> + <base:VorgangName>ZPR_VO_Ablaufende_Auskunftssperren</base:VorgangName> + <base:VorgangStatus>A</base:VorgangStatus> + <base:Required>false</base:Required> + <base:Visible>true</base:Visible> + </base:Subprozess> + </base:WorkflowInfoServer> + <base:ServerInfo> + <base:GeneriertVon>ZMR Server</base:GeneriertVon> + <base:GeneriertAm>2004-01-26T00:00:00.000</base:GeneriertAm> + <base:ServerTransaktionNr>1234567</base:ServerTransaktionNr> + </base:ServerInfo> + <zmr:AblaufendeAuskunftssperrenSucheResponse> + <zmr:AblaufendeAuskunftssperrenSucheAnfrage> + <zmr:SperreBis>2005-01-01T00:00:00.000</zmr:SperreBis> + <base:AnzahlSaetze>10</base:AnzahlSaetze> + </zmr:AblaufendeAuskunftssperrenSucheAnfrage> + <base:Message> + <base:Number>0003</base:Number> + <base:Text>Es wurde 1 Personen im ZMR gefunden</base:Text> + </base:Message> + <zmr:AblaufendeAuskunftssperreErgebnis> + <base:GefundeneSaetze>4</base:GefundeneSaetze> + <base:SaetzeVon>3</base:SaetzeVon> + <!-- Es wurde weitergeblättert - der letzte Satz wird geliefert --> + <base:SaetzeBis>4</base:SaetzeBis> + <zmr:PersonErgebnisSatz> + <!-- 1. gelieferte Person im Suchergebnis (Personendaten + Meldedaten, historisch und aktuell) --> + <zmr:Personendaten> + <!-- Historienliste der Personendaten. Nur ein PersonErgebnis-Element, wenn nur aktuelle Daten --> + <zmr:PersonErgebnis> + <!-- aktueller Personendaten Gesamtdatensatz --> + <base:ErgebnissatzInfo> + <!-- letzter Änderungs-Zeitpunkt des Person-Gesamtdatensatzes (mit Staatsangehörigkeiten, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <!-- letzter Änderungs-Zeitpunkt der Person-Entity (ohne Staatsangehörigkeiten, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <base:BeginnCode>AMKOR</base:BeginnCode> + <base:BeginnText>Amtliche Korrektur</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <base:ZMRZahl>000111111111</base:ZMRZahl> + <zmr:NatuerlichePerson> + <zmr:PersonenName> + <Vorname>Maximilian</Vorname> + <Familienname>Mustermann</Familienname> + </zmr:PersonenName> + <Geschlecht>männlich</Geschlecht> + <Geburtsdatum>2001-05-07</Geburtsdatum> + <Geburtsort>Wien</Geburtsort> + <Geburtsbundesland>Wien</Geburtsbundesland> + <Geburtsstaat>Österreich</Geburtsstaat> + <zmr:Staatsangehoerigkeit> + <ISOCode3>AUT</ISOCode3> + <StaatsnameDE>Österreich</StaatsnameDE> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2003-01-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2003-01-01T00:00:00.000</base:Von> + <base:BeginnCode>REISEDOK_ANLEGEN</base:BeginnCode> + <base:BeginnText>Reisedokument anlegen</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + </zmr:Staatsangehoerigkeit> + </zmr:NatuerlichePerson> + </zmr:PersonErgebnis> + <zmr:PersonErgebnis> + <!-- historischer Personendaten Gesamtdatensatz (durch Vornamen-Änderung entstanden. Die Staatsagehörigkeit wurde nicht geändert und ist somit mit der im aktuellen Satz identisch--> + <base:ErgebnissatzInfo> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2003-01-01T00:00:00.000</base:Von> + <base:BeginnCode>GEBURT</base:BeginnCode> + <base:BeginnText>Geburt</base:BeginnText> + <base:Bis>2004-01-26T00:00:00.000</base:Bis> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <base:ZMRZahl>000111111111</base:ZMRZahl> + <zmr:NatuerlichePerson> + <zmr:PersonenName> + <Vorname>Hans</Vorname> + <Familienname>Mustermann</Familienname> + </zmr:PersonenName> + <Geschlecht>männlich</Geschlecht> + <Geburtsdatum>2001-05-07</Geburtsdatum> + <Geburtsort>Wien</Geburtsort> + <Geburtsbundesland>Wien</Geburtsbundesland> + <Geburtsstaat>Österreich</Geburtsstaat> + <zmr:Staatsangehoerigkeit> + <ISOCode3>AUT</ISOCode3> + <StaatsnameDE>Österreich</StaatsnameDE> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2003-01-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2003-01-01T00:00:00.000</base:Von> + <base:BeginnCode>REISEDOK_ANLEGEN</base:BeginnCode> + <base:BeginnText>Reisedokument anlegen</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + </zmr:Staatsangehoerigkeit> + </zmr:NatuerlichePerson> + </zmr:PersonErgebnis> + </zmr:Personendaten> + <zmr:Meldedaten> + <!-- Historienliste einer Meldung. Nur ein MeldungErgebnis-Element, wenn nur aktuelle Daten --> + <zmr:MeldungErgebnis> + <base:ErgebnissatzInfo> + <!-- letzter Änderungs-Zeitpunkt des Meldung-Gesamtdatensatzes (mit Auskunftssperren, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>00000002</base:EntityID> + <!-- letzter Änderungs-Zeitpunkt der Meldung-Entity (ohne Auskunftssperren, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <base:BeginnCode>WSANM</base:BeginnCode> + <base:BeginnText>Wohnsitz anmelden</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:BehoerdenNr>099999</base:BehoerdenNr> + </base:Organisation> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <zmr:Wohnsitz> + <zmr:PostAdresse> + <Postleitzahl>1245</Postleitzahl> + <Gemeinde>Testgemeinde</Gemeinde> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <Ortschaft>Testort</Ortschaft> + <zmr:Zustelladresse> + <Strassenname>Teststrasse</Strassenname> + <Orientierungsnummer>1</Orientierungsnummer> + <Wohnsitzqualitaet>H</Wohnsitzqualitaet> + </zmr:Zustelladresse> + </zmr:PostAdresse> + <base:Adressstatus>XXX000</base:Adressstatus> + </zmr:Wohnsitz> + <base:GemeldetVon>2004-01-26T00:00:00.000</base:GemeldetVon> + <base:PeriodeCode>WSANM</base:PeriodeCode> + <base:PeriodeText>Wohnsitz anmelden</base:PeriodeText> + </zmr:MeldungErgebnis> + </zmr:Meldedaten> + </zmr:PersonErgebnisSatz> + </zmr:AblaufendeAuskunftssperreErgebnis> + </zmr:AblaufendeAuskunftssperrenSucheResponse> + </base:Response> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/adoption/adoptionrequest.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/adoption/adoptionrequest.xml new file mode 100644 index 00000000..9e8746ce --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/adoption/adoptionrequest.xml @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>GP_Adoption</base:ProzessName> + <base:VorgangName>ZPR_VO_Adoption</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:BehoerdenNr>000000</base:BehoerdenNr> + </base:Organisation> + <base:Client>Test</base:Client> + </base:ClientInfo> + <zmr:AdoptionRequest> + <zmr:AdoptionInfo> + <base:Von>2004-01-26T00:00:00.000</base:Von> + </zmr:AdoptionInfo> + <zmr:PersonReferenz> + <base:Technisch> + <base:EntityID>2434</base:EntityID> + <base:LetzteAenderung>2003-03-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:ZMRZahl>000111111111</base:ZMRZahl> + </zmr:PersonReferenz> + <Familienname>MustermannAdoption</Familienname> + </zmr:AdoptionRequest> + </base:Request> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/adoption/adoptionresponse.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/adoption/adoptionresponse.xml new file mode 100644 index 00000000..466bdc2c --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/adoption/adoptionresponse.xml @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Response> + <base:WorkflowInfoServer> + <base:ProzessName>GP_Adoption</base:ProzessName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <base:ProzessStatus>C</base:ProzessStatus> + <base:SequenzID>00034</base:SequenzID> + <base:Subprozess> + <base:VorgangName>ZPR_VO_Adoption</base:VorgangName> + <base:VorgangStatus>C</base:VorgangStatus> + <base:Required>false</base:Required> + <base:Visible>true</base:Visible> + </base:Subprozess> + </base:WorkflowInfoServer> + <base:ServerInfo> + <base:GeneriertVon>ZMR Server</base:GeneriertVon> + <base:GeneriertAm>2004-01-26T00:00:00.000</base:GeneriertAm> + <base:ServerTransaktionNr>1234567</base:ServerTransaktionNr> + </base:ServerInfo> + <zmr:AdoptionResponse> + <base:Message> + <base:Number>1234</base:Number> + <base:Text>Person wurde geändert</base:Text> + </base:Message> + <zmr:PersonErgebnis> + <base:ErgebnissatzInfo> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <base:BeginnCode>NAMENSAENDERUNG</base:BeginnCode> + <base:BeginnText>Namensänderung</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <base:ZMRZahl>000111111111</base:ZMRZahl> + <zmr:NatuerlichePerson> + <zmr:PersonenName> + <Vorname>Anna</Vorname> + <Familienname>MustermannAdoption</Familienname> + </zmr:PersonenName> + <Geschlecht>weiblich</Geschlecht> + <Geburtsdatum>2001-05-07</Geburtsdatum> + <Geburtsort>Wien</Geburtsort> + <Geburtsbundesland>Wien</Geburtsbundesland> + <Geburtsstaat>Österreich</Geburtsstaat> + <zmr:Staatsangehoerigkeit> + <ISOCode3>AUT</ISOCode3> + <StaatsnameDE>Österreich</StaatsnameDE> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2003-01-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2003-01-01T00:00:00.000</base:Von> + <base:BeginnCode>REISEDOK_ANLEGEN</base:BeginnCode> + <base:BeginnText>Reisedokument anlegen</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + </zmr:Staatsangehoerigkeit> + </zmr:NatuerlichePerson> + </zmr:PersonErgebnis> + </zmr:AdoptionResponse> + </base:Response> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/adresssuche/adresssucherequest.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/adresssuche/adresssucherequest.xml new file mode 100644 index 00000000..b37c1ecf --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/adresssuche/adresssucherequest.xml @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> + <soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>Meldevorgang</base:ProzessName> + <base:VorgangName>Adresssuche</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:BehoerdenNr>099999</base:BehoerdenNr> + </base:Organisation> + <base:Client>ZMRHTMLClient V3.0</base:Client> + </base:ClientInfo> + <zmr:AdresssucheRequest> + <zmr:AdresssucheInfo> + <zmr:Suchart>ADRESSSUCHE</zmr:Suchart> + </zmr:AdresssucheInfo> + <zmr:Adressdaten> + <PostAdresse> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <Ortschaft>Testort</Ortschaft> + <Zustelladresse> + <Strassenname>Teststraße</Strassenname> + </Zustelladresse> + </PostAdresse> + </zmr:Adressdaten> + </zmr:AdresssucheRequest> + </base:Request> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/adresssuche/adresssucheresponse.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/adresssuche/adresssucheresponse.xml new file mode 100644 index 00000000..53c04d79 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/adresssuche/adresssucheresponse.xml @@ -0,0 +1,81 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" + xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> + <soap:Body> + <base:Response> + <base:WorkflowInfoServer> + <base:ProzessName>Meldevorgang</base:ProzessName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <base:ProzessStatus>A</base:ProzessStatus> + <base:SequenzID>00034</base:SequenzID> + <base:Subprozess> + <base:VorgangName>Adresssuche</base:VorgangName> + <base:VorgangStatus>A</base:VorgangStatus> + <base:Required>true</base:Required> + <base:Visible>true</base:Visible> + </base:Subprozess> + </base:WorkflowInfoServer> + <base:ServerInfo> + <base:GeneriertVon>ZMR Server</base:GeneriertVon> + <base:GeneriertAm>2004-01-26T00:00:00.000</base:GeneriertAm> + <base:ServerTransaktionNr>1234567</base:ServerTransaktionNr> + </base:ServerInfo> + <zmr:AdresssucheResponse> + <zmr:AdresssucheAnfrage> + <zmr:AdresssucheInfo> + <zmr:Suchart>ADRESSSUCHE</zmr:Suchart> + </zmr:AdresssucheInfo> + <zmr:Adressdaten> + <PostAdresse> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <Zustelladresse> + <Strassenname>Teststraße</Strassenname> + </Zustelladresse> + </PostAdresse> + </zmr:Adressdaten> + </zmr:AdresssucheAnfrage> + <base:Message> + <base:Number>123</base:Number> + <base:Text>Adressen gefunden.</base:Text> + </base:Message> + <zmr:Adresssuchergebnis> + <zmr:Detailgrad>Orientierungsnummer</zmr:Detailgrad> + <base:GefundeneSaetze>3</base:GefundeneSaetze> + <zmr:Adressdaten> + <PostAdresse> + <Gemeinde>Testgemeinde</Gemeinde> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <Ortschaft>Testort</Ortschaft> + <Zustelladresse> + <Strassenname>Teststraße</Strassenname> + <Orientierungsnummer>1</Orientierungsnummer> + </Zustelladresse> + </PostAdresse> + </zmr:Adressdaten> + <zmr:Adressdaten> + <PostAdresse> + <Gemeinde>Testgemeinde</Gemeinde> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <Ortschaft>Testort</Ortschaft> + <Zustelladresse> + <Strassenname>Teststraße</Strassenname> + <Orientierungsnummer>2</Orientierungsnummer> + </Zustelladresse> + </PostAdresse> + </zmr:Adressdaten> + <zmr:Adressdaten> + <PostAdresse> + <Gemeinde>Testgemeinde</Gemeinde> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <Ortschaft>Testort</Ortschaft> + <Zustelladresse> + <Strassenname>Teststraße</Strassenname> + <Orientierungsnummer>3</Orientierungsnummer> + </Zustelladresse> + </PostAdresse> + </zmr:Adressdaten> + </zmr:Adresssuchergebnis> + </zmr:AdresssucheResponse> + </base:Response> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/behoerdenabfrage/behoerdenabfragerequestStufe1.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/behoerdenabfrage/behoerdenabfragerequestStufe1.xml new file mode 100644 index 00000000..0aa8460b --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/behoerdenabfrage/behoerdenabfragerequestStufe1.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>GP_Behoerdenabfrage_erstellen</base:ProzessName> + <base:VorgangName>ZMR_VO_Behoerdenabfrage_Ueberblick_erstellen</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:BehoerdenNr>000000</base:BehoerdenNr> + </base:Organisation> + <base:Client>Test</base:Client> + </base:ClientInfo> + <zmr:BehoerdenabfrageRequest> + <zmr:BehoerdenabfrageInfo> + <base:Bezugsfeld>Test</base:Bezugsfeld> + <zmr:BehoerdenabfrageAction>SONSTIGES</zmr:BehoerdenabfrageAction> + <base:InclusivHistorie>false</base:InclusivHistorie> + <base:Formalisiert>false</base:Formalisiert> + </zmr:BehoerdenabfrageInfo> + <NatuerlichePerson> + <PersonenName> + <Vorname>Max</Vorname> + <Familienname>Mustermann</Familienname> + </PersonenName> + <Geburtsdatum>2000-01-01</Geburtsdatum> + </NatuerlichePerson> + </zmr:BehoerdenabfrageRequest> + </base:Request> + </soap:Body> +</soap:Envelope>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/behoerdenabfrage/behoerdenabfragerequestStufe2.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/behoerdenabfrage/behoerdenabfragerequestStufe2.xml new file mode 100644 index 00000000..a68cd27d --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/behoerdenabfrage/behoerdenabfragerequestStufe2.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>GP_Behoerdenabfrage_erstellen</base:ProzessName> + <base:VorgangName>ZMR_VO_Behoerdenabfrage_Detail_erstellen</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:BehoerdenNr>000000</base:BehoerdenNr> + </base:Organisation> + <base:Client>Test</base:Client> + </base:ClientInfo> + <zmr:BehoerdenabfrageRequest> + <zmr:BehoerdenabfrageInfo> + <base:Bezugsfeld>Test</base:Bezugsfeld> + <zmr:BehoerdenabfrageAction>SONSTIGES</zmr:BehoerdenabfrageAction> + <base:InclusivHistorie>false</base:InclusivHistorie> + <base:Formalisiert>false</base:Formalisiert> + </zmr:BehoerdenabfrageInfo> + <zmr:PersonKey>1</zmr:PersonKey> + </zmr:BehoerdenabfrageRequest> + </base:Request> + </soap:Body> +</soap:Envelope>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/behoerdenabfrage/behoerdenabfrageresponseStufe1.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/behoerdenabfrage/behoerdenabfrageresponseStufe1.xml new file mode 100644 index 00000000..cf18458e --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/behoerdenabfrage/behoerdenabfrageresponseStufe1.xml @@ -0,0 +1,76 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Response> + <base:WorkflowInfoServer> + <base:ProzessName>GP_Behoerdenabfrage_erstellen</base:ProzessName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <base:ProzessStatus>A</base:ProzessStatus> + <base:SequenzID>00034</base:SequenzID> + <base:Subprozess> + <base:VorgangName>ZPR_VO_Person_suchen_Meldevorgang</base:VorgangName> + <base:VorgangStatus>C</base:VorgangStatus> + <base:Required>false</base:Required> + <base:Visible>true</base:Visible> + </base:Subprozess> + <base:Subprozess> + <base:VorgangName>ZMR_VO_Behoerdenabfrage_Detail_erstellen</base:VorgangName> + <base:VorgangStatus>A</base:VorgangStatus> + <base:Required>false</base:Required> + <base:Visible>true</base:Visible> + </base:Subprozess> + </base:WorkflowInfoServer> + <base:ServerInfo> + <base:GeneriertVon>ZMR Server</base:GeneriertVon> + <base:GeneriertAm>2004-01-26T00:00:00.000</base:GeneriertAm> + <base:ServerTransaktionNr>1234567</base:ServerTransaktionNr> + </base:ServerInfo> + <zmr:BehoerdenabfrageResponse> + <zmr:BehoerdenabfrageAnfrage> + <zmr:BehoerdenabfrageInfo> + <base:Bezugsfeld>Test</base:Bezugsfeld> + <zmr:BehoerdenabfrageAction>SONSTIGES</zmr:BehoerdenabfrageAction> + <base:InclusivHistorie>false</base:InclusivHistorie> + <base:Formalisiert>false</base:Formalisiert> + </zmr:BehoerdenabfrageInfo> + <NatuerlichePerson> + <PersonenName> + <Vorname>Max</Vorname> + <Familienname>Mustermann</Familienname> + </PersonenName> + <Geburtsdatum>2000-01-01</Geburtsdatum> + </NatuerlichePerson> + </zmr:BehoerdenabfrageAnfrage> + <base:Message> + <base:Number>0003</base:Number> + <base:Text>Es wurden 3 Personen im ZMR gefunden</base:Text> + </base:Message> + <zmr:BehoerdenabfrageUeberblick> + <base:AnzahlSaetze>3</base:AnzahlSaetze> + <zmr:PersonUeberblick> + <zmr:PersonKey>0</zmr:PersonKey> + <Geburtsdatum>2001-01-01</Geburtsdatum> + <Geburtsort>Wien - Ottakring</Geburtsort> + <Postleitzahl>1010</Postleitzahl> + <Ortschaft>Wien - Innere Stadt</Ortschaft> + </zmr:PersonUeberblick> + <zmr:PersonUeberblick> + <zmr:PersonKey>1</zmr:PersonKey> + <Geburtsdatum>2001-01-01</Geburtsdatum> + <Geburtsort>Testort</Geburtsort> + <Postleitzahl>9999</Postleitzahl> + <Ortschaft>Testort</Ortschaft> + </zmr:PersonUeberblick> + <zmr:PersonUeberblick> + <zmr:PersonKey>2</zmr:PersonKey> + <Geburtsdatum>2001-01-01</Geburtsdatum> + <Geburtsort>Testort2</Geburtsort> + <Postleitzahl>8888</Postleitzahl> + <Ortschaft>Testort2</Ortschaft> + </zmr:PersonUeberblick> + </zmr:BehoerdenabfrageUeberblick> + </zmr:BehoerdenabfrageResponse> + </base:Response> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/behoerdenabfrage/behoerdenabfrageresponseStufe2.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/behoerdenabfrage/behoerdenabfrageresponseStufe2.xml new file mode 100644 index 00000000..909c491e --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/behoerdenabfrage/behoerdenabfrageresponseStufe2.xml @@ -0,0 +1,200 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Response> + <base:WorkflowInfoServer> + <base:ProzessName>GP_Behoerdenabfrage_erstellen</base:ProzessName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <base:ProzessStatus>C</base:ProzessStatus> + <base:SequenzID>00034</base:SequenzID> + <base:Subprozess> + <base:VorgangName>ZPR_VO_Person_suchen_Meldevorgang</base:VorgangName> + <base:VorgangStatus>C</base:VorgangStatus> + <base:Required>false</base:Required> + <base:Visible>true</base:Visible> + </base:Subprozess> + <base:Subprozess> + <base:VorgangName>ZMR_VO_Behoerdenabfrage_Detail_erstellen</base:VorgangName> + <base:VorgangStatus>C</base:VorgangStatus> + <base:Required>false</base:Required> + <base:Visible>true</base:Visible> + </base:Subprozess> + </base:WorkflowInfoServer> + <base:ServerInfo> + <base:GeneriertVon>ZMR Server</base:GeneriertVon> + <base:GeneriertAm>2004-01-26T00:00:00.000</base:GeneriertAm> + <base:ServerTransaktionNr>1234567</base:ServerTransaktionNr> + </base:ServerInfo> + <zmr:BehoerdenabfrageResponse> + <zmr:BehoerdenabfrageAnfrage> + <zmr:BehoerdenabfrageInfo> + <base:Bezugsfeld>Test</base:Bezugsfeld> + <zmr:BehoerdenabfrageAction>SONSTIGES</zmr:BehoerdenabfrageAction> + <base:InclusivHistorie>false</base:InclusivHistorie> + <base:Formalisiert>false</base:Formalisiert> + </zmr:BehoerdenabfrageInfo> + <zmr:PersonKey>1</zmr:PersonKey> + </zmr:BehoerdenabfrageAnfrage> + <base:Message> + <base:Number>0003</base:Number> + <base:Text>Es wurde 1 Person im ZMR gefunden</base:Text> + </base:Message> + <zmr:BehoerdenabfrageDetail> + <zmr:Personendaten> + <!-- Historienliste der Personendaten. Nur ein PersonErgebnis-Element, wenn nur aktuelle Daten --> + <zmr:PersonErgebnis> + <!-- aktueller Personendaten Gesamtdatensatz --> + <base:ErgebnissatzInfo> + <!-- letzter Änderungs-Zeitpunkt des Person-Gesamtdatensatzes (mit Staatsangehörigkeiten, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <!-- letzter Änderungs-Zeitpunkt der Person-Entity (ohne Staatsangehörigkeiten, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <base:BeginnCode>AMKOR</base:BeginnCode> + <base:BeginnText>Amtliche Korrektur</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <base:ZMRZahl>000111111111</base:ZMRZahl> + <zmr:NatuerlichePerson> + <zmr:PersonenName> + <Vorname>Maximilian</Vorname> + <Familienname>Mustermann</Familienname> + </zmr:PersonenName> + <Geschlecht>männlich</Geschlecht> + <Geburtsdatum>2001-05-07</Geburtsdatum> + <Geburtsort>Wien</Geburtsort> + <Geburtsbundesland>Wien</Geburtsbundesland> + <Geburtsstaat>Österreich</Geburtsstaat> + <zmr:Staatsangehoerigkeit> + <ISOCode3>AUT</ISOCode3> + <StaatsnameDE>Österreich</StaatsnameDE> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2003-01-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2003-01-01T00:00:00.000</base:Von> + <base:BeginnCode>REISEDOK_ANLEGEN</base:BeginnCode> + <base:BeginnText>Reisedokument anlegen</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + </zmr:Staatsangehoerigkeit> + </zmr:NatuerlichePerson> + </zmr:PersonErgebnis> + <zmr:PersonErgebnis> + <!-- historischer Personendaten Gesamtdatensatz (durch Vornamen-Änderung entstanden. Die Staatsagehörigkeit wurde nicht geändert und ist somit mit der im aktuellen Satz identisch--> + <base:ErgebnissatzInfo> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2003-01-01T00:00:00.000</base:Von> + <base:BeginnCode>GEBURT</base:BeginnCode> + <base:BeginnText>Geburt</base:BeginnText> + <base:Bis>2004-01-26T00:00:00.000</base:Bis> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <base:ZMRZahl>000111111111</base:ZMRZahl> + <zmr:NatuerlichePerson> + <zmr:PersonenName> + <Vorname>Hans</Vorname> + <Familienname>Mustermann</Familienname> + </zmr:PersonenName> + <Geschlecht>männlich</Geschlecht> + <Geburtsdatum>2001-05-07</Geburtsdatum> + <Geburtsort>Wien</Geburtsort> + <Geburtsbundesland>Wien</Geburtsbundesland> + <Geburtsstaat>Österreich</Geburtsstaat> + <zmr:Staatsangehoerigkeit> + <ISOCode3>AUT</ISOCode3> + <StaatsnameDE>Österreich</StaatsnameDE> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2003-01-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2003-01-01T00:00:00.000</base:Von> + <base:BeginnCode>REISEDOK_ANLEGEN</base:BeginnCode> + <base:BeginnText>Reisedokument anlegen</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + </zmr:Staatsangehoerigkeit> + </zmr:NatuerlichePerson> + </zmr:PersonErgebnis> + </zmr:Personendaten> + <zmr:Meldedaten> + <!-- Historienliste einer Meldung. Nur ein MeldungErgebnis-Element, wenn nur aktuelle Daten --> + <zmr:MeldungErgebnis> + <base:ErgebnissatzInfo> + <!-- letzter Änderungs-Zeitpunkt des Meldung-Gesamtdatensatzes (mit Auskunftssperren, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>00000002</base:EntityID> + <!-- letzter Änderungs-Zeitpunkt der Meldung-Entity (ohne Auskunftssperren, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <base:BeginnCode>WSANM</base:BeginnCode> + <base:BeginnText>Wohnsitz anmelden</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:BehoerdenNr>099999</base:BehoerdenNr> + </base:Organisation> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <zmr:Wohnsitz> + <zmr:PostAdresse> + <Postleitzahl>1245</Postleitzahl> + <Gemeinde>Testgemeinde</Gemeinde> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <Ortschaft>Testort</Ortschaft> + <zmr:Zustelladresse> + <Strassenname>Teststrasse</Strassenname> + <Orientierungsnummer>1</Orientierungsnummer> + <Wohnsitzqualitaet>H</Wohnsitzqualitaet> + </zmr:Zustelladresse> + </zmr:PostAdresse> + <base:Adressstatus>XXX000</base:Adressstatus> + </zmr:Wohnsitz> + <base:GemeldetVon>2004-01-26T00:00:00.000</base:GemeldetVon> + <base:PeriodeCode>WSANM</base:PeriodeCode> + <base:PeriodeText>Wohnsitz anmelden</base:PeriodeText> + </zmr:MeldungErgebnis> + </zmr:Meldedaten> + <zmr:PDFDaten>XXYY</zmr:PDFDaten> + </zmr:BehoerdenabfrageDetail> + </zmr:BehoerdenabfrageResponse> + </base:Response> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/bestandsaenderungen/bestandsaenderungenrequest.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/bestandsaenderungen/bestandsaenderungenrequest.xml new file mode 100644 index 00000000..db6014cd --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/bestandsaenderungen/bestandsaenderungenrequest.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>Abfragen</base:ProzessName> + <base:VorgangName>Bestandsaenderungen</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:BehoerdenNr>099999</base:BehoerdenNr> + </base:Organisation> + <base:Client>ZMRHTMLClient V3.0</base:Client> + </base:ClientInfo> + <zmr:BestandsaenderungenRequest> + <zmr:BestandsaenderungenInfo> + <zmr:AenderungenVon>2004-01-01T00:00:00.000</zmr:AenderungenVon> + <zmr:AenderungenBis>2004-07-01T00:00:00.000</zmr:AenderungenBis> + <zmr:InclusiveAdressen>true</zmr:InclusiveAdressen> + <zmr:Veraenderung>TYP_ZUGANG</zmr:Veraenderung> + </zmr:BestandsaenderungenInfo> + </zmr:BestandsaenderungenRequest> + </base:Request> + </soap:Body> +</soap:Envelope>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/bestandsaenderungen/bestandsaenderungenresponse.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/bestandsaenderungen/bestandsaenderungenresponse.xml new file mode 100644 index 00000000..b66a6636 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/bestandsaenderungen/bestandsaenderungenresponse.xml @@ -0,0 +1,83 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> + <soap:Body> + <base:Response> + <base:WorkflowInfoServer> + <base:ProzessName>Abfragen</base:ProzessName> + <base:ProzessAnzeigeName>Bestandsaenderung</base:ProzessAnzeigeName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <base:ProzessStatus>A</base:ProzessStatus> + <base:SequenzID>00034</base:SequenzID> + <base:Subprozess> + <base:VorgangName>Bestandsaenderung</base:VorgangName> + <base:VorgangAnzeigeName>Bestandsaenderung</base:VorgangAnzeigeName> + <base:VorgangStatus>C</base:VorgangStatus> + <base:Required>true</base:Required> + <base:Visible>true</base:Visible> + </base:Subprozess> + </base:WorkflowInfoServer> + <base:ServerInfo> + <base:GeneriertVon>ZMR Server</base:GeneriertVon> + <base:GeneriertAm>2004-06-01T00:00:00.000</base:GeneriertAm> + <base:ServerTransaktionNr>1234567</base:ServerTransaktionNr> + </base:ServerInfo> + <zmr:BestandsaenderungenResponse> + <zmr:BestandsaenderungenAnfrage> + <zmr:BestandsaenderungenInfo> + <zmr:AenderungenVon>2004-01-01T00:00:00.000</zmr:AenderungenVon> + <zmr:AenderungenBis>2004-07-01T00:00:00.000</zmr:AenderungenBis> + <zmr:InclusiveAdressen>true</zmr:InclusiveAdressen> + <zmr:Veraenderung>TYP_ZUGANG</zmr:Veraenderung> + </zmr:BestandsaenderungenInfo> + </zmr:BestandsaenderungenAnfrage> + <base:Message> + <base:Number>0004</base:Number> + <base:Text>Die Abgleichdaten wurden erstellt</base:Text> + </base:Message> + <zmr:Bestandsaenderungen> + <base:GefundeneSaetze>230</base:GefundeneSaetze> + <base:AnzahlSaetze>2</base:AnzahlSaetze> + <zmr:BestandsaenderungSatz> + <zmr:Aenderungszeitpunkt>2004-01-01T08:00:00.000</zmr:Aenderungszeitpunkt> + <base:ZMRZahl>000111111111</base:ZMRZahl> + <Geburtsdatum>2001-05-07</Geburtsdatum> + <Geschlecht>männlich</Geschlecht> + <zmr:Bestandsaenderung> + <zmr:Veraenderung>TYP_ZUGANG</zmr:Veraenderung> + <PostAdresse> + <Gemeinde>Testgemeinde</Gemeinde> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <Ortschaft>Testort</Ortschaft> + <Zustelladresse> + <Strassenname>Teststraße</Strassenname> + <Orientierungsnummer>3</Orientierungsnummer> + <Nutzungseinheit>7</Nutzungseinheit> + </Zustelladresse> + </PostAdresse> + </zmr:Bestandsaenderung> + </zmr:BestandsaenderungSatz> + <zmr:BestandsaenderungSatz> + <zmr:Aenderungszeitpunkt>2004-01-02T08:00:00.000</zmr:Aenderungszeitpunkt> + <base:ZMRZahl>000111111111</base:ZMRZahl> + <Geburtsdatum>2003-05-07</Geburtsdatum> + <Geschlecht>weiblich</Geschlecht> + <zmr:Bestandsaenderung> + <zmr:Veraenderung>TYP_ZUGANG</zmr:Veraenderung> + <PostAdresse> + <Gemeinde>Testgemeinde</Gemeinde> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <Ortschaft>Testort</Ortschaft> + <Zustelladresse> + <Strassenname>Teststraße</Strassenname> + <Orientierungsnummer>3</Orientierungsnummer> + <Nutzungseinheit>3</Nutzungseinheit> + </Zustelladresse> + </PostAdresse> + </zmr:Bestandsaenderung> + </zmr:BestandsaenderungSatz> + </zmr:Bestandsaenderungen> + </zmr:BestandsaenderungenResponse> + </base:Response> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/bpabfrage/bpabfragerequest.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/bpabfrage/bpabfragerequest.xml new file mode 100644 index 00000000..73c30b8b --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/bpabfrage/bpabfragerequest.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> + <soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>GP_Businesspartnerabfrage_erstellen</base:ProzessName> + <base:VorgangName>ZMR_VO_Businesspartnerabfrage_erstellen</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:BehoerdenNr>000000</base:BehoerdenNr> + </base:Organisation> + <base:Client>ZMRHTMLClient V4.0</base:Client> + </base:ClientInfo> + <zmr:BPAbfrageRequest> + <zmr:BPAbfrageInfo> + <base:Bezugsfeld>Test</base:Bezugsfeld> + <zmr:BPAbfrageAction>SONSTIGES</zmr:BPAbfrageAction> + </zmr:BPAbfrageInfo> + <NatuerlichePerson> + <PersonenName> + <Vorname>Max</Vorname> + <Familienname>Mustermann</Familienname> + </PersonenName> + <Geburtsdatum>2005-01-01</Geburtsdatum> + </NatuerlichePerson> + </zmr:BPAbfrageRequest> + </base:Request> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/bpabfrage/bpabfrageresponse.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/bpabfrage/bpabfrageresponse.xml new file mode 100644 index 00000000..bd7d3a22 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/bpabfrage/bpabfrageresponse.xml @@ -0,0 +1,68 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> + <soap:Body> + <base:Response> + <ns1:WorkflowInfoServer xmlns:ns1="http://bmi.gv.at/namespace/zmr-su/base/20040201#"> + <ns1:ProzessName>GP_Businesspartnerabfrage_erstellen</ns1:ProzessName> + <ns1:ProzessAnzeigeName>Businesspartnerabfragen</ns1:ProzessAnzeigeName> + <ns1:ProzessInstanzID>62700000000195</ns1:ProzessInstanzID> + <ns1:ProzessStatus>C</ns1:ProzessStatus> + <ns1:SequenzID>0</ns1:SequenzID> + <ns1:Subprozess> + <ns1:VorgangName>ZMR_VO_Businesspartnerabfrage_erstellen</ns1:VorgangName> + <ns1:VorgangAnzeigeName>Businesspartnerabfrage</ns1:VorgangAnzeigeName> + <ns1:VorgangStatus>C</ns1:VorgangStatus> + <ns1:Required>false</ns1:Required> + <ns1:Visible>true</ns1:Visible> + </ns1:Subprozess> + </ns1:WorkflowInfoServer> + <ns1:ServerInfo xmlns:ns1="http://bmi.gv.at/namespace/zmr-su/base/20040201#"> + <ns1:GeneriertVon>ZMR-Server</ns1:GeneriertVon> + <ns1:GeneriertAm>2005-03-10T13:38:22.617</ns1:GeneriertAm> + <ns1:ServerTransaktionNr>32900000000018</ns1:ServerTransaktionNr> + </ns1:ServerInfo> + <zmr:BPAbfrageResponse> + <zmr:BPAbfrageAnfrage> + <zmr:BPAbfrageInfo> + <base:Bezugsfeld>Test</base:Bezugsfeld> + <zmr:BPAbfrageAction>SONSTIGES</zmr:BPAbfrageAction> + </zmr:BPAbfrageInfo> + <NatuerlichePerson> + <PersonenName> + <Vorname>Max</Vorname> + <Familienname>Mustermann</Familienname> + </PersonenName> + <Geburtsdatum>2005-01-01</Geburtsdatum> + </NatuerlichePerson> + </zmr:BPAbfrageAnfrage> + <base:Message> + <base:Number>5020</base:Number> + <base:Text>Person gefunden</base:Text> + </base:Message> + <zmr:BPAbfrageErgebnis> + <NatuerlichePerson> + <PersonenName> + <Vorname>Max</Vorname> + <Familienname>Mustermann</Familienname> + </PersonenName> + <Geburtsdatum>2005-01-01</Geburtsdatum> + </NatuerlichePerson> + <PostAdresse> + <Postleitzahl>1160</Postleitzahl> + <Ortschaft>Wien,Ottakring</Ortschaft> + <Zustelladresse> + <Strassenname>Ottakringer Straße</Strassenname> + <Orientierungsnummer>101</Orientierungsnummer> + <Nutzungseinheit>7</Nutzungseinheit> + <Abgabestelle>false</Abgabestelle> + <Nutzungseinheitlaufnummer>0003</Nutzungseinheitlaufnummer> + </Zustelladresse> + </PostAdresse> + <zmr:AktMeldesatz>true</zmr:AktMeldesatz> + <zmr:PDFDaten>JVBERi0xLjMKJaqrrK0KNCAwIG9iago8PCAvVHlwZSAvSW5mbwovUHJvZHVjZXIgKG51bGwpID4+CmVuZG9iago1IDAgb2JqCjw8IC9MZW5ndGggODA2IC9GaWx0ZXIgL0ZsYXRlRGVjb2RlIAogPj4Kc3RyZWFtCnicnVbbctMwEH33V+ixnaGqpNXNfUsGtwRIWhIDMwUe3FZNMyQOOA4w/XrWt8hOYwpMHqJozp69nN1VhnFweg6EC8pIfB+w4us2YGQecMLww4mQnGoAooWhoQlJvCKfjq6i6exyEk1eDuJocky+kPg18nDCecXTGHMrqVCcaKaoCE1lfJ6sFsuFS9Nk5c6OyYliEFJhgByNt5vcZaskTWvOfR4VChoKUfF8WGcNhRGa1xTJrz5by6iSdQwX7mab5Zu7JN+uCgIZWoEEQpEjhjkgGWNql5gv0I6UYzUQrYSkFlRFOlohkzAWoUfXLs2zZOlSfzV2yzuXufmiSNJfb24f3CJtA+/Xy7lL79yeKQbbRiXb+7M6wigOvpeiGUat1kQq/MaUpQJMGQgmTjJH7oN3wTD+o1AyBKrrdAZf861bLtuxvkq23/Kf64d0s8gfz3oKLY2imumKZIZV+AxgSpksYNlKmS7zPPmaLdJ5m32H9Veccf/D9DnUQAXwujXfXp9eZnnZFbZ0V4jKuWae6CN234tdCD1FNFJSwJ6tiiiwiNAp4tOmaAwxf7B1OMMxPaejySSaRjMfwGAY09GHU+FvRvHJeNaepB5u7HO7446mFxdUwl5ZdvFbHwZnYTv/0W5qy6ytojiDpTkwapglEkcSdEiMklTakNyugtPRipOX6yr9qljUCiMVlqw5XQRaVc5FSI2QpTRFB54odFGU76Ztj5Y9+G7HttGAaG1QeEQXKKUr4n2oQkbJwr/C1kE00D8FcSDlpt64CsoU6qE7AV7Z37Q6RnZVFQo1UkAMh6JRK63GXqj3reHwx9gfI3+c7k8Ht9Tg6g0NVc3KHDxH/eYgYOKP590wLMi9Wxxg2QmqwQyf8z066DA6iG0dr1pj1XX8tFyHeaedDdCvsMblKNoKo2pdhZ/OrWD4UIAh2gK2o61kSLYb7/3O/dOz4TcE69kQuPrrZzpO5m73xh3aEbrY1DX4/UP26BZ5DxL3ADS0M4SV+7xZ0v74Y5127rsdiX8lDIhOiEUW0H5t98HtEDmcgd3DgTG4scIO6f8sXRT/N+i29j4KZW5kc3RyZWFtCmVuZG9iago2IDAgb2JqCjw8L1R5cGUgL1hPYmplY3QKL1N1YnR5cGUgL0ltYWdlCi9OYW1lIC9JbTEKL0xlbmd0aCAyMDU1Ci9XaWR0aCAxMDgKL0hlaWdodCAzOQovQml0c1BlckNvbXBvbmVudCA4Ci9Db2xvclNwYWNlIC9EZXZpY2VSR0IKL0ZpbHRlciAvRmxhdGVEZWNvZGUgCj4+CnN0cmVhbQp4nO1aK7CrOhStPPLI2iuRSCyyEolFIpG1SGQkFllZeWxl5ZXHVlZW8layIA35lZ72zdx572YYhk+ys7Oy9ieBcfxb/mtlvz+U1VAUfb4Tu50oyr6uh04cI02EOFa1bLJTTXZFDwmQ80atfgvxe7+XR11Ph7p1a0KBLBd5/p6zHkVZ9qFqbXcHp2kGPMyyDkcqz0Jf4AyIhIMksJU6L2vqW8hvfEhCjlcfeRTDBNp+/10U31l22W4vHx/fm81ls+GZF9fN5pCmrnAOwdU/My7STA8zWBmvgNt9aoo+VLNtD8s6wif5frtv75hU1WA1sZRkk8LQZEK+O7oKs4lIikuSuKBdDPSm64+PvutcDDEd6Wvo8QJyTLGgkEkSs2aneKi45EXDgwllwsADWnmal0sYZwyn+kkm8rQFeqfN59WBzgWTJITjcAGcMbQsYu3ZVLvrFkbn8PB+hi3DhAPEc9GQZ9APbAzNaUh/0w9oHpJ+dVpp9DTHYMLXLOMhmWlYNGqettthGNZgGNDnAbx1Ywtf8nAhh97MR2mL/J62D6fSrA/kTQzT+ZX4TCfctttbWd76fjydxuvVhgZPcJxOqHCra/hZL4Dj3R96rCOioanqbmc7HwPD+DDVq/xhX8785p7KLgEyw70oDOXDw0dyJXptO95uC8TOZ3l8f8vDfPWowG/A7gp16AvrOmY1uRiGL1esGy9sf1UN2tYgwfF1/okDtUQ/ter74zLEeNDWusGBwAFK+/38uKN3PuP6mueMKTy+DbsG/cbD4XI+h6x4ZYGqPiOaYGxbf0pm8dBib+nEzVHFXF8Tf9x3OvKnOtpLi+5w3HzekkQyDeXrC9C52YsbU0BadPwKgOOSURY9TIezutWCHmbph6+wMxTZMu7rYgVcqzs9xcj64Pok/U4njd5VHSZ6+sllRShZWbAWCHHJ6wYtDL0RAYuRUKtwjO7clC/QauEhmVtiiSGtchxhudJOFT6wawSX/WdWbXfFrwJHW5SgHLLok4rIBDMSStYUWHEkJvY+LunizQ/ZMMLePLdNUnfthn6nlY08rsHDcz/cigIhA2dSDtDlv8ok2Sdpm2Rdomo2zX1mQTzk0sgGQwnh+mImIZZvj4yIJRCX5W1kVYseQ8n8mlauBwAyICF8IO2X6P1K25SS57wuYhqvlNnDe1YuXt9uFW9+OPmoLriZ4MzaIjOPtvKEvESt4xA+bnmOgEL0El+KDpf1Q5jCBev6kE2FfLtVQjzERbcKQztTfaqVAlCUSSPTY7W5U1X7xJdG8hzKLl4p4bxXxLekdPH5w2mYEQmu99AX7gaO2cpVNUU2uBdyfaEyExi1GpSf5HHf/oMit60C64WHblCXyDoljoZ3ifdsK5CwLgSicJtPQaFtBwWaf/34FD4PC1gdWikAlvVyvDzMnK0Aq3gZxYbr2ctggXBcpxVMmHW4Xg5tBawf18MyyCzXm/CLPH9usiL7h+vQsAm8Bvmpl1QtCZs9shedsSxT8QWM78WwKM3FxcKrR8KiX1R4//B5Hj5mr6ltKjczpT80MyJnD3ZxfmpokYLuvBkCLpA+YQjy6I+RC3MF97I/tDPSKHvtdeVk0R4MPbHyXf4Qw4+4C/e599rMGyP7h+ut0hz1M8jfG5oYeqPJG3noLG/9K9DQHqy7iIvsYz+T2zwbU2ytIjy8y1+X8cZLs7Biz6hD02elcKWBYTguP2fLT+WHrt+I+MM3xhQhjk7vHo55s2Wr/lt5aOuwPqaY/Tq27Df5FzEMTOIa6Oxz9YCHP4gpK5G3d9r1resPPTHrNVsup730uP2GwLQVjn5fvleL8zBgEStt2YYowEObMD8GENlI7nz6D92uuTB3P/R/Dm61CBrydxGf/J+1woXeTMDEhZTP3xFT/pY/rcArvn0bpGkGa3uqDG+Gryx9f/T+mfOvFoxize5r6vzz8HqBxzO7Vp8aXw2m3uGsHKMu8DCYX3hdPR2QIH9aUwhg5YJbLJPxhL6IYQKOBRU69b9H30u+oQKEoDLXejqGok5t8Ad16iWdUB8Pu7kLqcm8twYm41rfomsGfTSH163V32KmWK3zvpWa8FOUpQBu0Va/xUS0ulo98CHTCdqRKVmoURMQE0MI4U8s/JpQq9/5uIONc6teAV61nSgnnWEC0tgR6qMvOGTcUg7VYD5MHy7UuVGapOpLpRkauEJHK/6/N/XYDFx4cvro8NEFhk/6Nc2Bn+alzs2AxAYySX5KgJ5C6c9lPhUQqm1N/JWGzTwRmfo8RMW4dzqqdcdONafatfq+ibd9b5uYkP/yTdTN1PdHSIaGnCxKE7PhYMhEW/78UN5bocLpdCKSmocQAh2gCcYOmYeD/JMBrcxPS0SeUNCCIITMyeTnpGHxXLEdCqAvSMvUR2qAUBo6c/OTwvn/hnylFFDzJdui4EI6w2YaDl5x4ITOHCPnixiGwjdxI13RKRw1FOMtSTLO31bG+X/LcemdmBa2aiVF02Au10p29VoaGIuH5IDJw5QYKngpmXyTCxO1I8R5x7gq9W8Je+FX71FFFvROt2PqrImkFWBbzBrrwAtBGcJC78SHeozVUnIVwBBtJbdrOYl0ZZxQbvhD+Vrle/wZZpz9J/mjnQweYiDKdx043nrOEiUJq4G3/DeGc6oV0F3QdRAEDln6LlWff9dIf6ue07eYnrP26aznSAqZn/C2oS2rCWIgIAK81mO00KD/9/Lwf1UYUKSf/JtU/xnlH7uDa8sKZW5kc3RyZWFtCmVuZG9iago3IDAgb2JqCjw8IC9UeXBlIC9QYWdlCi9QYXJlbnQgMSAwIFIKL01lZGlhQm94IFsgMCAwIDU5NSA4NDIgXQovUmVzb3VyY2VzIDMgMCBSCi9Db250ZW50cyA1IDAgUgo+PgplbmRvYmoKOCAwIG9iago8PCAvVHlwZSAvRm9udAovU3VidHlwZSAvVHlwZTEKL05hbWUgL0YzCi9CYXNlRm9udCAvSGVsdmV0aWNhLUJvbGQKL0VuY29kaW5nIC9XaW5BbnNpRW5jb2RpbmcgPj4KZW5kb2JqCjkgMCBvYmoKPDwgL1R5cGUgL0ZvbnQKL1N1YnR5cGUgL1R5cGUxCi9OYW1lIC9GMQovQmFzZUZvbnQgL0hlbHZldGljYQovRW5jb2RpbmcgL1dpbkFuc2lFbmNvZGluZyA+PgplbmRvYmoKMSAwIG9iago8PCAvVHlwZSAvUGFnZXMKL0NvdW50IDEKL0tpZHMgWzcgMCBSIF0gPj4KZW5kb2JqCjIgMCBvYmoKPDwgL1R5cGUgL0NhdGFsb2cKL1BhZ2VzIDEgMCBSCiA+PgplbmRvYmoKMyAwIG9iago8PCAKL0ZvbnQgPDwgL0YzIDggMCBSIC9GMSA5IDAgUiA+PiAKL1Byb2NTZXQgWyAvUERGIC9JbWFnZUMgL1RleHQgXSAvWE9iamVjdCA8PC9JbTEgNiAwIFIgCiA+Pgo+PiAKZW5kb2JqCnhyZWYKMCAxMAowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwMDM1MDQgMDAwMDAgbiAKMDAwMDAwMzU2MiAwMDAwMCBuIAowMDAwMDAzNjEyIDAwMDAwIG4gCjAwMDAwMDAwMTUgMDAwMDAgbiAKMDAwMDAwMDA2NSAwMDAwMCBuIAowMDAwMDAwOTQ0IDAwMDAwIG4gCjAwMDAwMDMxNzkgMDAwMDAgbiAKMDAwMDAwMzI4NSAwMDAwMCBuIAowMDAwMDAzMzk3IDAwMDAwIG4gCnRyYWlsZXIKPDwKL1NpemUgMTAKL1Jvb3QgMiAwIFIKL0luZm8gNCAwIFIKPj4Kc3RhcnR4cmVmCjM3MjcKJSVFT0YK</zmr:PDFDaten> + </zmr:BPAbfrageErgebnis> + </zmr:BPAbfrageResponse> + </base:Response> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/datenabgleich/datenabgleichrequest.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/datenabgleich/datenabgleichrequest.xml new file mode 100644 index 00000000..07c501c6 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/datenabgleich/datenabgleichrequest.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> + <soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>GP_Datenabgleich_anfordern</base:ProzessName> + <base:VorgangName>ZMR_VO_Datenabgleich_anfordern</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:BehoerdenNr>000000</base:BehoerdenNr> + </base:Organisation> + <base:Client>Test</base:Client> + </base:ClientInfo> + <zmr:DatenabgleichRequest> + <zmr:DatenabgleichInfo> + <base:GemeindeNr>91601</base:GemeindeNr> + <zmr:DatenabgleichAction>AENDERUNGEN</zmr:DatenabgleichAction> + <zmr:AbgleichVon>2004-01-01T00:00:00.000</zmr:AbgleichVon> + <zmr:AbgleichBis>2004-02-01T00:00:00.000</zmr:AbgleichBis> + </zmr:DatenabgleichInfo> + </zmr:DatenabgleichRequest> + </base:Request> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/datenabgleich/datenabgleichresponse.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/datenabgleich/datenabgleichresponse.xml new file mode 100644 index 00000000..86d96963 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/datenabgleich/datenabgleichresponse.xml @@ -0,0 +1,91 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> + <soap:Body> + <base:Response> + <base:WorkflowInfoServer> + <base:ProzessName>GP_Datenabgleich_anfordern</base:ProzessName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <base:ProzessStatus>C</base:ProzessStatus> + <base:SequenzID>00034</base:SequenzID> + <base:Subprozess> + <base:VorgangName>ZMR_VO_Datenabgleich_anfordern</base:VorgangName> + <base:VorgangStatus>C</base:VorgangStatus> + <base:Required>false</base:Required> + <base:Visible>true</base:Visible> + </base:Subprozess> + </base:WorkflowInfoServer> + <base:ServerInfo> + <base:GeneriertVon>ZMR Server</base:GeneriertVon> + <base:GeneriertAm>2004-06-01T00:00:00.000</base:GeneriertAm> + <base:ServerTransaktionNr>1234567</base:ServerTransaktionNr> + </base:ServerInfo> + <zmr:DatenabgleichResponse> + <zmr:DatenabgleichAnfrage> + <zmr:DatenabgleichInfo> + <base:GemeindeNr>09999</base:GemeindeNr> + <zmr:DatenabgleichAction>AENDERUNGEN</zmr:DatenabgleichAction> + <zmr:AbgleichVon>2004-01-01T00:00:00.000</zmr:AbgleichVon> + <zmr:AbgleichBis>2004-02-01T00:00:00.000</zmr:AbgleichBis> + <base:InclusivHistorie>false</base:InclusivHistorie> + </zmr:DatenabgleichInfo> + </zmr:DatenabgleichAnfrage> + <base:Message> + <base:Number>0004</base:Number> + <base:Text>Die Abgleichdaten wurden erstellt</base:Text> + </base:Message> + <zmr:Datenabgleich> + <base:GefundeneSaetze>230</base:GefundeneSaetze> + <base:AnzahlSaetze>2</base:AnzahlSaetze> + <zmr:DatenabgleichSatz> + <zmr:Aenderungszeitpunkt>2004-01-01T08:00:00.000</zmr:Aenderungszeitpunkt> + <zmr:PersonReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:ZMRZahl>000111111111</base:ZMRZahl> + </zmr:PersonReferenz> + <Familienname>Mustermann</Familienname> + <Vorname>Max</Vorname> + <Geburtsdatum>2001-05-07</Geburtsdatum> + <zmr:PersonAbgleich> + <zmr:DatenAktiv> + <zmr:Person> + <!-- geaenderte Personendaten (ohne Staatsbuergerschaft, Reisedokument, ... --> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2004-01-01T08:00:00.000</base:Von> + <base:BeginnCode>PAN</base:BeginnCode> + <base:BeginnText>Personensnlage</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <base:ZMRZahl>000111111111</base:ZMRZahl> + <zmr:NatuerlichePerson> + <zmr:PersonenName> + <Vorname>Max</Vorname> + <Familienname>Mustermann</Familienname> + </zmr:PersonenName> + <Geschlecht>männlich</Geschlecht> + <Geburtsdatum>2001-05-07</Geburtsdatum> + <Geburtsort>Wien</Geburtsort> + <Geburtsbundesland>Wien</Geburtsbundesland> + <Geburtsstaat>Österreich</Geburtsstaat> + </zmr:NatuerlichePerson> + </zmr:Person> + </zmr:DatenAktiv> + </zmr:PersonAbgleich> + </zmr:DatenabgleichSatz> + </zmr:Datenabgleich> + </zmr:DatenabgleichResponse> + </base:Response> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/fremdenabfrage/fremdenabfragerequest.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/fremdenabfrage/fremdenabfragerequest.xml new file mode 100644 index 00000000..6e9ad235 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/fremdenabfrage/fremdenabfragerequest.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>GP_Fremden_abfrage</base:ProzessName> + <base:VorgangName>ZPR_VO_Fremden_abfrage</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:BehoerdenNr>000000</base:BehoerdenNr> + </base:Organisation> + <base:Client>Test</base:Client> + </base:ClientInfo> + <zmr:FremdenabfrageRequest> + <zmr:FremdenabfrageInfo> + <base:Bezugsfeld>Test</base:Bezugsfeld> + <zmr:FremdenabfrageAction>NICHT_OESTERREICH</zmr:FremdenabfrageAction> + <base:Bezirkskennung>916</base:Bezirkskennung> + <base:InclusivHistorie>false</base:InclusivHistorie> + <base:Formalisiert>false</base:Formalisiert> + <zmr:AlsDruck>true</zmr:AlsDruck> + <base:AnzahlSaetze>10</base:AnzahlSaetze> + </zmr:FremdenabfrageInfo> + <base:GemeldetVon>2004-01-01T00:00:00.000</base:GemeldetVon> + <base:GemeldetBis>2004-01-07T00:00:00.000</base:GemeldetBis> + </zmr:FremdenabfrageRequest> + </base:Request> + </soap:Body> +</soap:Envelope>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/fremdenabfrage/fremdenabfrageresponse.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/fremdenabfrage/fremdenabfrageresponse.xml new file mode 100644 index 00000000..7f0adb0d --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/fremdenabfrage/fremdenabfrageresponse.xml @@ -0,0 +1,45 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Response> + <base:WorkflowInfoServer> + <base:ProzessName>GP_Fremden_abfrage</base:ProzessName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <base:ProzessStatus>A</base:ProzessStatus> + <base:SequenzID>00034</base:SequenzID> + <base:Subprozess> + <base:VorgangName>ZPR_VO_Fremden_abfrage</base:VorgangName> + <base:VorgangStatus>A</base:VorgangStatus> + <base:Required>false</base:Required> + <base:Visible>true</base:Visible> + </base:Subprozess> + </base:WorkflowInfoServer> + <base:ServerInfo> + <base:GeneriertVon>ZMR Server</base:GeneriertVon> + <base:GeneriertAm>2004-01-26T00:00:00.000</base:GeneriertAm> + <base:ServerTransaktionNr>1234567</base:ServerTransaktionNr> + </base:ServerInfo> + <zmr:FremdenabfrageResponse> + <zmr:FremdenabfrageAnfrage> + <zmr:FremdenabfrageInfo> + <base:Bezugsfeld>Test</base:Bezugsfeld> + <zmr:FremdenabfrageAction>NICHT_OESTERREICH</zmr:FremdenabfrageAction> + <base:Bezirkskennung>916</base:Bezirkskennung> + <base:InclusivHistorie>false</base:InclusivHistorie> + <base:Formalisiert>false</base:Formalisiert> + <zmr:AlsDruck>true</zmr:AlsDruck> + <base:AnzahlSaetze>10</base:AnzahlSaetze> + </zmr:FremdenabfrageInfo> + <base:GemeldetVon>2004-01-01T00:00:00.000</base:GemeldetVon> + <base:GemeldetBis>2004-01-07T00:00:00.000</base:GemeldetBis> + </zmr:FremdenabfrageAnfrage> + <base:Message> + <base:Number>0003</base:Number> + <base:Text>Es wurde 1 Personen im ZMR gefunden</base:Text> + </base:Message> + <zmr:PDFDaten>XXYY</zmr:PDFDaten> + </zmr:FremdenabfrageResponse> + </base:Response> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/gisadressabfrage/gisadressabfragerequest1.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/gisadressabfrage/gisadressabfragerequest1.xml new file mode 100644 index 00000000..50bd6226 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/gisadressabfrage/gisadressabfragerequest1.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> + <soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>GP_GIS_Adressabfrage</base:ProzessName> + <base:VorgangName>ZMR_VO_GIS_Adressabfrage</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:BehoerdenNr>000000</base:BehoerdenNr> + </base:Organisation> + <base:Client>Test</base:Client> + </base:ClientInfo> + <zmr:GISAdressabfrageRequest> + <PostAdresse> + <Gemeinde>Testgemeinde</Gemeinde> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <Ortschaft>Testort</Ortschaft> + <Zustelladresse> + <Strassenname>Teststraße</Strassenname> + <Orientierungsnummer>3</Orientierungsnummer> + <Nutzungseinheit>3</Nutzungseinheit> + </Zustelladresse> + </PostAdresse> + </zmr:GISAdressabfrageRequest> + </base:Request> + </soap:Body> +</soap:Envelope>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/gisadressabfrage/gisadressabfragerequest2.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/gisadressabfrage/gisadressabfragerequest2.xml new file mode 100644 index 00000000..86ddb20e --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/gisadressabfrage/gisadressabfragerequest2.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> + <soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>GP_GIS_Adressabfrage</base:ProzessName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <base:SequenzID>00034</base:SequenzID> + <base:VorgangName>ZMR_VO_GIS_Adressabfrage_Druck</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:BehoerdenNr>099999</base:BehoerdenNr> + </base:Organisation> + <base:Client>ZMRHTMLClient V3.0</base:Client> + </base:ClientInfo> + <zmr:GISAdressabfrageDetailRequest> + <zmr:Bestaetigt>true</zmr:Bestaetigt> + </zmr:GISAdressabfrageDetailRequest> + </base:Request> + </soap:Body> +</soap:Envelope>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/gisadressabfrage/gisadressabfrageresponse1.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/gisadressabfrage/gisadressabfrageresponse1.xml new file mode 100644 index 00000000..f17c9596 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/gisadressabfrage/gisadressabfrageresponse1.xml @@ -0,0 +1,50 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> + <soap:Body> + <base:Response> + <base:WorkflowInfoServer> + <base:ProzessName>GP_GIS_Adressabfrage</base:ProzessName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <base:ProzessStatus>A</base:ProzessStatus> + <base:SequenzID>00034</base:SequenzID> + <base:Subprozess> + <base:VorgangName>ZMR_VO_GIS_Adressabfrage</base:VorgangName> + <base:VorgangStatus>C</base:VorgangStatus> + <base:Required>false</base:Required> + <base:Visible>true</base:Visible> + </base:Subprozess> + <base:Subprozess> + <base:VorgangName>ZMR_VO_GIS_Adressabfrage_Druck</base:VorgangName> + <base:VorgangStatus>A</base:VorgangStatus> + <base:Required>false</base:Required> + <base:Visible>true</base:Visible> + </base:Subprozess> + </base:WorkflowInfoServer> + <base:ServerInfo> + <base:GeneriertVon>ZMR Server</base:GeneriertVon> + <base:GeneriertAm>2004-01-26T00:00:00.000</base:GeneriertAm> + <base:ServerTransaktionNr>1234567</base:ServerTransaktionNr> + </base:ServerInfo> + <zmr:GISAdressabfrageResponse> + <zmr:GISAdressabfrageAnfrage> + <PostAdresse> + <Gemeinde>Testgemeinde</Gemeinde> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <Ortschaft>Testort</Ortschaft> + <Zustelladresse> + <Strassenname>Teststraße</Strassenname> + <Orientierungsnummer>3</Orientierungsnummer> + <Nutzungseinheit>3</Nutzungseinheit> + </Zustelladresse> + </PostAdresse> + </zmr:GISAdressabfrageAnfrage> + <base:Message> + <base:Number>023</base:Number> + <base:Text>Personen gefunden.</base:Text> + </base:Message> + <base:GefundeneSaetze>2</base:GefundeneSaetze> + </zmr:GISAdressabfrageResponse> + </base:Response> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/gisadressabfrage/gisadressabfrageresponse2.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/gisadressabfrage/gisadressabfrageresponse2.xml new file mode 100644 index 00000000..68018bfc --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/gisadressabfrage/gisadressabfrageresponse2.xml @@ -0,0 +1,91 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> + <soap:Body> + <base:Response> + <base:WorkflowInfoServer> + <base:ProzessName>GP_GIS_Adressabfrage</base:ProzessName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <base:ProzessStatus>C</base:ProzessStatus> + <base:SequenzID>00134</base:SequenzID> + <base:Subprozess> + <base:VorgangName>ZMR_VO_GIS_Adressabfrage</base:VorgangName> + <base:VorgangStatus>C</base:VorgangStatus> + <base:Required>false</base:Required> + <base:Visible>true</base:Visible> + </base:Subprozess> + <base:Subprozess> + <base:VorgangName>ZMR_VO_GIS_Adressabfrage_Druck</base:VorgangName> + <base:VorgangStatus>C</base:VorgangStatus> + <base:Required>false</base:Required> + <base:Visible>true</base:Visible> + </base:Subprozess> + </base:WorkflowInfoServer> + <base:ServerInfo> + <base:GeneriertVon>ZMR Server</base:GeneriertVon> + <base:GeneriertAm>2004-01-26T00:00:00.000</base:GeneriertAm> + <base:ServerTransaktionNr>1234567</base:ServerTransaktionNr> + </base:ServerInfo> + <zmr:GISAdressabfrageDetailResponse> + <zmr:GISAdressabfrageAnfrage> + <PostAdresse> + <Gemeinde>Testgemeinde</Gemeinde> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <Ortschaft>Testort</Ortschaft> + <Zustelladresse> + <Strassenname>Teststraße</Strassenname> + <Orientierungsnummer>3</Orientierungsnummer> + <Nutzungseinheit>3</Nutzungseinheit> + </Zustelladresse> + </PostAdresse> + </zmr:GISAdressabfrageAnfrage> + <base:Message> + <base:Number>023</base:Number> + <base:Text>Personen gefunden.</base:Text> + </base:Message> + <zmr:GISAdressabfrageErgebnis> + <base:GefundeneSaetze>2</base:GefundeneSaetze> + <PersonenDaten> + <NatuerlichePerson> + <PersonenName> + <Vorname>Max</Vorname> + <Familienname>Mustermann</Familienname> + </PersonenName> + <Geburtsdatum>2003-01-01</Geburtsdatum> + </NatuerlichePerson> + <PostAdresse> + <Gemeinde>Testgemeinde</Gemeinde> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <Ortschaft>Testort</Ortschaft> + <Zustelladresse> + <Strassenname>Teststraße</Strassenname> + <Orientierungsnummer>3</Orientierungsnummer> + <Nutzungseinheit>3</Nutzungseinheit> + </Zustelladresse> + </PostAdresse> + </PersonenDaten> + <PersonenDaten> + <NatuerlichePerson> + <PersonenName> + <Vorname>Ida</Vorname> + <Familienname>Mustermann</Familienname> + </PersonenName> + <Geburtsdatum>2004-01-01</Geburtsdatum> + </NatuerlichePerson> + <PostAdresse> + <Gemeinde>Testgemeinde</Gemeinde> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <Ortschaft>Testort</Ortschaft> + <Zustelladresse> + <Strassenname>Teststraße</Strassenname> + <Orientierungsnummer>3</Orientierungsnummer> + <Nutzungseinheit>3</Nutzungseinheit> + </Zustelladresse> + </PostAdresse> + </PersonenDaten> + <zmr:PDFDaten>WFhYWVlZ</zmr:PDFDaten> + </zmr:GISAdressabfrageErgebnis> + </zmr:GISAdressabfrageDetailResponse> + </base:Response> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/hauseigentuemerabfrage/hauseigentuemerabfragerequest.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/hauseigentuemerabfrage/hauseigentuemerabfragerequest.xml new file mode 100644 index 00000000..c35e07e2 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/hauseigentuemerabfrage/hauseigentuemerabfragerequest.xml @@ -0,0 +1,35 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>GP_Hauseigentuemerabfrage_erstellen</base:ProzessName> + <base:VorgangName>ZMR_VO_Hauseigentuemerabfrage_erstellen</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:BehoerdenNr>000000</base:BehoerdenNr> + </base:Organisation> + <base:Client>Test</base:Client> + </base:ClientInfo> + <zmr:HauseigentuemerAbfrageRequest> + <zmr:HauseigentuemerAbfrageInfo> + <base:Bezugsfeld>Test</base:Bezugsfeld> + <zmr:InclusiveAuskunftsgesperrt>false</zmr:InclusiveAuskunftsgesperrt> + <base:AnzahlSaetze>10</base:AnzahlSaetze> + </zmr:HauseigentuemerAbfrageInfo> + <PostAdresse> + <Postleitzahl>1245</Postleitzahl> + <Gemeinde>Testgemeinde</Gemeinde> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <Ortschaft>Testort</Ortschaft> + <Zustelladresse> + <Strassenname>Teststrasse</Strassenname> + <Orientierungsnummer>1</Orientierungsnummer> + </Zustelladresse> + </PostAdresse> + </zmr:HauseigentuemerAbfrageRequest> + </base:Request> + </soap:Body> +</soap:Envelope>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/hauseigentuemerabfrage/hauseigentuemerabfrageresponse.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/hauseigentuemerabfrage/hauseigentuemerabfrageresponse.xml new file mode 100644 index 00000000..e954abd5 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/hauseigentuemerabfrage/hauseigentuemerabfrageresponse.xml @@ -0,0 +1,213 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Response> + <base:WorkflowInfoServer> + <base:ProzessName>GP_Hauseigentuemerabfrage_erstellen</base:ProzessName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <base:ProzessStatus>A</base:ProzessStatus> + <base:SequenzID>00034</base:SequenzID> + <base:Subprozess> + <base:VorgangName>ZMR_VO_Hauseigentuemerabfrage_erstellen</base:VorgangName> + <base:VorgangStatus>A</base:VorgangStatus> + <base:Required>false</base:Required> + <base:Visible>true</base:Visible> + </base:Subprozess> + <base:Subprozess> + <base:VorgangName>ZMR_VO_Hauseigentuemerabfrage_Druck_erstellen</base:VorgangName> + <base:VorgangStatus>A</base:VorgangStatus> + <base:Required>false</base:Required> + <base:Visible>true</base:Visible> + </base:Subprozess> + </base:WorkflowInfoServer> + <base:ServerInfo> + <base:GeneriertVon>ZMR Server</base:GeneriertVon> + <base:GeneriertAm>2004-01-26T00:00:00.000</base:GeneriertAm> + <base:ServerTransaktionNr>1234567</base:ServerTransaktionNr> + </base:ServerInfo> + <zmr:HauseigentuemerAbfrageResponse> + <zmr:HauseigentuemerAbfrageAnfrage> + <zmr:HauseigentuemerAbfrageInfo> + <base:Bezugsfeld>Test</base:Bezugsfeld> + <zmr:InclusiveAuskunftsgesperrt>false</zmr:InclusiveAuskunftsgesperrt> + <base:AnzahlSaetze>10</base:AnzahlSaetze> + </zmr:HauseigentuemerAbfrageInfo> + <PostAdresse> + <Postleitzahl>1245</Postleitzahl> + <Gemeinde>Testgemeinde</Gemeinde> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <Ortschaft>Testort</Ortschaft> + <Zustelladresse> + <Strassenname>Teststrasse</Strassenname> + <Orientierungsnummer>1</Orientierungsnummer> + </Zustelladresse> + </PostAdresse> + </zmr:HauseigentuemerAbfrageAnfrage> + <base:Message> + <base:Number>0003</base:Number> + <base:Text>Es wurde 1 Personen im ZMR gefunden</base:Text> + </base:Message> + <zmr:HauseigentuemerAbfrageErgebnis> + <base:GefundeneSaetze>1</base:GefundeneSaetze> + <base:SaetzeVon>0</base:SaetzeVon> + <base:SaetzeBis>1</base:SaetzeBis> + <zmr:PersonErgebnisSatz> + <!-- 1. gelieferte Person im Suchergebnis (Personendaten + Meldedaten, historisch und aktuell) --> + <zmr:Personendaten> + <!-- Historienliste der Personendaten. Nur ein PersonErgebnis-Element, wenn nur aktuelle Daten --> + <zmr:PersonErgebnis> + <!-- aktueller Personendaten Gesamtdatensatz --> + <base:ErgebnissatzInfo> + <!-- letzter Änderungs-Zeitpunkt des Person-Gesamtdatensatzes (mit Staatsangehörigkeiten, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <!-- letzter Änderungs-Zeitpunkt der Person-Entity (ohne Staatsangehörigkeiten, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <base:BeginnCode>AMKOR</base:BeginnCode> + <base:BeginnText>Amtliche Korrektur</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <base:ZMRZahl>000111111111</base:ZMRZahl> + <zmr:NatuerlichePerson> + <zmr:PersonenName> + <Vorname>Maximilian</Vorname> + <Familienname>Mustermann</Familienname> + </zmr:PersonenName> + <Geschlecht>männlich</Geschlecht> + <Geburtsdatum>2001-05-07</Geburtsdatum> + <Geburtsort>Wien</Geburtsort> + <Geburtsbundesland>Wien</Geburtsbundesland> + <Geburtsstaat>Österreich</Geburtsstaat> + <zmr:Staatsangehoerigkeit> + <ISOCode3>AUT</ISOCode3> + <StaatsnameDE>Österreich</StaatsnameDE> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2003-01-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2003-01-01T00:00:00.000</base:Von> + <base:BeginnCode>REISEDOK_ANLEGEN</base:BeginnCode> + <base:BeginnText>Reisedokument anlegen</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + </zmr:Staatsangehoerigkeit> + </zmr:NatuerlichePerson> + </zmr:PersonErgebnis> + <zmr:PersonErgebnis> + <!-- historischer Personendaten Gesamtdatensatz (durch Vornamen-Änderung entstanden. Die Staatsagehörigkeit wurde nicht geändert und ist somit mit der im aktuellen Satz identisch--> + <base:ErgebnissatzInfo> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2003-01-01T00:00:00.000</base:Von> + <base:BeginnCode>GEBURT</base:BeginnCode> + <base:BeginnText>Geburt</base:BeginnText> + <base:Bis>2004-01-26T00:00:00.000</base:Bis> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <base:ZMRZahl>000111111111</base:ZMRZahl> + <zmr:NatuerlichePerson> + <zmr:PersonenName> + <Vorname>Hans</Vorname> + <Familienname>Mustermann</Familienname> + </zmr:PersonenName> + <Geschlecht>männlich</Geschlecht> + <Geburtsdatum>2001-05-07</Geburtsdatum> + <Geburtsort>Wien</Geburtsort> + <Geburtsbundesland>Wien</Geburtsbundesland> + <Geburtsstaat>Österreich</Geburtsstaat> + <zmr:Staatsangehoerigkeit> + <ISOCode3>AUT</ISOCode3> + <StaatsnameDE>Österreich</StaatsnameDE> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2003-01-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2003-01-01T00:00:00.000</base:Von> + <base:BeginnCode>REISEDOK_ANLEGEN</base:BeginnCode> + <base:BeginnText>Reisedokument anlegen</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + </zmr:Staatsangehoerigkeit> + </zmr:NatuerlichePerson> + </zmr:PersonErgebnis> + </zmr:Personendaten> + <zmr:Meldedaten> + <!-- Historienliste einer Meldung. Nur ein MeldungErgebnis-Element, wenn nur aktuelle Daten --> + <zmr:MeldungErgebnis> + <base:ErgebnissatzInfo> + <!-- letzter Änderungs-Zeitpunkt des Meldung-Gesamtdatensatzes (mit Auskunftssperren, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>00000002</base:EntityID> + <!-- letzter Änderungs-Zeitpunkt der Meldung-Entity (ohne Auskunftssperren, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <base:BeginnCode>WSANM</base:BeginnCode> + <base:BeginnText>Wohnsitz anmelden</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:BehoerdenNr>099999</base:BehoerdenNr> + </base:Organisation> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <zmr:Wohnsitz> + <zmr:PostAdresse> + <Postleitzahl>1245</Postleitzahl> + <Gemeinde>Testgemeinde</Gemeinde> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <Ortschaft>Testort</Ortschaft> + <zmr:Zustelladresse> + <Strassenname>Teststrasse</Strassenname> + <Orientierungsnummer>1</Orientierungsnummer> + <Wohnsitzqualitaet>H</Wohnsitzqualitaet> + </zmr:Zustelladresse> + </zmr:PostAdresse> + <base:Adressstatus>XXX000</base:Adressstatus> + </zmr:Wohnsitz> + <base:GemeldetVon>2004-01-26T00:00:00.000</base:GemeldetVon> + <base:PeriodeCode>WSANM</base:PeriodeCode> + <base:PeriodeText>Wohnsitz anmelden</base:PeriodeText> + </zmr:MeldungErgebnis> + </zmr:Meldedaten> + </zmr:PersonErgebnisSatz> + </zmr:HauseigentuemerAbfrageErgebnis> + </zmr:HauseigentuemerAbfrageResponse> + </base:Response> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/meldeauskunft/meldeauskunftrequest.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/meldeauskunft/meldeauskunftrequest.xml new file mode 100644 index 00000000..f67f145e --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/meldeauskunft/meldeauskunftrequest.xml @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> + <soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>GP_Meldeauskunft_erstellen</base:ProzessName> + <base:VorgangName>ZMR_VO_Meldeauskunft_erstellen</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:BehoerdenNr>000000</base:BehoerdenNr> + </base:Organisation> + <base:Client>Test</base:Client> + </base:ClientInfo> + <zmr:MeldeauskunftRequest> + <zmr:MeldeauskunftInfo> + <base:Bezugsfeld>Test</base:Bezugsfeld> + <zmr:Ergebnisdaten> + <zmr:AlleAktuellenWohnsitze>false</zmr:AlleAktuellenWohnsitze> + <zmr:OhneGeburtsdatum>false</zmr:OhneGeburtsdatum> + </zmr:Ergebnisdaten> + <base:DruckZusatztext>Testdruck 099999</base:DruckZusatztext> + </zmr:MeldeauskunftInfo> + <base:Bereichskennung>urn:publicid:gv.at:wbpk0009999999</base:Bereichskennung> + <base:BPK>000123456789</base:BPK> + <NatuerlichePerson> + <PersonenName> + <Vorname>Max</Vorname> + <Familienname>Mustermann</Familienname> + </PersonenName> + <Geburtsdatum>2003-01-01</Geburtsdatum> + </NatuerlichePerson> + <PostAdresse> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <Ortschaft>Testort</Ortschaft> + <Zustelladresse> + <Strassenname>Teststraße</Strassenname> + </Zustelladresse> + </PostAdresse> + </zmr:MeldeauskunftRequest> + </base:Request> + </soap:Body> +</soap:Envelope>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/meldeauskunft/meldeauskunftresponse.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/meldeauskunft/meldeauskunftresponse.xml new file mode 100644 index 00000000..75273ec7 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/meldeauskunft/meldeauskunftresponse.xml @@ -0,0 +1,75 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> + <soap:Body> + <base:Response> + <base:WorkflowInfoServer> + <base:ProzessName>GP_Meldeauskunft_erstellen</base:ProzessName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <base:ProzessStatus>A</base:ProzessStatus> + <base:SequenzID>00034</base:SequenzID> + <base:Subprozess> + <base:VorgangName>ZMR_VO_Meldeauskunft_erstellen</base:VorgangName> + <base:VorgangStatus>C</base:VorgangStatus> + <base:Required>false</base:Required> + <base:Visible>true</base:Visible> + </base:Subprozess> + </base:WorkflowInfoServer> + <base:ServerInfo> + <base:GeneriertVon>ZMR Server</base:GeneriertVon> + <base:GeneriertAm>2004-01-26T00:00:00.000</base:GeneriertAm> + <base:ServerTransaktionNr>1234567</base:ServerTransaktionNr> + </base:ServerInfo> + <zmr:MeldeauskunftResponse> + <zmr:MeldeauskunftAnfrage> + <zmr:MeldeauskunftInfo> + <base:Bezugsfeld>Test</base:Bezugsfeld> + <zmr:Ergebnisdaten> + <zmr:AlleAktuellenWohnsitze>false</zmr:AlleAktuellenWohnsitze> + <zmr:OhneGeburtsdatum>false</zmr:OhneGeburtsdatum> + </zmr:Ergebnisdaten> + <base:DruckZusatztext>Testdruck 099999</base:DruckZusatztext> + </zmr:MeldeauskunftInfo> + <base:Bereichskennung>urn:publicid:gv.at:wbpk0009999999</base:Bereichskennung> + <base:BPK>000123456789</base:BPK> + <NatuerlichePerson> + <PersonenName> + <Vorname>Max</Vorname> + <Familienname>Mustermann</Familienname> + </PersonenName> + <Geburtsdatum>2003-01-01</Geburtsdatum> + </NatuerlichePerson> + <PostAdresse> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <Ortschaft>Testort</Ortschaft> + <Zustelladresse> + <Strassenname>Teststraße</Strassenname> + </Zustelladresse> + </PostAdresse> + </zmr:MeldeauskunftAnfrage> + <base:Message> + <base:Number>123</base:Number> + <base:Text>Meldeauskunft erstellt.</base:Text> + </base:Message> + <zmr:Meldeauskunft> + <NatuerlichePerson> + <PersonenName> + <Vorname>Max</Vorname> + <Familienname>Mustermann</Familienname> + </PersonenName> + <Geburtsdatum>2003-01-01</Geburtsdatum> + </NatuerlichePerson> + <PostAdresse> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <Ortschaft>Testort</Ortschaft> + <Zustelladresse> + <Strassenname>Teststraße</Strassenname> + </Zustelladresse> + </PostAdresse> + <zmr:AktMeldesatz>true</zmr:AktMeldesatz> + <zmr:PDFDaten></zmr:PDFDaten> + </zmr:Meldeauskunft> + </zmr:MeldeauskunftResponse> + </base:Response> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/meldebestaetigung/meldebestaetigungrequest.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/meldebestaetigung/meldebestaetigungrequest.xml new file mode 100644 index 00000000..312e16b7 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/meldebestaetigung/meldebestaetigungrequest.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>GP_Meldebestaetigung_erstellen</base:ProzessName> + <base:VorgangName>ZMR_VO_Meldebestaetigung_erstellen</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:BehoerdenNr>099999</base:BehoerdenNr> + </base:Organisation> + <base:Client>ZMRHTMLClient V3.0</base:Client> + </base:ClientInfo> + <zmr:MeldebestaetigungRequest> + <zmr:MeldebestaetigungInfo> + <base:Bezugsfeld>Test</base:Bezugsfeld> + <zmr:MeldebestaetigungArt>AKTLETZT</zmr:MeldebestaetigungArt> + </zmr:MeldebestaetigungInfo> + <base:ZMRZahl>000111111111</base:ZMRZahl> + </zmr:MeldebestaetigungRequest> + </base:Request> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/meldebestaetigung/meldebestaetigungresponse.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/meldebestaetigung/meldebestaetigungresponse.xml new file mode 100644 index 00000000..e3e4a42b --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/meldebestaetigung/meldebestaetigungresponse.xml @@ -0,0 +1,72 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" + xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" + xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> + <soap:Body> + <base:Response> + <base:WorkflowInfoServer> + <base:ProzessName>GP_Meldebestaetigung_erstellen</base:ProzessName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <base:ProzessStatus>C</base:ProzessStatus> + <base:SequenzID>00034</base:SequenzID> + <base:Subprozess> + <base:VorgangName>ZMR_VO_Meldebestaetigung_erstellen</base:VorgangName> + <base:VorgangStatus>C</base:VorgangStatus> + <base:Required>true</base:Required> + <base:Visible>true</base:Visible> + </base:Subprozess> + </base:WorkflowInfoServer> + <base:ServerInfo> + <base:GeneriertVon>ZMR Server</base:GeneriertVon> + <base:GeneriertAm>2004-01-26T00:00:00.000</base:GeneriertAm> + <base:ServerTransaktionNr>1234567</base:ServerTransaktionNr> + </base:ServerInfo> + <zmr:MeldebestaetigungResponse> + <zmr:MeldebestaetigungAnfrage> + <zmr:MeldebestaetigungInfo> + <base:Bezugsfeld>Test</base:Bezugsfeld> + <zmr:MeldebestaetigungArt>AKTLETZT</zmr:MeldebestaetigungArt> + </zmr:MeldebestaetigungInfo> + <base:ZMRZahl>000111111111</base:ZMRZahl> + </zmr:MeldebestaetigungAnfrage> + <base:Message> + <base:Number>01234</base:Number> + <base:Text>Die Meldebestätigung wurde erstellt</base:Text> + </base:Message> + <zmr:Meldebestaetigung> + <base:ZMRZahl>000111111111</base:ZMRZahl> + <NatuerlichePerson> + <PersonenName> + <Vorname>Max</Vorname> + <Familienname>Mustermann</Familienname> + </PersonenName> + <Geschlecht>männlich</Geschlecht> + <Geburtsdatum>2000-01-01</Geburtsdatum> + <Staatsangehoerigkeit> + <ISOCode3>AUT</ISOCode3> + <StaatsnameDE>Österreich</StaatsnameDE> + </Staatsangehoerigkeit> + </NatuerlichePerson> + <zmr:Meldung> + <PostAdresse> + <Gemeinde>Testgemeinde</Gemeinde> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <Ortschaft>Testort</Ortschaft> + <Zustelladresse> + <Strassenname>Teststraße</Strassenname> + <Orientierungsnummer>3</Orientierungsnummer> + </Zustelladresse> + </PostAdresse> + <base:GemeldetVon>2000-01-01T00:00:00.000</base:GemeldetVon> + </zmr:Meldung> + <zmr:AktMeldesatz>true</zmr:AktMeldesatz> + <zmr:PDFDaten></zmr:PDFDaten> + </zmr:Meldebestaetigung> + </zmr:MeldebestaetigungResponse> + </base:Response> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/militaerbehoerden/blaetternrequest.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/militaerbehoerden/blaetternrequest.xml new file mode 100644 index 00000000..a5733f30 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/militaerbehoerden/blaetternrequest.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" + xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" +> + <soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>GP_Militaerbehoerde</base:ProzessName> + <base:ProzessInstanzID>37300000000157</base:ProzessInstanzID> + <base:SequenzID>0</base:SequenzID> + <base:VorgangName>ZPR_VO_Wehrpflichtige_abfragen</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Client>ZMRGUI v4_9_3-04</base:Client> + </base:ClientInfo> + <base:BlaetternRequest> + <base:BlaetternInfo> + <base:Richtung>Vor</base:Richtung> + <base:AnzahlSaetze>30</base:AnzahlSaetze> + </base:BlaetternInfo> + </base:BlaetternRequest> + </base:Request> + </soap:Body> +</soap:Envelope>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/militaerbehoerden/wehrpflichtigeAbfragenRequst.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/militaerbehoerden/wehrpflichtigeAbfragenRequst.xml new file mode 100644 index 00000000..1d4d1e1d --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/militaerbehoerden/wehrpflichtigeAbfragenRequst.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" + xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" + xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" +> + <soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>GP_Militaerbehoerde</base:ProzessName> + <base:VorgangName>ZPR_VO_Wehrpflichtige_abfragen</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Client>ZMRGUI v4_9_3-04</base:Client> + </base:ClientInfo> + <zmr:WehrpflichtigeAbfragenRequest> + <zmr:WehrpflichtigeAbfragenInfo> + <zmr:AlsDruck>false</zmr:AlsDruck> + <base:AnzahlSaetze>30</base:AnzahlSaetze> + </zmr:WehrpflichtigeAbfragenInfo> + <cio:Bundesland>Wien</cio:Bundesland> + <zmr:GeburtsdatumVon>1980-01-01T00:00:00.000</zmr:GeburtsdatumVon> + <zmr:GeburtsdatumBis>1980-02-01T00:00:00.000</zmr:GeburtsdatumBis> + <cio:Familienname>A</cio:Familienname> + </zmr:WehrpflichtigeAbfragenRequest> + </base:Request> + </soap:Body> +</soap:Envelope>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/natuerlicheperson.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/natuerlicheperson.xml new file mode 100644 index 00000000..23958f84 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/natuerlicheperson.xml @@ -0,0 +1,30 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<NatuerlichePerson xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" + xsi:schemaLocation="http://reference.e-government.gv.at/namespace/persondata/de/20040201# ../../xsd/eingebunden/PersonDataZMR.xsd"> + + <Identification> + <Value>000111111111</Value> + <Type>ZMR</Type> + </Identification> + <PersonenName> + <Vorname>Max</Vorname> + <Familienname>Mustermann</Familienname> + <Affix typ="akademischerGrad" position="prefix">Mag. rer. nat.</Affix> + </PersonenName> + <AlternativName Type="NameVorErsterEhe"> + <Familienname>Musterfrau</Familienname> + </AlternativName> + <Geschlecht>männlich</Geschlecht> + <Geburtsdatum>2001-05-07</Geburtsdatum> + <Geburtsort>Wien</Geburtsort> + <Geburtsbundesland>Wien</Geburtsbundesland> + <Geburtsstaat>Österreich</Geburtsstaat> + <Sterbedatum>2003-05-07</Sterbedatum> + <Staatsangehoerigkeit> + <ISOCode3>AUT</ISOCode3> + <StaatsnameDE>Österreich</StaatsnameDE> + </Staatsangehoerigkeit> +</NatuerlichePerson> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personaendern/personaendernrequest1.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personaendern/personaendernrequest1.xml new file mode 100644 index 00000000..62449f25 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personaendern/personaendernrequest1.xml @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>GP_Person_aendern</base:ProzessName> + <base:VorgangName>ZPR_VO_Person_aendern</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:BehoerdenNr>000000</base:BehoerdenNr> + </base:Organisation> + <base:Client>Test</base:Client> + </base:ClientInfo> + <zmr:PersonAendernRequest> + <zmr:PersonAendernInfo> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <base:GrundCode>NAMENSAENDERUNG</base:GrundCode> + </zmr:PersonAendernInfo> + <zmr:PersonReferenz> + <base:Technisch> + <base:EntityID>2434</base:EntityID> + <base:LetzteAenderung>2003-03-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:ZMRZahl>000111111111</base:ZMRZahl> + </zmr:PersonReferenz> + <zmr:PersonAenderung> + <zmr:NatuerlichePerson> + <zmr:PersonenName> + <Vorname>Anna</Vorname> <!--Umbenennung auf Anna--> + </zmr:PersonenName> + </zmr:NatuerlichePerson> + <base:Titel></base:Titel> <!-- Feld Titel wird gelöscht--> + </zmr:PersonAenderung> + </zmr:PersonAendernRequest> + </base:Request> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personaendern/personaendernrequest2.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personaendern/personaendernrequest2.xml new file mode 100644 index 00000000..c93c5b72 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personaendern/personaendernrequest2.xml @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>GP_Person_aendern</base:ProzessName> + <base:VorgangName>ZPR_VO_Person_aendern</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:BehoerdenNr>000000</base:BehoerdenNr> + </base:Organisation> + <base:Client>Test</base:Client> + </base:ClientInfo> + <zmr:PersonAendernRequest> + <zmr:PersonAendernInfo> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <base:GrundCode>XXX</base:GrundCode> + </zmr:PersonAendernInfo> + <zmr:PersonReferenz> + <base:Technisch> + <base:EntityID>2434</base:EntityID> + <base:LetzteAenderung>2003-03-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:ZMRZahl>000111111111</base:ZMRZahl> + </zmr:PersonReferenz> + <zmr:ReisedokumentAenderung> + <base:EntityReferenz> + <base:EntityID>0004</base:EntityID> + </base:EntityReferenz> + <base:Beendigung>true</base:Beendigung> + <!-- Das Reisedokument wird fachlich beendet, andere Felder werden nicht geändert. + Es könnten auch andere Felder hier zugleich mit der Beendigung noch verändert werden. + Die Beendigung ist nicht an das Feld DokumentGiltBis gekoppelt + --> + </zmr:ReisedokumentAenderung> + </zmr:PersonAendernRequest> + </base:Request> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personaendern/personaendernresponse1.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personaendern/personaendernresponse1.xml new file mode 100644 index 00000000..dde7e494 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personaendern/personaendernresponse1.xml @@ -0,0 +1,85 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Response> + <base:WorkflowInfoServer> + <base:ProzessName>GP_Person_aendern</base:ProzessName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <base:ProzessStatus>A</base:ProzessStatus> + <base:SequenzID>00034</base:SequenzID> + <base:Subprozess> + <base:VorgangName>ZPR_VO_Person_aendern</base:VorgangName> + <base:VorgangStatus>C</base:VorgangStatus> + <base:Required>false</base:Required> + <base:Visible>true</base:Visible> + </base:Subprozess> + </base:WorkflowInfoServer> + <base:ServerInfo> + <base:GeneriertVon>ZMR Server</base:GeneriertVon> + <base:GeneriertAm>2004-01-26T00:00:00.000</base:GeneriertAm> + <base:ServerTransaktionNr>1234567</base:ServerTransaktionNr> + </base:ServerInfo> + <zmr:PersonAendernResponse> + <base:Message> + <base:Number>1234</base:Number> + <base:Text>Person wurde geändert</base:Text> + </base:Message> + <zmr:PersonErgebnis> + <base:ErgebnissatzInfo> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <base:BeginnCode>NAMENSAENDERUNG</base:BeginnCode> + <base:BeginnText>Namensänderung</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <base:ZMRZahl>000111111111</base:ZMRZahl> + <zmr:NatuerlichePerson> + <zmr:PersonenName> + <Vorname>Anna</Vorname> + <Familienname>Mustermann</Familienname> + </zmr:PersonenName> + <AlternativName Type="NameVorErsterEhe"> + <Familienname>Huber</Familienname> + </AlternativName> + <Geschlecht>weiblich</Geschlecht> + <Geburtsdatum>2001-05-07</Geburtsdatum> + <Geburtsort>Wien</Geburtsort> + <Geburtsbundesland>Wien</Geburtsbundesland> + <Geburtsstaat>Österreich</Geburtsstaat> + <zmr:Staatsangehoerigkeit> + <ISOCode3>AUT</ISOCode3> + <StaatsnameDE>Österreich</StaatsnameDE> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2003-01-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2003-01-01T00:00:00.000</base:Von> + <base:BeginnCode>REISEDOK_ANLEGEN</base:BeginnCode> + <base:BeginnText>Reisedokument anlegen</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + </zmr:Staatsangehoerigkeit> + </zmr:NatuerlichePerson> + </zmr:PersonErgebnis> + </zmr:PersonAendernResponse> + </base:Response> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personaendern/personaendernresponse2.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personaendern/personaendernresponse2.xml new file mode 100644 index 00000000..d824dfac --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personaendern/personaendernresponse2.xml @@ -0,0 +1,110 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Response> + <base:WorkflowInfoServer> + <base:ProzessName>GP_Person_aendern</base:ProzessName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <base:ProzessStatus>A</base:ProzessStatus> + <base:SequenzID>00034</base:SequenzID> + <base:Subprozess> + <base:VorgangName>ZPR_VO_Person_aendern</base:VorgangName> + <base:VorgangStatus>C</base:VorgangStatus> + <base:Required>false</base:Required> + <base:Visible>true</base:Visible> + </base:Subprozess> + </base:WorkflowInfoServer> + <base:ServerInfo> + <base:GeneriertVon>ZMR Server</base:GeneriertVon> + <base:GeneriertAm>2004-01-26T00:00:00.000</base:GeneriertAm> + <base:ServerTransaktionNr>1234567</base:ServerTransaktionNr> + </base:ServerInfo> + <zmr:PersonAendernResponse> + <base:Message> + <base:Number>1234</base:Number> + <base:Text>Personendaten wurden geändert</base:Text> + </base:Message> + <zmr:PersonErgebnis> + <base:ErgebnissatzInfo> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>2434</base:EntityID> + <base:LetzteAenderung>2003-01-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2003-01-01T00:00:00.000</base:Von> + <base:BeginnCode>GEBURT</base:BeginnCode> + <base:BeginnText>Geburt</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <base:ZMRZahl>000111111111</base:ZMRZahl> + <zmr:NatuerlichePerson> + <zmr:PersonenName> + <Vorname>Anna</Vorname> + <Familienname>Mustermann</Familienname> + </zmr:PersonenName> + <AlternativName Type="NameVorErsterEhe"> + <Familienname>Huber</Familienname> + </AlternativName> + <Geschlecht>weiblich</Geschlecht> + <Geburtsdatum>2001-05-07</Geburtsdatum> + <Geburtsort>Wien</Geburtsort> + <Geburtsbundesland>Wien</Geburtsbundesland> + <Geburtsstaat>Österreich</Geburtsstaat> + <zmr:Staatsangehoerigkeit> + <ISOCode3>AUT</ISOCode3> + <StaatsnameDE>Österreich</StaatsnameDE> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0004</base:EntityID> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + + <base:Von>2003-01-01T00:00:00.000</base:Von> + <base:BeginnCode>STAATSANGEH_ANLEGEN</base:BeginnCode> + <base:BeginnText>Staatsangehörigkeit anlegen</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + </zmr:Staatsangehoerigkeit> + </zmr:NatuerlichePerson> + <zmr:Reisedokument> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0004</base:EntityID> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <!-- Nulldauersatz des beendeten Reisedokuments --> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <base:BeginnCode>REISEDOK_AENDERN</base:BeginnCode> + <base:BeginnText>Reisedokument geändert</base:BeginnText> + <base:Bis>2004-01-26T00:00:00.000</base:Bis> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <base:DokumentArt>Reisedokument</base:DokumentArt> + <base:DokumentNummer>123</base:DokumentNummer> + <base:AusstellDatum>2003-01-01</base:AusstellDatum> + <base:Ausstellungsstaat>Libyen</base:Ausstellungsstaat> + <base:DokumentGiltBis>2004-01-26T00:00:00.000</base:DokumentGiltBis> + </zmr:Reisedokument> + </zmr:PersonErgebnis> + </zmr:PersonAendernResponse> + </base:Response> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personanlegen/personanlegenrequest.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personanlegen/personanlegenrequest.xml new file mode 100644 index 00000000..c9d604cd --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personanlegen/personanlegenrequest.xml @@ -0,0 +1,56 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>GP_Person_anlegen</base:ProzessName> + <base:VorgangName>ZPR_VO_Person_anlegen</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:BehoerdenNr>000000</base:BehoerdenNr> + </base:Organisation> + <base:Client>Test</base:Client> + </base:ClientInfo> + <zmr:PersonAnlegenRequest> + <zmr:PersonAnlegenInfo> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <base:GrundCode>GEBURT</base:GrundCode> + </zmr:PersonAnlegenInfo> + <zmr:PersonAnlage> + <zmr:NatuerlichePerson> + <zmr:PersonenName> + <Vorname>Max</Vorname> + <Familienname>Mustermann</Familienname> + </zmr:PersonenName> + <Geschlecht>männlich</Geschlecht> + <Geburtsdatum>2001-05-07</Geburtsdatum> + <Geburtsort>Wien</Geburtsort> + <Geburtsbundesland>Wien</Geburtsbundesland> + <Geburtsstaat>Österreich</Geburtsstaat> + <zmr:Staatsangehoerigkeit> + <ISOCode3>AUT</ISOCode3> + </zmr:Staatsangehoerigkeit> + </zmr:NatuerlichePerson> + </zmr:PersonAnlage> + <zmr:MeldungAnlage> + <zmr:Wohnsitz> + <zmr:PostAdresse> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <zmr:Zustelladresse> + <Wohnsitzqualitaet>H</Wohnsitzqualitaet> + <zmr:AdressRegisterEintrag> + <Adresscode>1234567</Adresscode> + <Subcode>111</Subcode> + <Objektnummer>1111111</Objektnummer> + </zmr:AdressRegisterEintrag> + <!-- Offizielle Adresse, es müssen nur die Adresscodes geschickt werden--> + </zmr:Zustelladresse> + </zmr:PostAdresse> + </zmr:Wohnsitz> + </zmr:MeldungAnlage> + </zmr:PersonAnlegenRequest> + </base:Request> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personanlegen/personanlegenresponse.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personanlegen/personanlegenresponse.xml new file mode 100644 index 00000000..dbc29ee8 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personanlegen/personanlegenresponse.xml @@ -0,0 +1,118 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Response> + <base:WorkflowInfoServer> + <base:ProzessName>GP_Person_anlegen</base:ProzessName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <base:ProzessStatus>A</base:ProzessStatus> + <base:SequenzID>00034</base:SequenzID> + <base:Subprozess> + <base:VorgangName>ZPR_VO_Person_anlegen</base:VorgangName> + <base:VorgangStatus>C</base:VorgangStatus> + <base:Required>false</base:Required> + <base:Visible>true</base:Visible> + </base:Subprozess> + </base:WorkflowInfoServer> + <base:ServerInfo> + <base:GeneriertVon>ZMR Server</base:GeneriertVon> + <base:GeneriertAm>2004-01-26T00:00:00.000</base:GeneriertAm> + <base:ServerTransaktionNr>1234567</base:ServerTransaktionNr> + </base:ServerInfo> + <zmr:PersonAnlegenResponse> + <base:Message> + <base:Number>1234</base:Number> + <base:Text>Person wurde angelegt</base:Text> + </base:Message> + <zmr:PersonErgebnis> + <base:ErgebnissatzInfo> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <base:BeginnCode>GEBURT</base:BeginnCode> + <base:BeginnText>Geburt</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <base:ZMRZahl>000111111111</base:ZMRZahl> + <zmr:NatuerlichePerson> + <zmr:PersonenName> + <Vorname>Max</Vorname> + <Familienname>Mustermann</Familienname> + </zmr:PersonenName> + <Geschlecht>männlich</Geschlecht> + <Geburtsdatum>2001-05-07</Geburtsdatum> + <Geburtsort>Wien</Geburtsort> + <Geburtsbundesland>Wien</Geburtsbundesland> + <Geburtsstaat>Österreich</Geburtsstaat> + <zmr:Staatsangehoerigkeit> + <ISOCode3>AUT</ISOCode3> + <StaatsnameDE>Österreich</StaatsnameDE> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <base:BeginnCode>STAATSANGEH_ANLEGEN</base:BeginnCode> + <base:BeginnText>Staatsangehörigkeit angelegt</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + </zmr:Staatsangehoerigkeit> + </zmr:NatuerlichePerson> + </zmr:PersonErgebnis> + <zmr:MeldungErgebnis> + <base:ErgebnissatzInfo> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>00000002</base:EntityID> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <base:BeginnCode>WSANM</base:BeginnCode> + <base:BeginnText>Wohnsitz anmelden</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:BehoerdenNr>099999</base:BehoerdenNr> + </base:Organisation> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <zmr:Wohnsitz> + <zmr:PostAdresse> + <Postleitzahl>1245</Postleitzahl> + <Gemeinde>Testgemeinde</Gemeinde> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <Ortschaft>Testort</Ortschaft> + <zmr:Zustelladresse> + <Strassenname>Teststrasse</Strassenname> + <Orientierungsnummer>1</Orientierungsnummer> + <Wohnsitzqualitaet>H</Wohnsitzqualitaet> + </zmr:Zustelladresse> + </zmr:PostAdresse> + <base:Adressstatus>XXX000</base:Adressstatus> + </zmr:Wohnsitz> + <base:GemeldetVon>2004-01-26T00:00:00.000</base:GemeldetVon> + <base:PeriodeCode>WSANM</base:PeriodeCode> + <base:PeriodeText>Wohnsitz anmelden</base:PeriodeText> + </zmr:MeldungErgebnis> + </zmr:PersonAnlegenResponse> + </base:Response> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personenabfrage/blaetternrequest.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personenabfrage/blaetternrequest.xml new file mode 100644 index 00000000..57395ab5 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personenabfrage/blaetternrequest.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>GP_Verknuepfungsanfrage</base:ProzessName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <!-- Die InstanzID der laufenden Prozesses muss hier übermittelt werden, um die Suche fortzusetzen (aus WorkflowInfoServer des ersten Suchergebnisses--> + <base:SequenzID>00034</base:SequenzID> + <base:VorgangName>ZPR_VO_Person_abfragen</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:BehoerdenNr>000000</base:BehoerdenNr> + </base:Organisation> + <base:Client>Test</base:Client> + </base:ClientInfo> + <base:BlaetternRequest> + <base:BlaetternInfo> + <base:Richtung>Vor</base:Richtung> + <base:AnzahlSaetze>3</base:AnzahlSaetze> + </base:BlaetternInfo> + </base:BlaetternRequest> + </base:Request> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personenabfrage/blaetternresponse.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personenabfrage/blaetternresponse.xml new file mode 100644 index 00000000..50e831f2 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personenabfrage/blaetternresponse.xml @@ -0,0 +1,210 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Response> + <base:WorkflowInfoServer> + <base:ProzessName>GP_Verknuepfungsanfrage</base:ProzessName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <base:ProzessStatus>A</base:ProzessStatus> + <base:SequenzID>00034</base:SequenzID> + <base:Subprozess> + <base:VorgangName>ZPR_VO_Person_abfragen</base:VorgangName> + <base:VorgangStatus>A</base:VorgangStatus> + <base:Required>false</base:Required> + <base:Visible>true</base:Visible> + </base:Subprozess> + </base:WorkflowInfoServer> + <base:ServerInfo> + <base:GeneriertVon>ZMR Server</base:GeneriertVon> + <base:GeneriertAm>2004-01-26T00:00:00.000</base:GeneriertAm> + <base:ServerTransaktionNr>1234567</base:ServerTransaktionNr> + </base:ServerInfo> + <zmr:PersonenAbfrageResponse> + <zmr:PersonenAbfrageAnfrage> + <zmr:PersonenAbfrageInfo> + <base:Bezugsfeld>Test</base:Bezugsfeld> + <zmr:Suchkriterien> + <base:InclusivHistorie>false</base:InclusivHistorie> + <base:Formalisiert>false</base:Formalisiert> + </zmr:Suchkriterien> + <zmr:Ergebniskriterien> + <base:InclusivHistorie>true</base:InclusivHistorie> + </zmr:Ergebniskriterien> + <base:AnzahlSaetze>10</base:AnzahlSaetze> + </zmr:PersonenAbfrageInfo> + <NatuerlichePerson> + <PersonenName> + <Vorname>Max</Vorname> + <Familienname>Mustermann</Familienname> + </PersonenName> + </NatuerlichePerson> + </zmr:PersonenAbfrageAnfrage> + <base:Message> + <base:Number>0003</base:Number> + <base:Text>Es wurde 1 Personen im ZMR gefunden</base:Text> + </base:Message> + <zmr:PersonenAbfrageErgebnis> + <base:GefundeneSaetze>4</base:GefundeneSaetze> + <base:SaetzeVon>3</base:SaetzeVon> + <!-- Es wurde weitergeblättert - der letzte Satz wird geliefert --> + <base:SaetzeBis>4</base:SaetzeBis> + <zmr:PersonErgebnisSatz> + <!-- 1. gelieferte Person im Suchergebnis (Personendaten + Meldedaten, historisch und aktuell) --> + <zmr:Personendaten> + <!-- Historienliste der Personendaten. Nur ein PersonErgebnis-Element, wenn nur aktuelle Daten --> + <zmr:PersonErgebnis> + <!-- aktueller Personendaten Gesamtdatensatz --> + <base:ErgebnissatzInfo> + <!-- letzter Änderungs-Zeitpunkt des Person-Gesamtdatensatzes (mit Staatsangehörigkeiten, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <!-- letzter Änderungs-Zeitpunkt der Person-Entity (ohne Staatsangehörigkeiten, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <base:BeginnCode>AMKOR</base:BeginnCode> + <base:BeginnText>Amtliche Korrektur</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <base:ZMRZahl>000111111111</base:ZMRZahl> + <zmr:NatuerlichePerson> + <zmr:PersonenName> + <Vorname>Maximilian</Vorname> + <Familienname>Mustermann</Familienname> + </zmr:PersonenName> + <Geschlecht>männlich</Geschlecht> + <Geburtsdatum>2001-05-07</Geburtsdatum> + <Geburtsort>Wien</Geburtsort> + <Geburtsbundesland>Wien</Geburtsbundesland> + <Geburtsstaat>Österreich</Geburtsstaat> + <zmr:Staatsangehoerigkeit> + <ISOCode3>AUT</ISOCode3> + <StaatsnameDE>Österreich</StaatsnameDE> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2003-01-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2003-01-01T00:00:00.000</base:Von> + <base:BeginnCode>REISEDOK_ANLEGEN</base:BeginnCode> + <base:BeginnText>Reisedokument anlegen</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + </zmr:Staatsangehoerigkeit> + </zmr:NatuerlichePerson> + </zmr:PersonErgebnis> + <zmr:PersonErgebnis> + <!-- historischer Personendaten Gesamtdatensatz (durch Vornamen-Änderung entstanden. Die Staatsagehörigkeit wurde nicht geändert und ist somit mit der im aktuellen Satz identisch--> + <base:ErgebnissatzInfo> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2003-01-01T00:00:00.000</base:Von> + <base:BeginnCode>GEBURT</base:BeginnCode> + <base:BeginnText>Geburt</base:BeginnText> + <base:Bis>2004-01-26T00:00:00.000</base:Bis> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <base:ZMRZahl>000111111111</base:ZMRZahl> + <zmr:NatuerlichePerson> + <zmr:PersonenName> + <Vorname>Hans</Vorname> + <Familienname>Mustermann</Familienname> + </zmr:PersonenName> + <Geschlecht>männlich</Geschlecht> + <Geburtsdatum>2001-05-07</Geburtsdatum> + <Geburtsort>Wien</Geburtsort> + <Geburtsbundesland>Wien</Geburtsbundesland> + <Geburtsstaat>Österreich</Geburtsstaat> + <zmr:Staatsangehoerigkeit> + <ISOCode3>AUT</ISOCode3> + <StaatsnameDE>Österreich</StaatsnameDE> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2003-01-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2003-01-01T00:00:00.000</base:Von> + <base:BeginnCode>REISEDOK_ANLEGEN</base:BeginnCode> + <base:BeginnText>Reisedokument anlegen</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + </zmr:Staatsangehoerigkeit> + </zmr:NatuerlichePerson> + </zmr:PersonErgebnis> + </zmr:Personendaten> + <zmr:Meldedaten> + <!-- Historienliste einer Meldung. Nur ein MeldungErgebnis-Element, wenn nur aktuelle Daten --> + <zmr:MeldungErgebnis> + <base:ErgebnissatzInfo> + <!-- letzter Änderungs-Zeitpunkt des Meldung-Gesamtdatensatzes (mit Auskunftssperren, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>00000002</base:EntityID> + <!-- letzter Änderungs-Zeitpunkt der Meldung-Entity (ohne Auskunftssperren, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <base:BeginnCode>WSANM</base:BeginnCode> + <base:BeginnText>Wohnsitz anmelden</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:BehoerdenNr>099999</base:BehoerdenNr> + </base:Organisation> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <zmr:Wohnsitz> + <zmr:PostAdresse> + <Postleitzahl>1245</Postleitzahl> + <Gemeinde>Testgemeinde</Gemeinde> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <Ortschaft>Testort</Ortschaft> + <zmr:Zustelladresse> + <Strassenname>Teststrasse</Strassenname> + <Orientierungsnummer>1</Orientierungsnummer> + <Wohnsitzqualitaet>H</Wohnsitzqualitaet> + </zmr:Zustelladresse> + </zmr:PostAdresse> + <base:Adressstatus>XXX000</base:Adressstatus> + </zmr:Wohnsitz> + <base:GemeldetVon>2004-01-26T00:00:00.000</base:GemeldetVon> + <base:PeriodeCode>WSANM</base:PeriodeCode> + <base:PeriodeText>Wohnsitz anmelden</base:PeriodeText> + </zmr:MeldungErgebnis> + </zmr:Meldedaten> + </zmr:PersonErgebnisSatz> + </zmr:PersonenAbfrageErgebnis> + </zmr:PersonenAbfrageResponse> + </base:Response> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personenabfrage/personenabfragedruckrequest.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personenabfrage/personenabfragedruckrequest.xml new file mode 100644 index 00000000..2a6cc5e0 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personenabfrage/personenabfragedruckrequest.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>GP_Verknuepfungsanfrage</base:ProzessName> + <base:VorgangName>ZPR_VO_Person_abfragen_drucken</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:BehoerdenNr>000000</base:BehoerdenNr> + </base:Organisation> + <base:Client>Test</base:Client> + </base:ClientInfo> + <zmr:PersonenAbfrageDruckRequest> + <base:EntityID>00001</base:EntityID> + <base:EntityID>00008</base:EntityID> + <base:EntityID>00003</base:EntityID> + </zmr:PersonenAbfrageDruckRequest> + </base:Request> + </soap:Body> +</soap:Envelope>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personenabfrage/personenabfragedruckresponse.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personenabfrage/personenabfragedruckresponse.xml new file mode 100644 index 00000000..6463624b --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personenabfrage/personenabfragedruckresponse.xml @@ -0,0 +1,51 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Response> + <base:WorkflowInfoServer> + <base:ProzessName>GP_Verknuepfungsanfrage</base:ProzessName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <base:ProzessStatus>C</base:ProzessStatus> + <base:SequenzID>00034</base:SequenzID> + <base:Subprozess> + <base:VorgangName>ZPR_VO_Person_abfragen_drucken</base:VorgangName> + <base:VorgangStatus>C</base:VorgangStatus> + <base:Required>false</base:Required> + <base:Visible>true</base:Visible> + </base:Subprozess> + </base:WorkflowInfoServer> + <base:ServerInfo> + <base:GeneriertVon>ZMR Server</base:GeneriertVon> + <base:GeneriertAm>2004-01-26T00:00:00.000</base:GeneriertAm> + <base:ServerTransaktionNr>1234567</base:ServerTransaktionNr> + </base:ServerInfo> + <zmr:PersonenAbfrageDruckResponse> + <zmr:PersonenAbfrageAnfrage> + <zmr:PersonenAbfrageInfo> + <base:Bezugsfeld>Test</base:Bezugsfeld> + <zmr:Suchkriterien> + <base:InclusivHistorie>false</base:InclusivHistorie> + <base:Formalisiert>false</base:Formalisiert> + </zmr:Suchkriterien> + <zmr:Ergebniskriterien> + <base:InclusivHistorie>true</base:InclusivHistorie> + </zmr:Ergebniskriterien> + <base:AnzahlSaetze>10</base:AnzahlSaetze> + </zmr:PersonenAbfrageInfo> + <NatuerlichePerson> + <PersonenName> + <Vorname>Max</Vorname> + <Familienname>Mustermann</Familienname> + </PersonenName> + </NatuerlichePerson> + </zmr:PersonenAbfrageAnfrage> + <base:Message> + <base:Number>0003</base:Number> + <base:Text>Die Druckdaten wurden aufbereitet</base:Text> + </base:Message> + <zmr:PDFDaten>XXYY</zmr:PDFDaten> + </zmr:PersonenAbfrageDruckResponse> + </base:Response> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personenabfrage/personenabfragerequest.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personenabfrage/personenabfragerequest.xml new file mode 100644 index 00000000..a856e8ab --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personenabfrage/personenabfragerequest.xml @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>GP_Verknuepfungsanfrage</base:ProzessName> + <base:VorgangName>ZPR_VO_Person_abfragen</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:BehoerdenNr>000000</base:BehoerdenNr> + </base:Organisation> + <base:Client>Test</base:Client> + </base:ClientInfo> + <zmr:PersonenAbfrageRequest> + <zmr:PersonenAbfrageInfo> + <base:Bezugsfeld>Test</base:Bezugsfeld> + <zmr:Suchkriterien> + <base:InclusivHistorie>false</base:InclusivHistorie> + <base:Formalisiert>false</base:Formalisiert> + </zmr:Suchkriterien> + <zmr:Ergebniskriterien> + <base:InclusivHistorie>true</base:InclusivHistorie> + </zmr:Ergebniskriterien> + <base:AnzahlSaetze>10</base:AnzahlSaetze> + </zmr:PersonenAbfrageInfo> + <NatuerlichePerson> + <PersonenName> + <Vorname>Max</Vorname> + <Familienname>Mustermann</Familienname> + </PersonenName> + </NatuerlichePerson> + </zmr:PersonenAbfrageRequest> + </base:Request> + </soap:Body> +</soap:Envelope>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personenabfrage/personenabfrageresponse.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personenabfrage/personenabfrageresponse.xml new file mode 100644 index 00000000..70b6aef3 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personenabfrage/personenabfrageresponse.xml @@ -0,0 +1,209 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Response> + <base:WorkflowInfoServer> + <base:ProzessName>GP_Verknuepfungsanfrage</base:ProzessName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <base:ProzessStatus>A</base:ProzessStatus> + <base:SequenzID>00034</base:SequenzID> + <base:Subprozess> + <base:VorgangName>ZPR_VO_Person_abfragen</base:VorgangName> + <base:VorgangStatus>A</base:VorgangStatus> + <base:Required>false</base:Required> + <base:Visible>true</base:Visible> + </base:Subprozess> + </base:WorkflowInfoServer> + <base:ServerInfo> + <base:GeneriertVon>ZMR Server</base:GeneriertVon> + <base:GeneriertAm>2004-01-26T00:00:00.000</base:GeneriertAm> + <base:ServerTransaktionNr>1234567</base:ServerTransaktionNr> + </base:ServerInfo> + <zmr:PersonenAbfrageResponse> + <zmr:PersonenAbfrageAnfrage> + <zmr:PersonenAbfrageInfo> + <base:Bezugsfeld>Test</base:Bezugsfeld> + <zmr:Suchkriterien> + <base:InclusivHistorie>false</base:InclusivHistorie> + <base:Formalisiert>false</base:Formalisiert> + </zmr:Suchkriterien> + <zmr:Ergebniskriterien> + <base:InclusivHistorie>true</base:InclusivHistorie> + </zmr:Ergebniskriterien> + <base:AnzahlSaetze>10</base:AnzahlSaetze> + </zmr:PersonenAbfrageInfo> + <NatuerlichePerson> + <PersonenName> + <Vorname>Max</Vorname> + <Familienname>Mustermann</Familienname> + </PersonenName> + </NatuerlichePerson> + </zmr:PersonenAbfrageAnfrage> + <base:Message> + <base:Number>0003</base:Number> + <base:Text>Es wurde 1 Personen im ZMR gefunden</base:Text> + </base:Message> + <zmr:PersonenAbfrageErgebnis> + <base:GefundeneSaetze>1</base:GefundeneSaetze> + <base:SaetzeVon>0</base:SaetzeVon> + <base:SaetzeBis>1</base:SaetzeBis> + <zmr:PersonErgebnisSatz> + <!-- 1. gelieferte Person im Suchergebnis (Personendaten + Meldedaten, historisch und aktuell) --> + <zmr:Personendaten> + <!-- Historienliste der Personendaten. Nur ein PersonErgebnis-Element, wenn nur aktuelle Daten --> + <zmr:PersonErgebnis> + <!-- aktueller Personendaten Gesamtdatensatz --> + <base:ErgebnissatzInfo> + <!-- letzter Änderungs-Zeitpunkt des Person-Gesamtdatensatzes (mit Staatsangehörigkeiten, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <!-- letzter Änderungs-Zeitpunkt der Person-Entity (ohne Staatsangehörigkeiten, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <base:BeginnCode>AMKOR</base:BeginnCode> + <base:BeginnText>Amtliche Korrektur</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <base:ZMRZahl>000111111111</base:ZMRZahl> + <zmr:NatuerlichePerson> + <zmr:PersonenName> + <Vorname>Maximilian</Vorname> + <Familienname>Mustermann</Familienname> + </zmr:PersonenName> + <Geschlecht>männlich</Geschlecht> + <Geburtsdatum>2001-05-07</Geburtsdatum> + <Geburtsort>Wien</Geburtsort> + <Geburtsbundesland>Wien</Geburtsbundesland> + <Geburtsstaat>Österreich</Geburtsstaat> + <zmr:Staatsangehoerigkeit> + <ISOCode3>AUT</ISOCode3> + <StaatsnameDE>Österreich</StaatsnameDE> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2003-01-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2003-01-01T00:00:00.000</base:Von> + <base:BeginnCode>REISEDOK_ANLEGEN</base:BeginnCode> + <base:BeginnText>Reisedokument anlegen</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + </zmr:Staatsangehoerigkeit> + </zmr:NatuerlichePerson> + </zmr:PersonErgebnis> + <zmr:PersonErgebnis> + <!-- historischer Personendaten Gesamtdatensatz (durch Vornamen-Änderung entstanden. Die Staatsagehörigkeit wurde nicht geändert und ist somit mit der im aktuellen Satz identisch--> + <base:ErgebnissatzInfo> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2003-01-01T00:00:00.000</base:Von> + <base:BeginnCode>GEBURT</base:BeginnCode> + <base:BeginnText>Geburt</base:BeginnText> + <base:Bis>2004-01-26T00:00:00.000</base:Bis> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <base:ZMRZahl>000111111111</base:ZMRZahl> + <zmr:NatuerlichePerson> + <zmr:PersonenName> + <Vorname>Hans</Vorname> + <Familienname>Mustermann</Familienname> + </zmr:PersonenName> + <Geschlecht>männlich</Geschlecht> + <Geburtsdatum>2001-05-07</Geburtsdatum> + <Geburtsort>Wien</Geburtsort> + <Geburtsbundesland>Wien</Geburtsbundesland> + <Geburtsstaat>Österreich</Geburtsstaat> + <zmr:Staatsangehoerigkeit> + <ISOCode3>AUT</ISOCode3> + <StaatsnameDE>Österreich</StaatsnameDE> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2003-01-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2003-01-01T00:00:00.000</base:Von> + <base:BeginnCode>REISEDOK_ANLEGEN</base:BeginnCode> + <base:BeginnText>Reisedokument anlegen</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + </zmr:Staatsangehoerigkeit> + </zmr:NatuerlichePerson> + </zmr:PersonErgebnis> + </zmr:Personendaten> + <zmr:Meldedaten> + <!-- Historienliste einer Meldung. Nur ein MeldungErgebnis-Element, wenn nur aktuelle Daten --> + <zmr:MeldungErgebnis> + <base:ErgebnissatzInfo> + <!-- letzter Änderungs-Zeitpunkt des Meldung-Gesamtdatensatzes (mit Auskunftssperren, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>00000002</base:EntityID> + <!-- letzter Änderungs-Zeitpunkt der Meldung-Entity (ohne Auskunftssperren, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <base:BeginnCode>WSANM</base:BeginnCode> + <base:BeginnText>Wohnsitz anmelden</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:BehoerdenNr>099999</base:BehoerdenNr> + </base:Organisation> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <zmr:Wohnsitz> + <zmr:PostAdresse> + <Postleitzahl>1245</Postleitzahl> + <Gemeinde>Testgemeinde</Gemeinde> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <Ortschaft>Testort</Ortschaft> + <zmr:Zustelladresse> + <Strassenname>Teststrasse</Strassenname> + <Orientierungsnummer>1</Orientierungsnummer> + <Wohnsitzqualitaet>H</Wohnsitzqualitaet> + </zmr:Zustelladresse> + </zmr:PostAdresse> + <base:Adressstatus>XXX000</base:Adressstatus> + </zmr:Wohnsitz> + <base:GemeldetVon>2004-01-26T00:00:00.000</base:GemeldetVon> + <base:PeriodeCode>WSANM</base:PeriodeCode> + <base:PeriodeText>Wohnsitz anmelden</base:PeriodeText> + </zmr:MeldungErgebnis> + </zmr:Meldedaten> + </zmr:PersonErgebnisSatz> + </zmr:PersonenAbfrageErgebnis> + </zmr:PersonenAbfrageResponse> + </base:Response> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personensuche/blaetternrequest.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personensuche/blaetternrequest.xml new file mode 100644 index 00000000..4458527e --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personensuche/blaetternrequest.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>GP_Person_suchen_Meldevorgang</base:ProzessName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <!-- Die InstanzID der laufenden Prozesses muss hier übermittelt werden, um die Suche fortzusetzen (aus WorkflowInfoServer des ersten Suchergebnisses--> + <base:SequenzID>00034</base:SequenzID> + <base:VorgangName>ZPR_VO_Person_suchen_Meldevorgang</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:BehoerdenNr>000000</base:BehoerdenNr> + </base:Organisation> + <base:Client>Test</base:Client> + </base:ClientInfo> + <base:BlaetternRequest> + <base:BlaetternInfo> + <base:Richtung>Vor</base:Richtung> + <base:AnzahlSaetze>3</base:AnzahlSaetze> + </base:BlaetternInfo> + </base:BlaetternRequest> + </base:Request> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personensuche/blaetternresponse.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personensuche/blaetternresponse.xml new file mode 100644 index 00000000..f082c3cc --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personensuche/blaetternresponse.xml @@ -0,0 +1,210 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Response> + <base:WorkflowInfoServer> + <base:ProzessName>GP_Person_suchen_Meldevorgang</base:ProzessName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <base:ProzessStatus>A</base:ProzessStatus> + <base:SequenzID>00034</base:SequenzID> + <base:Subprozess> + <base:VorgangName>ZPR_VO_Person_suchen_Meldevorgang</base:VorgangName> + <base:VorgangStatus>A</base:VorgangStatus> + <base:Required>false</base:Required> + <base:Visible>true</base:Visible> + </base:Subprozess> + </base:WorkflowInfoServer> + <base:ServerInfo> + <base:GeneriertVon>ZMR Server</base:GeneriertVon> + <base:GeneriertAm>2004-01-26T00:00:00.000</base:GeneriertAm> + <base:ServerTransaktionNr>1234567</base:ServerTransaktionNr> + </base:ServerInfo> + <zmr:PersonenAbfrageResponse> + <zmr:PersonenAbfrageAnfrage> + <zmr:PersonenAbfrageInfo> + <base:Bezugsfeld>Test</base:Bezugsfeld> + <zmr:Suchkriterien> + <base:InclusivHistorie>false</base:InclusivHistorie> + <base:Formalisiert>false</base:Formalisiert> + </zmr:Suchkriterien> + <zmr:Ergebniskriterien> + <base:InclusivHistorie>true</base:InclusivHistorie> + </zmr:Ergebniskriterien> + <base:AnzahlSaetze>10</base:AnzahlSaetze> + </zmr:PersonenAbfrageInfo> + <NatuerlichePerson> + <PersonenName> + <Vorname>Max</Vorname> + <Familienname>Mustermann</Familienname> + </PersonenName> + </NatuerlichePerson> + </zmr:PersonenAbfrageAnfrage> + <base:Message> + <base:Number>0003</base:Number> + <base:Text>Es wurde 1 Personen im ZMR gefunden</base:Text> + </base:Message> + <zmr:PersonenAbfrageErgebnis> + <base:GefundeneSaetze>4</base:GefundeneSaetze> + <base:SaetzeVon>3</base:SaetzeVon> + <!-- Es wurde weitergeblättert - der letzte Satz wird geliefert --> + <base:SaetzeBis>4</base:SaetzeBis> + <zmr:PersonErgebnisSatz> + <!-- 1. gelieferte Person im Suchergebnis (Personendaten + Meldedaten, historisch und aktuell) --> + <zmr:Personendaten> + <!-- Historienliste der Personendaten. Nur ein PersonErgebnis-Element, wenn nur aktuelle Daten --> + <zmr:PersonErgebnis> + <!-- aktueller Personendaten Gesamtdatensatz --> + <base:ErgebnissatzInfo> + <!-- letzter Änderungs-Zeitpunkt des Person-Gesamtdatensatzes (mit Staatsangehörigkeiten, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <!-- letzter Änderungs-Zeitpunkt der Person-Entity (ohne Staatsangehörigkeiten, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <base:BeginnCode>AMKOR</base:BeginnCode> + <base:BeginnText>Amtliche Korrektur</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <base:ZMRZahl>000111111111</base:ZMRZahl> + <zmr:NatuerlichePerson> + <zmr:PersonenName> + <Vorname>Maximilian</Vorname> + <Familienname>Mustermann</Familienname> + </zmr:PersonenName> + <Geschlecht>männlich</Geschlecht> + <Geburtsdatum>2001-05-07</Geburtsdatum> + <Geburtsort>Wien</Geburtsort> + <Geburtsbundesland>Wien</Geburtsbundesland> + <Geburtsstaat>Österreich</Geburtsstaat> + <zmr:Staatsangehoerigkeit> + <ISOCode3>AUT</ISOCode3> + <StaatsnameDE>Österreich</StaatsnameDE> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2003-01-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2003-01-01T00:00:00.000</base:Von> + <base:BeginnCode>REISEDOK_ANLEGEN</base:BeginnCode> + <base:BeginnText>Reisedokument anlegen</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + </zmr:Staatsangehoerigkeit> + </zmr:NatuerlichePerson> + </zmr:PersonErgebnis> + <zmr:PersonErgebnis> + <!-- historischer Personendaten Gesamtdatensatz (durch Vornamen-Änderung entstanden. Die Staatsagehörigkeit wurde nicht geändert und ist somit mit der im aktuellen Satz identisch--> + <base:ErgebnissatzInfo> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2003-01-01T00:00:00.000</base:Von> + <base:BeginnCode>GEBURT</base:BeginnCode> + <base:BeginnText>Geburt</base:BeginnText> + <base:Bis>2004-01-26T00:00:00.000</base:Bis> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <base:ZMRZahl>000111111111</base:ZMRZahl> + <zmr:NatuerlichePerson> + <zmr:PersonenName> + <Vorname>Hans</Vorname> + <Familienname>Mustermann</Familienname> + </zmr:PersonenName> + <Geschlecht>männlich</Geschlecht> + <Geburtsdatum>2001-05-07</Geburtsdatum> + <Geburtsort>Wien</Geburtsort> + <Geburtsbundesland>Wien</Geburtsbundesland> + <Geburtsstaat>Österreich</Geburtsstaat> + <zmr:Staatsangehoerigkeit> + <ISOCode3>AUT</ISOCode3> + <StaatsnameDE>Österreich</StaatsnameDE> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2003-01-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2003-01-01T00:00:00.000</base:Von> + <base:BeginnCode>REISEDOK_ANLEGEN</base:BeginnCode> + <base:BeginnText>Reisedokument anlegen</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + </zmr:Staatsangehoerigkeit> + </zmr:NatuerlichePerson> + </zmr:PersonErgebnis> + </zmr:Personendaten> + <zmr:Meldedaten> + <!-- Historienliste einer Meldung. Nur ein MeldungErgebnis-Element, wenn nur aktuelle Daten --> + <zmr:MeldungErgebnis> + <base:ErgebnissatzInfo> + <!-- letzter Änderungs-Zeitpunkt des Meldung-Gesamtdatensatzes (mit Auskunftssperren, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>00000002</base:EntityID> + <!-- letzter Änderungs-Zeitpunkt der Meldung-Entity (ohne Auskunftssperren, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <base:BeginnCode>WSANM</base:BeginnCode> + <base:BeginnText>Wohnsitz anmelden</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:BehoerdenNr>099999</base:BehoerdenNr> + </base:Organisation> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <zmr:Wohnsitz> + <zmr:PostAdresse> + <Postleitzahl>1245</Postleitzahl> + <Gemeinde>Testgemeinde</Gemeinde> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <Ortschaft>Testort</Ortschaft> + <zmr:Zustelladresse> + <Strassenname>Teststrasse</Strassenname> + <Orientierungsnummer>1</Orientierungsnummer> + <Wohnsitzqualitaet>H</Wohnsitzqualitaet> + </zmr:Zustelladresse> + </zmr:PostAdresse> + <base:Adressstatus>XXX000</base:Adressstatus> + </zmr:Wohnsitz> + <base:GemeldetVon>2004-01-26T00:00:00.000</base:GemeldetVon> + <base:PeriodeCode>WSANM</base:PeriodeCode> + <base:PeriodeText>Wohnsitz anmelden</base:PeriodeText> + </zmr:MeldungErgebnis> + </zmr:Meldedaten> + </zmr:PersonErgebnisSatz> + </zmr:PersonenAbfrageErgebnis> + </zmr:PersonenAbfrageResponse> + </base:Response> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personensuche/personensucherequest.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personensuche/personensucherequest.xml new file mode 100644 index 00000000..ca8bf47e --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personensuche/personensucherequest.xml @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>GP_Person_suchen_Meldevorgang</base:ProzessName> + <base:VorgangName>ZPR_VO_Person_suchen_Meldevorgang</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:BehoerdenNr>000000</base:BehoerdenNr> + </base:Organisation> + <base:Client>Test</base:Client> + </base:ClientInfo> + <zmr:PersonSuchenRequest> + <zmr:PersonensucheInfo> + <base:Bezugsfeld>Test</base:Bezugsfeld> + <zmr:Suchkriterien> + <base:InclusivHistorie>false</base:InclusivHistorie> + <base:Formalisiert>false</base:Formalisiert> + </zmr:Suchkriterien> + <zmr:Ergebniskriterien> + <base:InclusivHistorie>true</base:InclusivHistorie> + </zmr:Ergebniskriterien> + <base:AnzahlSaetze>10</base:AnzahlSaetze> + </zmr:PersonensucheInfo> + <NatuerlichePerson> + <PersonenName> + <Vorname>Max</Vorname> + <Familienname>Mustermann</Familienname> + </PersonenName> + </NatuerlichePerson> + </zmr:PersonSuchenRequest> + </base:Request> + </soap:Body> +</soap:Envelope>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personensuche/personensucheresponse.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personensuche/personensucheresponse.xml new file mode 100644 index 00000000..5a2526fa --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personensuche/personensucheresponse.xml @@ -0,0 +1,209 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Response> + <base:WorkflowInfoServer> + <base:ProzessName>GP_Person_suchen_Meldevorgang</base:ProzessName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <base:ProzessStatus>A</base:ProzessStatus> + <base:SequenzID>00034</base:SequenzID> + <base:Subprozess> + <base:VorgangName>ZPR_VO_Person_suchen_Meldevorgang</base:VorgangName> + <base:VorgangStatus>A</base:VorgangStatus> + <base:Required>false</base:Required> + <base:Visible>true</base:Visible> + </base:Subprozess> + </base:WorkflowInfoServer> + <base:ServerInfo> + <base:GeneriertVon>ZMR Server</base:GeneriertVon> + <base:GeneriertAm>2004-01-26T00:00:00.000</base:GeneriertAm> + <base:ServerTransaktionNr>1234567</base:ServerTransaktionNr> + </base:ServerInfo> + <zmr:PersonSuchenResponse> + <zmr:PersonensucheAnfrage> + <zmr:PersonensucheInfo> + <base:Bezugsfeld>Test</base:Bezugsfeld> + <zmr:Suchkriterien> + <base:InclusivHistorie>false</base:InclusivHistorie> + <base:Formalisiert>false</base:Formalisiert> + </zmr:Suchkriterien> + <zmr:Ergebniskriterien> + <base:InclusivHistorie>true</base:InclusivHistorie> + </zmr:Ergebniskriterien> + <base:AnzahlSaetze>10</base:AnzahlSaetze> + </zmr:PersonensucheInfo> + <NatuerlichePerson> + <PersonenName> + <Vorname>Max</Vorname> + <Familienname>Mustermann</Familienname> + </PersonenName> + </NatuerlichePerson> + </zmr:PersonensucheAnfrage> + <base:Message> + <base:Number>0003</base:Number> + <base:Text>Es wurde 1 Personen im ZMR gefunden</base:Text> + </base:Message> + <zmr:Personensuchergebnis> + <base:GefundeneSaetze>1</base:GefundeneSaetze> + <base:SaetzeVon>0</base:SaetzeVon> + <base:SaetzeBis>1</base:SaetzeBis> + <zmr:PersonErgebnisSatz> + <!-- 1. gelieferte Person im Suchergebnis (Personendaten + Meldedaten, historisch und aktuell) --> + <zmr:Personendaten> + <!-- Historienliste der Personendaten. Nur ein PersonErgebnis-Element, wenn nur aktuelle Daten --> + <zmr:PersonErgebnis> + <!-- aktueller Personendaten Gesamtdatensatz --> + <base:ErgebnissatzInfo> + <!-- letzter Änderungs-Zeitpunkt des Person-Gesamtdatensatzes (mit Staatsangehörigkeiten, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <!-- letzter Änderungs-Zeitpunkt der Person-Entity (ohne Staatsangehörigkeiten, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <base:BeginnCode>AMKOR</base:BeginnCode> + <base:BeginnText>Amtliche Korrektur</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <base:ZMRZahl>000111111111</base:ZMRZahl> + <zmr:NatuerlichePerson> + <zmr:PersonenName> + <Vorname>Maximilian</Vorname> + <Familienname>Mustermann</Familienname> + </zmr:PersonenName> + <Geschlecht>männlich</Geschlecht> + <Geburtsdatum>2001-05-07</Geburtsdatum> + <Geburtsort>Wien</Geburtsort> + <Geburtsbundesland>Wien</Geburtsbundesland> + <Geburtsstaat>Österreich</Geburtsstaat> + <zmr:Staatsangehoerigkeit> + <ISOCode3>AUT</ISOCode3> + <StaatsnameDE>Österreich</StaatsnameDE> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2003-01-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2003-01-01T00:00:00.000</base:Von> + <base:BeginnCode>REISEDOK_ANLEGEN</base:BeginnCode> + <base:BeginnText>Reisedokument anlegen</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + </zmr:Staatsangehoerigkeit> + </zmr:NatuerlichePerson> + </zmr:PersonErgebnis> + <zmr:PersonErgebnis> + <!-- historischer Personendaten Gesamtdatensatz (durch Vornamen-Änderung entstanden. Die Staatsagehörigkeit wurde nicht geändert und ist somit mit der im aktuellen Satz identisch--> + <base:ErgebnissatzInfo> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2003-01-01T00:00:00.000</base:Von> + <base:BeginnCode>GEBURT</base:BeginnCode> + <base:BeginnText>Geburt</base:BeginnText> + <base:Bis>2004-01-26T00:00:00.000</base:Bis> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <base:ZMRZahl>000111111111</base:ZMRZahl> + <zmr:NatuerlichePerson> + <zmr:PersonenName> + <Vorname>Hans</Vorname> + <Familienname>Mustermann</Familienname> + </zmr:PersonenName> + <Geschlecht>männlich</Geschlecht> + <Geburtsdatum>2001-05-07</Geburtsdatum> + <Geburtsort>Wien</Geburtsort> + <Geburtsbundesland>Wien</Geburtsbundesland> + <Geburtsstaat>Österreich</Geburtsstaat> + <zmr:Staatsangehoerigkeit> + <ISOCode3>AUT</ISOCode3> + <StaatsnameDE>Österreich</StaatsnameDE> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2003-01-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2003-01-01T00:00:00.000</base:Von> + <base:BeginnCode>REISEDOK_ANLEGEN</base:BeginnCode> + <base:BeginnText>Reisedokument anlegen</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:GemeindeNr>09999</base:GemeindeNr> + </base:Organisation> + <base:Benutzer>test@bmi.gv.at</base:Benutzer> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + </zmr:Staatsangehoerigkeit> + </zmr:NatuerlichePerson> + </zmr:PersonErgebnis> + </zmr:Personendaten> + <zmr:Meldedaten> + <!-- Historienliste einer Meldung. Nur ein MeldungErgebnis-Element, wenn nur aktuelle Daten --> + <zmr:MeldungErgebnis> + <base:ErgebnissatzInfo> + <!-- letzter Änderungs-Zeitpunkt des Meldung-Gesamtdatensatzes (mit Auskunftssperren, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>00000002</base:EntityID> + <!-- letzter Änderungs-Zeitpunkt der Meldung-Entity (ohne Auskunftssperren, ...)--> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <base:BeginnCode>WSANM</base:BeginnCode> + <base:BeginnText>Wohnsitz anmelden</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:BehoerdenNr>099999</base:BehoerdenNr> + </base:Organisation> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <zmr:Wohnsitz> + <zmr:PostAdresse> + <Postleitzahl>1245</Postleitzahl> + <Gemeinde>Testgemeinde</Gemeinde> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <Ortschaft>Testort</Ortschaft> + <zmr:Zustelladresse> + <Strassenname>Teststrasse</Strassenname> + <Orientierungsnummer>1</Orientierungsnummer> + <Wohnsitzqualitaet>H</Wohnsitzqualitaet> + </zmr:Zustelladresse> + </zmr:PostAdresse> + <base:Adressstatus>XXX000</base:Adressstatus> + </zmr:Wohnsitz> + <base:GemeldetVon>2004-01-26T00:00:00.000</base:GemeldetVon> + <base:PeriodeCode>WSANM</base:PeriodeCode> + <base:PeriodeText>Wohnsitz anmelden</base:PeriodeText> + </zmr:MeldungErgebnis> + </zmr:Meldedaten> + </zmr:PersonErgebnisSatz> + </zmr:Personensuchergebnis> + </zmr:PersonSuchenResponse> + </base:Response> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/persontrennen/persontrennenrequest.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/persontrennen/persontrennenrequest.xml new file mode 100644 index 00000000..82643121 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/persontrennen/persontrennenrequest.xml @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>GP_Person_trennen</base:ProzessName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <!-- Die InstanzID der laufenden Prozesses muss hier übermittelt werden, um die Suche fortzusetzen (aus WorkflowInfoServer des ersten Suchergebnisses--> + <base:SequenzID>11111</base:SequenzID> + <base:VorgangName>ZPR_VO_Person_trennen_durchfuehren</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:BehoerdenNr>000000</base:BehoerdenNr> + </base:Organisation> + <base:Client>Test</base:Client> + </base:ClientInfo> + <zmr:PersonTrennenRequest> + <zmr:PersonReferenz> + <base:Technisch> + <base:EntityID>123</base:EntityID> + <base:LetzteAenderung>2004-01-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:ZMRZahl>000111111111</base:ZMRZahl> + </zmr:PersonReferenz> + <zmr:MeldungReferenz> + <base:Technisch> + <base:EntityID>1234</base:EntityID> + <base:LetzteAenderung>2004-01-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <Wohnsitzqualitaet>N</Wohnsitzqualitaet> + </zmr:MeldungReferenz> + </zmr:PersonTrennenRequest> + </base:Request> + </soap:Body> +</soap:Envelope>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/persontrennen/persontrennensucherequest.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/persontrennen/persontrennensucherequest.xml new file mode 100644 index 00000000..2ab231dd --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/persontrennen/persontrennensucherequest.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>GP_Person_trennen</base:ProzessName> + <base:VorgangName>ZPR_VO_Person_trennen_darstellen</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:BehoerdenNr>000000</base:BehoerdenNr> + </base:Organisation> + <base:Client>Test</base:Client> + </base:ClientInfo> + <zmr:PersonTrennenSucheRequest> + <base:ZMRZahl>000111111111</base:ZMRZahl> + </zmr:PersonTrennenSucheRequest> + </base:Request> + </soap:Body> +</soap:Envelope>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personzusammenfuehren/personzusammenfuehrenrequest.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personzusammenfuehren/personzusammenfuehrenrequest.xml new file mode 100644 index 00000000..0442b0e0 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personzusammenfuehren/personzusammenfuehrenrequest.xml @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>GP_Person_zusammenfuehren</base:ProzessName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <!-- Die InstanzID der laufenden Prozesses muss hier übermittelt werden, um die Suche fortzusetzen (aus WorkflowInfoServer des ersten Suchergebnisses--> + <base:SequenzID>11111</base:SequenzID> + <base:VorgangName>ZPR_VO_Person_zusammenfuehren_durchfuehren</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:BehoerdenNr>000000</base:BehoerdenNr> + </base:Organisation> + <base:Client>Test</base:Client> + </base:ClientInfo> + <zmr:PersonZusammenfuehrenRequest> + <zmr:QuellpersonReferenz> + <base:Technisch> + <base:EntityID>123</base:EntityID> + <base:LetzteAenderung>2004-01-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:ZMRZahl>000111111111</base:ZMRZahl> + </zmr:QuellpersonReferenz> + <zmr:ZielpersonReferenz> + <base:Technisch> + <base:EntityID>222</base:EntityID> + <base:LetzteAenderung>2004-02-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:ZMRZahl>000222222222</base:ZMRZahl> + </zmr:ZielpersonReferenz> + </zmr:PersonZusammenfuehrenRequest> + </base:Request> + </soap:Body> +</soap:Envelope>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personzusammenfuehren/personzusammenfuehrensucherequest.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personzusammenfuehren/personzusammenfuehrensucherequest.xml new file mode 100644 index 00000000..be5b38ba --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/personzusammenfuehren/personzusammenfuehrensucherequest.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>GP_Person_zusammenfuehren</base:ProzessName> + <base:VorgangName>ZPR_VO_Person_zusammenfuehren_darstellen</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:BehoerdenNr>000000</base:BehoerdenNr> + </base:Organisation> + <base:Client>Test</base:Client> + </base:ClientInfo> + <zmr:PersonZusammenfuehrenSucheRequest> + <zmr:QuellpersonZMRZahl>000111111111</zmr:QuellpersonZMRZahl> + <zmr:ZielpersonZMRZahl>000222222222</zmr:ZielpersonZMRZahl> + </zmr:PersonZusammenfuehrenSucheRequest> + </base:Request> + </soap:Body> +</soap:Envelope>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/wohnsitzabmelden/wohnsitzabmeldenrequest.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/wohnsitzabmelden/wohnsitzabmeldenrequest.xml new file mode 100644 index 00000000..69675bd3 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/wohnsitzabmelden/wohnsitzabmeldenrequest.xml @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>GP_Wohnsitz_abmelden</base:ProzessName> + <base:VorgangName>ZMR_VO_Wohnsitz_abmelden</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:BehoerdenNr>000000</base:BehoerdenNr> + </base:Organisation> + <base:Client>Test</base:Client> + </base:ClientInfo> + <zmr:WohnsitzAbmeldenRequest> + <zmr:WohnsitzAbmeldenInfo> + <!-- Fachlicher Zeitpunkt der Abmeldung --> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <base:GrundCode>WSABM</base:GrundCode> + </zmr:WohnsitzAbmeldenInfo> + <zmr:PersonReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2003-01-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:ZMRZahl>000111111111</base:ZMRZahl> + </zmr:PersonReferenz> + <zmr:MeldungReferenz> + <base:Technisch> + <base:EntityID>0000002</base:EntityID> + <base:LetzteAenderung>2003-01-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <Wohnsitzqualitaet>H</Wohnsitzqualitaet> + </zmr:MeldungReferenz> + </zmr:WohnsitzAbmeldenRequest> + </base:Request> + </soap:Body> +</soap:Envelope>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/wohnsitzabmelden/wohnsitzabmeldenresponse.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/wohnsitzabmelden/wohnsitzabmeldenresponse.xml new file mode 100644 index 00000000..a1f2a361 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/wohnsitzabmelden/wohnsitzabmeldenresponse.xml @@ -0,0 +1,77 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Response> + <base:WorkflowInfoServer> + <base:ProzessName>GP_Wohnsitz_abmelden</base:ProzessName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <base:ProzessStatus>C</base:ProzessStatus> + <base:SequenzID>00034</base:SequenzID> + <base:Subprozess> + <base:VorgangName>ZMR_VO_Wohnsitz_abmelden</base:VorgangName> + <base:VorgangStatus>C</base:VorgangStatus> + <base:Required>false</base:Required> + <base:Visible>true</base:Visible> + </base:Subprozess> + </base:WorkflowInfoServer> + <base:ServerInfo> + <base:GeneriertVon>ZMR Server</base:GeneriertVon> + <base:GeneriertAm>2004-01-26T00:00:00.000</base:GeneriertAm> + <base:ServerTransaktionNr>1234567</base:ServerTransaktionNr> + </base:ServerInfo> + <zmr:WohnsitzAbmeldenResponse> + <base:Message> + <base:Number>1234</base:Number> + <base:Text>Der Wohnsitz wurde abgemeldet</base:Text> + </base:Message> + <zmr:PersonReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2003-01-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:ZMRZahl>000111111111</base:ZMRZahl> + </zmr:PersonReferenz> + <zmr:MeldungErgebnis> + <base:ErgebnissatzInfo> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000002</base:EntityID> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <!-- Nulldauersatz der abgemeldeten Meldung --> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <base:BeginnCode>WSABM</base:BeginnCode> + <base:BeginnText>Wohnsitz abmelden</base:BeginnText> + <base:Bis>2004-01-26T00:00:00.000</base:Bis> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:BehoerdenNr>099999</base:BehoerdenNr> + </base:Organisation> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <zmr:Wohnsitz> + <zmr:PostAdresse> + <Postleitzahl>1245</Postleitzahl> + <Gemeinde>Testgemeinde</Gemeinde> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <Ortschaft>Testort</Ortschaft> + <zmr:Zustelladresse> + <Strassenname>Teststrasse</Strassenname> + <Orientierungsnummer>1</Orientierungsnummer> + <Wohnsitzqualitaet>H</Wohnsitzqualitaet> + </zmr:Zustelladresse> + </zmr:PostAdresse> + <base:Adressstatus>XXX000</base:Adressstatus> + </zmr:Wohnsitz> + <base:GemeldetVon>2003-01-01T00:00:00.000</base:GemeldetVon> + <base:PeriodeCode>WSABM</base:PeriodeCode> + <base:PeriodeText>Wohnsitz abmelden</base:PeriodeText> + <base:GemeldetBis>2004-01-26T00:00:00.000</base:GemeldetBis> + </zmr:MeldungErgebnis> + </zmr:WohnsitzAbmeldenResponse> + </base:Response> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/wohnsitzanmelden/wohnsitzanmeldenrequest.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/wohnsitzanmelden/wohnsitzanmeldenrequest.xml new file mode 100644 index 00000000..44ebbb56 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/wohnsitzanmelden/wohnsitzanmeldenrequest.xml @@ -0,0 +1,48 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>GP_Wohnsitz_anmelden</base:ProzessName> + <base:VorgangName>ZMR_VO_Wohnsitz_anmelden</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:BehoerdenNr>000000</base:BehoerdenNr> + </base:Organisation> + <base:Client>Test</base:Client> + </base:ClientInfo> + <zmr:WohnsitzAnmeldenRequest> + <zmr:WohnsitzAnmeldenInfo> + <!-- Fachlicher Zeitpunkt der Anmeldung --> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <base:GrundCode>WSANM</base:GrundCode> + </zmr:WohnsitzAnmeldenInfo> + <zmr:PersonReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2003-01-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:ZMRZahl>000111111111</base:ZMRZahl> + </zmr:PersonReferenz> + <zmr:MeldungAnlage> + <zmr:Wohnsitz> + <zmr:PostAdresse> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <zmr:Zustelladresse> + <Wohnsitzqualitaet>H</Wohnsitzqualitaet> + <zmr:AdressRegisterEintrag> + <Adresscode>1234567</Adresscode> + <Subcode>111</Subcode> + <Objektnummer>1111111</Objektnummer> + </zmr:AdressRegisterEintrag> + <!-- Offizielle Adresse, es müssen nur die Adresscodes geschickt werden--> + </zmr:Zustelladresse> + </zmr:PostAdresse> + </zmr:Wohnsitz> + </zmr:MeldungAnlage> + </zmr:WohnsitzAnmeldenRequest> + </base:Request> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/wohnsitzanmelden/wohnsitzanmeldenresponse.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/wohnsitzanmelden/wohnsitzanmeldenresponse.xml new file mode 100644 index 00000000..ccbc350d --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/wohnsitzanmelden/wohnsitzanmeldenresponse.xml @@ -0,0 +1,79 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Response> + <base:WorkflowInfoServer> + <base:ProzessName>GP_Wohnsitz_anmelden</base:ProzessName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <base:ProzessStatus>C</base:ProzessStatus> + <base:SequenzID>00034</base:SequenzID> + <base:Subprozess> + <base:VorgangName>ZMR_VO_Wohnsitz_anmelden</base:VorgangName> + <base:VorgangStatus>C</base:VorgangStatus> + <base:Required>false</base:Required> + <base:Visible>true</base:Visible> + </base:Subprozess> + </base:WorkflowInfoServer> + <base:ServerInfo> + <base:GeneriertVon>ZMR Server</base:GeneriertVon> + <base:GeneriertAm>2004-01-26T00:00:00.000</base:GeneriertAm> + <base:ServerTransaktionNr>1234567</base:ServerTransaktionNr> + </base:ServerInfo> + <zmr:WohnsitzAnmeldenResponse> + <base:Message> + <base:Number>1234</base:Number> + <base:Text>Der Wohnsitz wurde angemeldet</base:Text> + </base:Message> + <zmr:PersonReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2003-01-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:ZMRZahl>000111111111</base:ZMRZahl> + </zmr:PersonReferenz> + <zmr:MeldungErgebnis> + <base:ErgebnissatzInfo> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>00000002</base:EntityID> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <base:BeginnCode>WSANM</base:BeginnCode> + <base:BeginnText>Wohnsitz anmelden</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:BehoerdenNr>099999</base:BehoerdenNr> + </base:Organisation> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <zmr:Wohnsitz> + <zmr:PostAdresse> + <Postleitzahl>1245</Postleitzahl> + <Gemeinde>Testgemeinde</Gemeinde> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <Ortschaft>Testort</Ortschaft> + <zmr:Zustelladresse> + <Strassenname>Teststrasse</Strassenname> + <Orientierungsnummer>1</Orientierungsnummer> + <Wohnsitzqualitaet>H</Wohnsitzqualitaet> + <zmr:AdressRegisterEintrag> + <Adresscode>1234567</Adresscode> + <Subcode>111</Subcode> + <Objektnummer>1111111</Objektnummer> + </zmr:AdressRegisterEintrag> + </zmr:Zustelladresse> + </zmr:PostAdresse> + <base:Adressstatus>XXX000</base:Adressstatus> + </zmr:Wohnsitz> + <base:GemeldetVon>2004-01-26T00:00:00.000</base:GemeldetVon> + <base:PeriodeCode>WSANM</base:PeriodeCode> + <base:PeriodeText>Wohnsitz anmelden</base:PeriodeText> + </zmr:MeldungErgebnis> + </zmr:WohnsitzAnmeldenResponse> + </base:Response> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/wohnsitzummelden/wohnsitzummeldenrequest.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/wohnsitzummelden/wohnsitzummeldenrequest.xml new file mode 100644 index 00000000..039626bb --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/wohnsitzummelden/wohnsitzummeldenrequest.xml @@ -0,0 +1,60 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>GP_Wohnsitz_ummelden</base:ProzessName> + <base:VorgangName>ZMR_VO_Wohnsitz_ummelden</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:BehoerdenNr>000000</base:BehoerdenNr> + </base:Organisation> + <base:Client>Test</base:Client> + </base:ClientInfo> + <zmr:WohnsitzUmmeldenRequest> + <zmr:WohnsitzUmmeldenInfo> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <zmr:UmmeldungAktion>HWS_NWS_HWS</zmr:UmmeldungAktion> + </zmr:WohnsitzUmmeldenInfo> + <zmr:PersonReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2003-01-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:ZMRZahl>000111111111</base:ZMRZahl> + </zmr:PersonReferenz> + <zmr:UMMVorgang1> + <!-- Hauptwohnsitz wird abgemeldet --> + <zmr:MeldungReferenz> + <base:Technisch> + <base:EntityID>0000003</base:EntityID> + <base:LetzteAenderung>2003-01-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <Wohnsitzqualitaet>H</Wohnsitzqualitaet> + </zmr:MeldungReferenz> + </zmr:UMMVorgang1> + <zmr:UMMVorgang2> + <!-- neuer Hauptwohnsitz wird angemeldet --> + <zmr:MeldungAnlage> + <zmr:Wohnsitz> + <zmr:PostAdresse> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <zmr:Zustelladresse> + <Wohnsitzqualitaet>H</Wohnsitzqualitaet> + <zmr:AdressRegisterEintrag> + <Adresscode>1234567</Adresscode> + <Subcode>111</Subcode> + <Objektnummer>1111111</Objektnummer> + </zmr:AdressRegisterEintrag> + <!-- Offizielle Adresse, es müssen nur die Adresscodes geschickt werden--> + </zmr:Zustelladresse> + </zmr:PostAdresse> + </zmr:Wohnsitz> + </zmr:MeldungAnlage> + </zmr:UMMVorgang2> + </zmr:WohnsitzUmmeldenRequest> + </base:Request> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/wohnsitzummelden/wohnsitzummeldenresponse.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/wohnsitzummelden/wohnsitzummeldenresponse.xml new file mode 100644 index 00000000..1af5a374 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/wohnsitzummelden/wohnsitzummeldenresponse.xml @@ -0,0 +1,124 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Response> + <base:WorkflowInfoServer> + <base:ProzessName>GP_Wohnsitz_ummelden</base:ProzessName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <base:ProzessStatus>C</base:ProzessStatus> + <base:SequenzID>00034</base:SequenzID> + <base:Subprozess> + <base:VorgangName>ZMR_VO_Wohnsitz_ummelden</base:VorgangName> + <base:VorgangStatus>C</base:VorgangStatus> + <base:Required>false</base:Required> + <base:Visible>true</base:Visible> + </base:Subprozess> + </base:WorkflowInfoServer> + <base:ServerInfo> + <base:GeneriertVon>ZMR Server</base:GeneriertVon> + <base:GeneriertAm>2004-01-26T00:00:00.000</base:GeneriertAm> + <base:ServerTransaktionNr>1234567</base:ServerTransaktionNr> + </base:ServerInfo> + <zmr:WohnsitzUmmeldenResponse> + <base:Message> + <base:Number>1234</base:Number> + <base:Text>Ummeldung erfolgreich durchgeführt</base:Text> + </base:Message> + <zmr:PersonReferenz> + <base:Technisch> + <base:EntityID>0000001</base:EntityID> + <base:LetzteAenderung>2003-01-01T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:ZMRZahl>000111111111</base:ZMRZahl> + </zmr:PersonReferenz> + <zmr:UMMErgebnis1> + <!-- Nulldauersatz des abgemelden Hauptwohnsitzes --> + <base:ErgebnissatzInfo> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000003</base:EntityID> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <base:BeginnCode>HWS_ABM_HWS</base:BeginnCode> + <base:BeginnText>Hauptwohnsitz wird abgemeldet, neuer Hauptwohnsitz</base:BeginnText> + <base:Bis>2004-01-26T00:00:00.000</base:Bis> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:BehoerdenNr>099999</base:BehoerdenNr> + </base:Organisation> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <zmr:Wohnsitz> + <zmr:PostAdresse> + <Postleitzahl>1245</Postleitzahl> + <Gemeinde>Testgemeinde</Gemeinde> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <Ortschaft>Testort</Ortschaft> + <zmr:Zustelladresse> + <Strassenname>Teststrasse</Strassenname> + <Orientierungsnummer>2</Orientierungsnummer> + <Wohnsitzqualitaet>H</Wohnsitzqualitaet> + <zmr:AdressRegisterEintrag> + <Adresscode>1111111</Adresscode> + <Subcode>111</Subcode> + <Objektnummer>1111111</Objektnummer> + </zmr:AdressRegisterEintrag> + </zmr:Zustelladresse> + </zmr:PostAdresse> + <base:Adressstatus>XXX000</base:Adressstatus> + </zmr:Wohnsitz> + <base:GemeldetVon>2003-01-01T00:00:00.000</base:GemeldetVon> + <base:PeriodeCode>HWS_ABM_HWS</base:PeriodeCode> + <base:PeriodeText>Hauptwohnsitz wird abgemeldet, neuer Hauptwohnsitz</base:PeriodeText> + <base:GemeldetBis>2004-01-26T00:00:00.000</base:GemeldetBis> + </zmr:UMMErgebnis1> + <zmr:UMMErgebnis2> + <!-- Neu angemelder Hauptwohnsitz --> + <base:ErgebnissatzInfo> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:ErgebnissatzInfo> + <base:EntityErgebnisReferenz> + <base:Technisch> + <base:EntityID>0000012</base:EntityID> + <base:LetzteAenderung>2004-01-26T00:00:00.000</base:LetzteAenderung> + </base:Technisch> + <base:Von>2004-01-26T00:00:00.000</base:Von> + <base:BeginnCode>HWS_ABM_HWS</base:BeginnCode> + <base:BeginnText>Hauptwohnsitz wird abgemeldet, neuer Hauptwohnsitz</base:BeginnText> + <base:DurchgefuehrtVon> + <base:Organisation> + <base:BehoerdenNr>099999</base:BehoerdenNr> + </base:Organisation> + </base:DurchgefuehrtVon> + </base:EntityErgebnisReferenz> + <zmr:Wohnsitz> + <zmr:PostAdresse> + <Postleitzahl>1245</Postleitzahl> + <Gemeinde>Testgemeinde</Gemeinde> + <Gemeindekennziffer>09999</Gemeindekennziffer> + <Ortschaft>Testort</Ortschaft> + <zmr:Zustelladresse> + <Strassenname>Teststrasse</Strassenname> + <Orientierungsnummer>1</Orientierungsnummer> + <Wohnsitzqualitaet>H</Wohnsitzqualitaet> + <zmr:AdressRegisterEintrag> + <Adresscode>1234567</Adresscode> + <Subcode>111</Subcode> + <Objektnummer>1111111</Objektnummer> + </zmr:AdressRegisterEintrag> + </zmr:Zustelladresse> + </zmr:PostAdresse> + <base:Adressstatus>XXX000</base:Adressstatus> + </zmr:Wohnsitz> + <base:GemeldetVon>2004-01-26T00:00:00.000</base:GemeldetVon> + <base:PeriodeCode>HWS_ABM_HWS</base:PeriodeCode> + <base:PeriodeText>Hauptwohnsitz wird abgemeldet, neuer Hauptwohnsitz</base:PeriodeText> + </zmr:UMMErgebnis2> + </zmr:WohnsitzUmmeldenResponse> + </base:Response> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/zuzugsbestaetigung/zuzugsbestaetigungrequest.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/zuzugsbestaetigung/zuzugsbestaetigungrequest.xml new file mode 100644 index 00000000..35dae59d --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/zuzugsbestaetigung/zuzugsbestaetigungrequest.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Request> + <base:WorkflowInfoClient> + <base:ProzessName>GP_Zuzugsbestaetigung_anfordern</base:ProzessName> + <base:VorgangName>ZMR_VO_Zuzugsbestaetigung_anfordern</base:VorgangName> + </base:WorkflowInfoClient> + <base:ClientInfo> + <base:Organisation> + <base:BehoerdenNr>000000</base:BehoerdenNr> + </base:Organisation> + <base:Client>Test</base:Client> + </base:ClientInfo> + <zmr:ZuzugsbestaetigungRequest> + <zmr:ZuzugsbestaetigungInfo> + <base:GemeindeNr>09999</base:GemeindeNr> + <zmr:ZuzugsbestaetigungVon>2004-01-01T00:00:00.000</zmr:ZuzugsbestaetigungVon> + <zmr:ZuzugsbestaetigungBis>2004-01-05T00:00:00.000</zmr:ZuzugsbestaetigungBis> + </zmr:ZuzugsbestaetigungInfo> + </zmr:ZuzugsbestaetigungRequest> + </base:Request> + </soap:Body> +</soap:Envelope>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/zuzugsbestaetigung/zuzugsbestaetigungresponse.xml b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/zuzugsbestaetigung/zuzugsbestaetigungresponse.xml new file mode 100644 index 00000000..a9ef5a38 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/testxml/zmr/zuzugsbestaetigung/zuzugsbestaetigungresponse.xml @@ -0,0 +1,64 @@ +<?xml version="1.0" encoding="UTF-8"?> +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" +xsi:schemaLocation="http://schemas.xmlsoap.org/soap/envelope/ ../../soapenv.xsd http://bmi.gv.at/namespace/zmr-su/base/20040201# ../../../xsd/allgemein/Service.xsd http://bmi.gv.at/namespace/zmr-su/zmr/20040201# ../../../xsd/zmr/ZMRProxy.xsd"> +<soap:Body> + <base:Response> + <base:WorkflowInfoServer> + <base:ProzessName>GP_Zuzugsbestaetigung_anfordern</base:ProzessName> + <base:ProzessInstanzID>1234</base:ProzessInstanzID> + <base:ProzessStatus>C</base:ProzessStatus> + <base:SequenzID>00034</base:SequenzID> + <base:Subprozess> + <base:VorgangName>ZMR_VO_Zuzugsbestaetigung_anfordern</base:VorgangName> + <base:VorgangStatus>C</base:VorgangStatus> + <base:Required>false</base:Required> + <base:Visible>true</base:Visible> + </base:Subprozess> + </base:WorkflowInfoServer> + <base:ServerInfo> + <base:GeneriertVon>ZMR Server</base:GeneriertVon> + <base:GeneriertAm>2004-01-26T00:00:00.000</base:GeneriertAm> + <base:ServerTransaktionNr>1234567</base:ServerTransaktionNr> + </base:ServerInfo> + <zmr:ZuzugsbestaetigungResponse> + <zmr:ZuzugsbestaetigungAnfrage> + <zmr:ZuzugsbestaetigungInfo> + <base:GemeindeNr>09999</base:GemeindeNr> + <zmr:ZuzugsbestaetigungVon>2004-01-01T00:00:00.000</zmr:ZuzugsbestaetigungVon> + <zmr:ZuzugsbestaetigungBis>2004-01-05T00:00:00.000</zmr:ZuzugsbestaetigungBis> + </zmr:ZuzugsbestaetigungInfo> + </zmr:ZuzugsbestaetigungAnfrage> + <base:Message> + <base:Number>0012</base:Number> + <base:Text>Die Zuzugsdaten wurden erzeugt</base:Text> + </base:Message> + <zmr:Zuzugsbestaetigung> + <base:GefundeneSaetze>100</base:GefundeneSaetze> + <base:AnzahlSaetze>2</base:AnzahlSaetze> + <zmr:ZuzugsbestaetigungSatz> + <zmr:ZugezogenPerson> + <base:ZMRZahl>000111111111</base:ZMRZahl> + <Familienname>Mustermann</Familienname> + <Vorname>Max</Vorname> + <Geburtsdatum>2000-01-01</Geburtsdatum> + </zmr:ZugezogenPerson> + <zmr:ZugezogenAm>2004-01-01T00:00:00.000</zmr:ZugezogenAm> + <zmr:ZugezogenGemeindeNr>09999</zmr:ZugezogenGemeindeNr> + <zmr:ZugezogenGemeinde>Testgemeinde</zmr:ZugezogenGemeinde> + </zmr:ZuzugsbestaetigungSatz> + <zmr:ZuzugsbestaetigungSatz> + <zmr:ZugezogenPerson> + <base:ZMRZahl>000111111112</base:ZMRZahl> + <Familienname>Mustermann</Familienname> + <Vorname>Ida</Vorname> + <Geburtsdatum>2001-01-01</Geburtsdatum> + </zmr:ZugezogenPerson> + <zmr:ZugezogenAm>2004-01-02T00:00:00.000</zmr:ZugezogenAm> + <zmr:ZugezogenGemeindeNr>09999</zmr:ZugezogenGemeindeNr> + <zmr:ZugezogenGemeinde>Testgemeinde</zmr:ZugezogenGemeinde> + </zmr:ZuzugsbestaetigungSatz> + </zmr:Zuzugsbestaetigung> + </zmr:ZuzugsbestaetigungResponse> + </base:Response> + </soap:Body> +</soap:Envelope> diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/wsdl/Messages.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/wsdl/Messages.xsd new file mode 100644 index 00000000..112598a4 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/wsdl/Messages.xsd @@ -0,0 +1,215 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Messages.xsd
+Zweck: Definiert die Message-Datentypen fuer Services Request und Response (siehe Service.wsdl)
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2010-09-29 teo: Schnittstellen-Liste aktualisiert
+2005-05-24 tsch: BPKPruefung hinzugefuegt
+2005-02-02 tsch: QKZBearbeiten, QKZAuswertung hinzugefuegt
+2005-01-14 tsch: Aviso aktivieren entfernt, Gleichstzungtabelle Warten hinzugefuegt
+2004-11-26 tsch: Adoption, Steuerfahndung, Aviso freischalten/aktivieren hinzugefuegt
+2004-11-22 tsch: Gerichtskommissaerabfrage hinzugefuegt
+2004-09-28 tsch: Wehrfplichtigenanfrage, ablaufende Auskunfssperren-Suche hinzugefuegt
+2004-09-27 tsch: Storno/Korrektur hinzugefuegt
+2004-09-09 tsch: SZR-Vorgaenge sowie Person trennen/zusammenfuehren hinzugefuegt
+2004-07-30 tsch: Erstellung
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:zmr="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:include schemaLocation="../xsd/eingebunden/EingebundenProxy.xsd"/>
+ <xsd:include schemaLocation="../xsd/allgemein/GeschaeftsprozesseAuflisten.xsd"/>
+ <xsd:include schemaLocation="../xsd/allgemein/Benutzereinstellungen.xsd"/>
+ <xsd:include schemaLocation="../xsd/allgemein/Organisationseinstellungen.xsd"/>
+ <xsd:include schemaLocation="../xsd/allgemein/Auswertungen.xsd"/>
+ <xsd:include schemaLocation="../xsd/allgemein/BasTabelleAbfrage.xsd"/>
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" schemaLocation="../xsd/zmr/ZMRProxy.xsd"/>
+
+
+ <xsd:complexType name="RequestType">
+ <xsd:sequence>
+ <xsd:element ref="base:WorkflowInfoClient"/>
+ <xsd:element ref="base:ClientInfo"/>
+ <xsd:choice>
+ <xsd:element ref="base:BlaetternRequest"/>
+ <xsd:element ref="base:WorkflowsAuflistenRequest"/>
+ <xsd:element ref="base:BenutzereinstellungenAbfragenRequest"/>
+ <xsd:element ref="base:BenutzereinstellungenAendernRequest"/>
+ <xsd:element ref="base:OrganisationseinstellungenAendernRequest"/>
+ <xsd:element ref="base:AuswertungenAuflistenRequest"/>
+ <xsd:element ref="base:AuswertungAbgeholtRequest"/>
+ <xsd:element ref="base:BasTabelleAbfrageRequest"/>
+ <xsd:element ref="zmr:PersonSuchenRequest"/>
+ <xsd:element ref="zmr:PersonAnlegenRequest"/>
+ <xsd:element ref="zmr:PersonAendernRequest"/>
+ <xsd:element ref="zmr:AdresssucheRequest"/>
+ <xsd:element ref="zmr:WohnsitzAnmeldenRequest"/>
+ <xsd:element ref="zmr:WohnsitzAbmeldenRequest"/>
+ <xsd:element ref="zmr:WohnsitzUmmeldenRequest"/>
+ <xsd:element ref="zmr:MeldebestaetigungRequest"/>
+ <xsd:element ref="zmr:MeldeauskunftRequest"/>
+ <xsd:element ref="zmr:DatenabgleichRequest"/>
+ <xsd:element ref="zmr:AvisosucheRequest"/>
+ <xsd:element ref="zmr:AvisoAnlegenRequest"/>
+ <xsd:element ref="zmr:AvisoAendernRequest"/>
+ <xsd:element ref="zmr:AvisoBeendenRequest"/>
+ <xsd:element ref="zmr:AvisoFreigebenSucheRequest"/>
+ <xsd:element ref="zmr:AvisoFreigebenRequest"/>
+ <xsd:element ref="zmr:BPAbfrageRequest"/>
+ <xsd:element ref="zmr:BPAbfrageErweitertRequest"/>
+ <xsd:element ref="zmr:BusinesspartnerAnfrageRequest"/>
+ <xsd:element ref="zmr:BehoerdenabfrageRequest"/>
+ <xsd:element ref="zmr:BestandsaenderungenRequest"/>
+ <xsd:element ref="zmr:FremdenabfrageRequest"/>
+ <xsd:element ref="zmr:HauseigentuemerAbfrageRequest"/>
+ <xsd:element ref="zmr:HauseigentuemerAbfrageDruckRequest"/>
+ <xsd:element ref="zmr:PersonenAbfrageRequest"/>
+ <xsd:element ref="zmr:PersonenAbfrageDruckRequest"/>
+ <xsd:element ref="zmr:ZuzugsbestaetigungRequest"/>
+ <xsd:element ref="zmr:PersonTrennenSucheRequest"/>
+ <xsd:element ref="zmr:PersonTrennenRequest"/>
+ <xsd:element ref="zmr:PersonZusammenfuehrenSucheRequest"/>
+ <xsd:element ref="zmr:PersonZusammenfuehrenRequest"/>
+ <xsd:element ref="zmr:SZRPersonenbindungRequest"/>
+ <xsd:element ref="zmr:SzrAbfrageRequest"/>
+ <xsd:element ref="zmr:SZRPersonensucheRequest"/>
+ <xsd:element ref="zmr:SZREinzelabfrageRequest"/>
+ <xsd:element ref="zmr:BehoerdenattributeAendernRequest"/>
+ <xsd:element ref="zmr:StornoDarstellenRequest"/>
+ <xsd:element ref="zmr:StornoRequest"/>
+ <xsd:element ref="zmr:PersonKorrigierenRequest"/>
+ <xsd:element ref="zmr:WohnsitzKorrigierenRequest"/>
+ <xsd:element ref="zmr:WehrpflichtigeAbfragenRequest"/>
+ <xsd:element ref="zmr:AblaufendeAuskunftssperrenSucheRequest"/>
+ <xsd:element ref="zmr:GerichtskommissaerabfrageRequest"/>
+ <xsd:element ref="zmr:ObjektsucheSteuerfahndungRequest"/>
+ <xsd:element ref="zmr:ObjektsucheMindestsicherungRequest"/>
+ <xsd:element ref="zmr:AdoptionRequest"/>
+ <xsd:element ref="zmr:GleichsetzungAbfragenRequest"/>
+ <xsd:element ref="zmr:GleichsetzungAnlegenRequest"/>
+ <xsd:element ref="zmr:GleichsetzungLoeschenRequest"/>
+ <xsd:element ref="zmr:QKZBearbeitenRequest"/>
+ <xsd:element ref="zmr:QKZAuswertungRequest"/>
+ <xsd:element ref="zmr:BPKPruefungRequest"/>
+ <xsd:element ref="zmr:MeldungHistKorrigierenRequest"/>
+ <xsd:element ref="zmr:MeldebestaetigungenAnfordernRequest"/>
+ <xsd:element ref="zmr:TechnischeAnsichtRequest"/>
+ <xsd:element ref="zmr:AuskunftssperreAendernRequest"/>
+ <xsd:element ref="zmr:UmmSrvAbfrageRequest"/>
+ <xsd:element ref="zmr:GISSucheRequest"/>
+ <xsd:element ref="zmr:PersonenListenRequest"/>
+ <xsd:element ref="zmr:AnwendungsintegrationRequest"/>
+ <xsd:element ref="zmr:AnwendungsintegrationWiederholungRequest"/>
+ <xsd:element ref="zmr:ORFGISAnforderungRequest"/>
+ <xsd:element ref="zmr:IAPPersonenUeberblickRequest"/>
+ <xsd:element ref="zmr:IAPPersonenDetailRequest"/>
+ <xsd:element ref="zmr:ErnpRequest"/>
+ <xsd:element ref="zmr:BuergerPersonensucheRequest"/>
+ <xsd:element ref="zmr:BuergerMitbewohnersucheRequest"/>
+ <xsd:element ref="zmr:BuergerWohnsitzAnmeldenRequest"/>
+ <xsd:element ref="zmr:BuergerWohnsitzAbmeldenRequest"/>
+ <xsd:element ref="zmr:BuergerWohnsitzUmmeldenRequest"/>
+ <xsd:element ref="zmr:GemeindeeinstellungenRequest"/>
+ <xsd:element ref="zmr:GemeindeeinstellungenAendernRequest"/>
+ <xsd:element ref="zmr:SperrlisteRequest"/>
+ <xsd:element ref="zmr:SperrlisteAnlegenRequest"/>
+ <xsd:element ref="zmr:SperrlisteLoeschenRequest"/>
+ </xsd:choice>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:complexType name="ResponseType">
+ <xsd:sequence>
+ <xsd:element ref="base:WorkflowInfoServer"/>
+ <xsd:element ref="base:ServerInfo"/>
+ <xsd:choice>
+ <xsd:element ref="base:WorkflowsAuflistenResponse"/>
+ <xsd:element ref="base:BenutzereinstellungenAbfragenResponse"/>
+ <xsd:element ref="base:BenutzereinstellungenAendernResponse"/>
+ <xsd:element ref="base:OrganisationseinstellungenAendernResponse"/>
+ <xsd:element ref="base:AuswertungenAuflistenResponse"/>
+ <xsd:element ref="base:AuswertungAbgeholtResponse"/>
+ <xsd:element ref="base:BasTabelleAbfrageResponse"/>
+ <xsd:element ref="zmr:PersonSuchenResponse"/>
+ <xsd:element ref="zmr:PersonAnlegenResponse"/>
+ <xsd:element ref="zmr:PersonAendernResponse"/>
+ <xsd:element ref="zmr:AdresssucheResponse"/>
+ <xsd:element ref="zmr:WohnsitzAnmeldenResponse"/>
+ <xsd:element ref="zmr:WohnsitzAbmeldenResponse"/>
+ <xsd:element ref="zmr:WohnsitzUmmeldenResponse"/>
+ <xsd:element ref="zmr:MeldebestaetigungResponse"/>
+ <xsd:element ref="zmr:MeldeauskunftResponse"/>
+ <xsd:element ref="zmr:DatenabgleichResponse"/>
+ <xsd:element ref="zmr:AvisosucheResponse"/>
+ <xsd:element ref="zmr:AvisoAnlegenResponse"/>
+ <xsd:element ref="zmr:AvisoAendernResponse"/>
+ <xsd:element ref="zmr:AvisoBeendenResponse"/>
+ <xsd:element ref="zmr:AvisoFreigebenSucheResponse"/>
+ <xsd:element ref="zmr:AvisoFreigebenResponse"/>
+ <xsd:element ref="zmr:BPAbfrageResponse"/>
+ <xsd:element ref="zmr:BPAbfrageErweitertResponse"/>
+ <xsd:element ref="zmr:BusinesspartnerAnfrageResponse"/>
+ <xsd:element ref="zmr:BehoerdenabfrageResponse"/>
+ <xsd:element ref="zmr:BestandsaenderungenResponse"/>
+ <xsd:element ref="zmr:FremdenabfrageResponse"/>
+ <xsd:element ref="zmr:HauseigentuemerAbfrageResponse"/>
+ <xsd:element ref="zmr:HauseigentuemerAbfrageDruckResponse"/>
+ <xsd:element ref="zmr:PersonenAbfrageResponse"/>
+ <xsd:element ref="zmr:PersonenAbfrageDruckResponse"/>
+ <xsd:element ref="zmr:ZuzugsbestaetigungResponse"/>
+ <xsd:element ref="zmr:PersonTrennenSucheResponse"/>
+ <xsd:element ref="zmr:PersonTrennenResponse"/>
+ <xsd:element ref="zmr:PersonZusammenfuehrenSucheResponse"/>
+ <xsd:element ref="zmr:PersonZusammenfuehrenResponse"/>
+ <xsd:element ref="zmr:SZRPersonenbindungResponse"/>
+ <xsd:element ref="zmr:SzrAbfrageResponse"/>
+ <xsd:element ref="zmr:SZRPersonensucheResponse"/>
+ <xsd:element ref="zmr:BehoerdenattributeAendernResponse"/>
+ <xsd:element ref="zmr:StornoDarstellenResponse"/>
+ <xsd:element ref="zmr:StornoResponse"/>
+ <xsd:element ref="zmr:PersonKorrigierenResponse"/>
+ <xsd:element ref="zmr:WohnsitzKorrigierenResponse"/>
+ <xsd:element ref="zmr:WehrpflichtigeAbfragenResponse"/>
+ <xsd:element ref="zmr:AblaufendeAuskunftssperrenSucheResponse"/>
+ <xsd:element ref="zmr:GerichtskommissaerabfrageResponse"/>
+ <xsd:element ref="zmr:ObjektsucheSteuerfahndungResponse"/>
+ <xsd:element ref="zmr:ObjektsucheMindestsicherungResponse"/>
+ <xsd:element ref="zmr:AdoptionResponse"/>
+ <xsd:element ref="zmr:GleichsetzungAbfragenResponse"/>
+ <xsd:element ref="zmr:GleichsetzungAnlegenResponse"/>
+ <xsd:element ref="zmr:GleichsetzungLoeschenResponse"/>
+ <xsd:element ref="zmr:QKZBearbeitenResponse"/>
+ <xsd:element ref="zmr:QKZAuswertungResponse"/>
+ <xsd:element ref="zmr:BPKPruefungResponse"/>
+ <xsd:element ref="zmr:MeldungHistKorrigierenResponse"/>
+ <xsd:element ref="zmr:MeldebestaetigungenAnfordernResponse"/>
+ <xsd:element ref="zmr:TechnischeAnsichtResponse"/>
+ <xsd:element ref="zmr:AuskunftssperreAendernResponse"/>
+ <xsd:element ref="zmr:UmmSrvAbfrageResponse"/>
+ <xsd:element ref="zmr:GISSucheResponse"/>
+ <xsd:element ref="zmr:PersonenListenResponse"/>
+ <xsd:element ref="zmr:AnwendungsintegrationResponse"/>
+ <xsd:element ref="zmr:AnwendungsintegrationWiederholungResponse"/>
+ <xsd:element ref="zmr:ORFGISAnforderungResponse"/>
+ <xsd:element ref="zmr:IAPPersonenUeberblickResponse"/>
+ <xsd:element ref="zmr:IAPPersonenDetailResponse"/>
+ <xsd:element ref="zmr:ErnpResponse"/>
+ <xsd:element ref="zmr:BuergerPersonensucheResponse"/>
+ <xsd:element ref="zmr:BuergerMitbewohnersucheResponse"/>
+ <xsd:element ref="zmr:BuergerWohnsitzserviceResponse"/>
+ <xsd:element ref="zmr:GemeindeeinstellungenResponse"/>
+ <xsd:element ref="zmr:GemeindeeinstellungenAendernResponse"/>
+ <xsd:element ref="zmr:SperrlisteResponse"/>
+ <xsd:element ref="zmr:SperrlisteUpdateResponse"/>
+ </xsd:choice>
+ </xsd:sequence>
+ </xsd:complexType>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/wsdl/Service.wsdl b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/wsdl/Service.wsdl new file mode 100644 index 00000000..3dbeabc7 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/wsdl/Service.wsdl @@ -0,0 +1,62 @@ +<definitions xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:wsse="http://schemas.xmlsoap.org/ws/2002/04/secext"
+ xmlns="http://schemas.xmlsoap.org/wsdl/"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" name="Service">
+ <types>
+ <xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#" targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#">
+ <xsd:import namespace="http://schemas.xmlsoap.org/ws/2002/04/secext" schemaLocation="secext.xsd"/>
+ <xsd:include schemaLocation="Messages.xsd"/>
+ <xsd:element name="Request" type="RequestType"/>
+ <xsd:element name="Response" type="ResponseType"/>
+ <xsd:element name="ServiceFault">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="ErrorCode"/>
+ <xsd:element ref="ErrorMessage"/>
+ <xsd:element ref="ServerTransaktionNr"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ </xsd:schema>
+ </types>
+ <message name="ServiceRequest">
+ <part name="in" element="base:Request"/>
+ <part name="WSSEHeader" element="wsse:Security"/>
+ </message>
+ <message name="ServiceResponse">
+ <part name="out" element="base:Response"/>
+ </message>
+ <message name="ServiceFault">
+ <part name="servicefault" element="base:ServiceFault"/>
+ </message>
+ <portType name="ServicePort">
+ <operation name="service">
+ <input message="base:ServiceRequest"/>
+ <output message="base:ServiceResponse"/>
+ <fault name="servicefault" message="base:ServiceFault"/>
+ </operation>
+ </portType>
+ <binding name="ServiceBinding" type="base:ServicePort">
+ <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
+ <operation name="service">
+ <soap:operation style="document"/>
+ <input>
+ <soap:header message="base:ServiceRequest" part="WSSEHeader" use="literal"/>
+ <soap:body use="literal" parts="in"/>
+ </input>
+ <output>
+ <soap:body use="literal"/>
+ </output>
+ <fault name="servicefault">
+ <soap:fault name="servicefault" use="literal"/>
+ </fault>
+ </operation>
+ </binding>
+ <service name="Service">
+ <port name="Service" binding="base:ServiceBinding">
+ <soap:address location="https://pvawp.bmi.gv.at/bmi.gv.at/soap/zmr/soap/ZMRService"/>
+ </port>
+ </service>
+</definitions>
diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/wsdl/secext.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/wsdl/secext.xsd new file mode 100644 index 00000000..1005b12a --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/wsdl/secext.xsd @@ -0,0 +1,150 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Legal Disclaimer
+
+The presentation, distribution or other dissemination of the information
+contained in this specification is not a license, either expressly or impliedly,
+to any intellectual property owned or controlled by IBM or Microsoft and\or any other
+third party. IBM and Microsoft and\or any other third party may have patents, patent
+applications, trademarks, copyrights, or other intellectual property rights
+covering subject matter in this document. The furnishing of this document
+does not give you any license to IBM's and Microsoft's or any other third party's patents,
+trademarks, copyrights, or other intellectual property.
+
+This specification and the information contained herein is provided on an "AS IS"
+ basis and to the maximum extent permitted by applicable law, IBM and Microsoft provides
+the document AS IS AND WITH ALL FAULTS, and hereby disclaims all other warranties
+and conditions, either express, implied or statutory, including, but not limited
+to, any (if any) implied warranties, duties or conditions of merchantability, of
+fitness for a particular purpose, of accuracy or completeness of responses, of
+results, of workmanlike effort, of lack of viruses, and of lack of negligence,
+all with regard to the document. ALSO, THERE IS NO WARRANTY OR CONDITION OF
+TITLE, QUIET ENJOYMENT, QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR
+NON-INFRINGEMENT OF ANY INTELLECTUAL PROPERTY RIGHTS WITH REGARD TO THE DOCUMENT.
+
+IN NO EVENT WILL IBM or MICROSOFT BE LIABLE TO ANY OTHER PARTY FOR THE COST OF PROCURING
+SUBSTITUTE GOODS OR SERVICES, LOST PROFITS, LOSS OF USE, LOSS OF DATA, OR ANY
+INCIDENTAL, CONSEQUENTIAL, DIRECT, INDIRECT, OR SPECIAL DAMAGES WHETHER UNDER
+CONTRACT, TORT, WARRANTY, OR OTHERWISE, ARISING IN ANY WAY OUT OF THIS OR ANY
+OTHER AGREEMENT RELATING TO THIS DOCUMENT, WHETHER OR NOT SUCH PARTY HAD ADVANCE
+NOTICE OF THE POSSIBILITY OF SUCH DAMAGES.
+
+Copyright Notice
+
+Copyright 2001, 2002 IBM Corporation and Microsoft Corporation. All rights reserved.
+-->
+<xsd:schema targetNamespace="http://schemas.xmlsoap.org/ws/2002/04/secext" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsse="http://schemas.xmlsoap.org/ws/2002/04/secext" xmlns="http://schemas.xmlsoap.org/ws/2002/04/secext" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" elementFormDefault="qualified" attributeFormDefault="unqualified" version="0.2">
+ <xsd:element name="Security">
+ <xsd:annotation>
+ <xsd:documentation>
+ This element defines header block to use for security-relevant data directed at a specific SOAP actor.
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded">
+ <xsd:annotation>
+ <xsd:documentation>
+ The use of "any" is to allow extensibility and different forms of security data.
+ </xsd:documentation>
+ </xsd:annotation>
+ </xsd:any>
+ </xsd:sequence>
+ <xsd:anyAttribute processContents="lax"/>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="UsernameToken">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="Username"/>
+ <xsd:element ref="Password" minOccurs="0"/>
+ </xsd:sequence>
+ <xsd:attribute name="Id" type="xsd:ID"/>
+ <xsd:anyAttribute namespace="##other"/>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="Username">
+ <xsd:complexType>
+ <xsd:simpleContent>
+ <xsd:extension base="xsd:string">
+ <xsd:anyAttribute namespace="##other"/>
+ </xsd:extension>
+ </xsd:simpleContent>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="Password">
+ <xsd:complexType>
+ <xsd:simpleContent>
+ <xsd:extension base="xsd:string">
+ <xsd:attribute name="Type" type="xsd:QName"/>
+ <xsd:anyAttribute namespace="##other"/>
+ </xsd:extension>
+ </xsd:simpleContent>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="BinarySecurityToken">
+ <xsd:annotation>
+ <xsd:documentation>A security token that is encoded in binary</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:simpleContent>
+ <xsd:extension base="xsd:string">
+ <xsd:attribute name="Id" type="xsd:ID"/>
+ <xsd:attribute name="ValueType" type="xsd:QName"/>
+ <xsd:attribute name="EncodingType" type="xsd:QName"/>
+ <xsd:anyAttribute namespace="##other" processContents="strict"/>
+ </xsd:extension>
+ </xsd:simpleContent>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="SecurityTokenReference">
+ <xsd:annotation>
+ <xsd:documentation>
+ This element is used reference a security token.
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:choice minOccurs="0" maxOccurs="unbounded">
+ <xsd:element ref="Reference"/>
+ <xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:choice>
+ <xsd:attribute name="Id" type="xsd:ID"/>
+ <xsd:anyAttribute namespace="##other" processContents="lax"/>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="Reference">
+ <xsd:complexType>
+ <xsd:attribute name="URI" type="xsd:anyURI"/>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:simpleType name="PasswordTypeEnum">
+ <xsd:restriction base="xsd:QName">
+ <xsd:enumeration value="wsse:PasswordText"/>
+ <xsd:enumeration value="wsse:PasswordDigest"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ <xsd:simpleType name="ValueTypeEnum">
+ <xsd:restriction base="xsd:QName">
+ <xsd:enumeration value="wsse:X509v3"/>
+ <xsd:enumeration value="wsse:Kerberosv5TGT"/>
+ <xsd:enumeration value="wsse:Kerberosv5ST"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ <xsd:simpleType name="EncodingTypeEnum">
+ <xsd:restriction base="xsd:QName">
+ <xsd:enumeration value="wsse:Base64Binary"/>
+ <xsd:enumeration value="wsse:HexBinary"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ <xsd:simpleType name="FaultcodeEnum">
+ <xsd:restriction base="xsd:QName">
+ <xsd:enumeration value="wsse:UnsupportedSecurityToken"/>
+ <xsd:enumeration value="wsse:UnsupportedAlgorithm"/>
+ <xsd:enumeration value="wsse:InvalidSecurity"/>
+ <xsd:enumeration value="wsse:InvalidSecurityToken"/>
+ <xsd:enumeration value="wsse:FailedAuthentication"/>
+ <xsd:enumeration value="wsse:FailedCheck"/>
+ <xsd:enumeration value="wsse:SecurityTokenUnavailable"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/wsdl/secext_pvp.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/wsdl/secext_pvp.xsd new file mode 100644 index 00000000..24896b99 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/wsdl/secext_pvp.xsd @@ -0,0 +1,152 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Legal Disclaimer
+
+The presentation, distribution or other dissemination of the information
+contained in this specification is not a license, either expressly or impliedly,
+to any intellectual property owned or controlled by IBM or Microsoft and\or any other
+third party. IBM and Microsoft and\or any other third party may have patents, patent
+applications, trademarks, copyrights, or other intellectual property rights
+covering subject matter in this document. The furnishing of this document
+does not give you any license to IBM's and Microsoft's or any other third party's patents,
+trademarks, copyrights, or other intellectual property.
+
+This specification and the information contained herein is provided on an "AS IS"
+ basis and to the maximum extent permitted by applicable law, IBM and Microsoft provides
+the document AS IS AND WITH ALL FAULTS, and hereby disclaims all other warranties
+and conditions, either express, implied or statutory, including, but not limited
+to, any (if any) implied warranties, duties or conditions of merchantability, of
+fitness for a particular purpose, of accuracy or completeness of responses, of
+results, of workmanlike effort, of lack of viruses, and of lack of negligence,
+all with regard to the document. ALSO, THERE IS NO WARRANTY OR CONDITION OF
+TITLE, QUIET ENJOYMENT, QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR
+NON-INFRINGEMENT OF ANY INTELLECTUAL PROPERTY RIGHTS WITH REGARD TO THE DOCUMENT.
+
+IN NO EVENT WILL IBM or MICROSOFT BE LIABLE TO ANY OTHER PARTY FOR THE COST OF PROCURING
+SUBSTITUTE GOODS OR SERVICES, LOST PROFITS, LOSS OF USE, LOSS OF DATA, OR ANY
+INCIDENTAL, CONSEQUENTIAL, DIRECT, INDIRECT, OR SPECIAL DAMAGES WHETHER UNDER
+CONTRACT, TORT, WARRANTY, OR OTHERWISE, ARISING IN ANY WAY OUT OF THIS OR ANY
+OTHER AGREEMENT RELATING TO THIS DOCUMENT, WHETHER OR NOT SUCH PARTY HAD ADVANCE
+NOTICE OF THE POSSIBILITY OF SUCH DAMAGES.
+
+Copyright Notice
+
+Copyright 2001, 2002 IBM Corporation and Microsoft Corporation. All rights reserved.
+-->
+<xsd:schema targetNamespace="http://schemas.xmlsoap.org/ws/2002/04/secext" xmlns:pvp="http://egov.gv.at/pvp1.xsd" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsse="http://schemas.xmlsoap.org/ws/2002/04/secext" xmlns="http://schemas.xmlsoap.org/ws/2002/04/secext" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" elementFormDefault="qualified" attributeFormDefault="unqualified" version="0.2">
+ <xsd:import namespace="http://egov.gv.at/pvp1.xsd" schemaLocation="../xsd/eingebunden/pvp1.xsd"/>
+ <xsd:element name="Security">
+ <xsd:annotation>
+ <xsd:documentation>
+ This element defines header block to use for security-relevant data directed at a specific SOAP actor.
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="pvp:pvpToken" minOccurs="0"/>
+ <xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded">
+ <xsd:annotation>
+ <xsd:documentation>
+ The use of "any" is to allow extensibility and different forms of security data.
+ </xsd:documentation>
+ </xsd:annotation>
+ </xsd:any>
+ </xsd:sequence>
+ <xsd:anyAttribute processContents="lax"/>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="UsernameToken">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="Username"/>
+ <xsd:element ref="Password" minOccurs="0"/>
+ </xsd:sequence>
+ <xsd:attribute name="Id" type="xsd:ID"/>
+ <xsd:anyAttribute namespace="##other"/>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="Username">
+ <xsd:complexType>
+ <xsd:simpleContent>
+ <xsd:extension base="xsd:string">
+ <xsd:anyAttribute namespace="##other"/>
+ </xsd:extension>
+ </xsd:simpleContent>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="Password">
+ <xsd:complexType>
+ <xsd:simpleContent>
+ <xsd:extension base="xsd:string">
+ <xsd:attribute name="Type" type="xsd:QName"/>
+ <xsd:anyAttribute namespace="##other"/>
+ </xsd:extension>
+ </xsd:simpleContent>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="BinarySecurityToken">
+ <xsd:annotation>
+ <xsd:documentation>A security token that is encoded in binary</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:simpleContent>
+ <xsd:extension base="xsd:string">
+ <xsd:attribute name="Id" type="xsd:ID"/>
+ <xsd:attribute name="ValueType" type="xsd:QName"/>
+ <xsd:attribute name="EncodingType" type="xsd:QName"/>
+ <xsd:anyAttribute namespace="##other" processContents="strict"/>
+ </xsd:extension>
+ </xsd:simpleContent>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="SecurityTokenReference">
+ <xsd:annotation>
+ <xsd:documentation>
+ This element is used reference a security token.
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:choice minOccurs="0" maxOccurs="unbounded">
+ <xsd:element ref="Reference"/>
+ <xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:choice>
+ <xsd:attribute name="Id" type="xsd:ID"/>
+ <xsd:anyAttribute namespace="##other" processContents="lax"/>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="Reference">
+ <xsd:complexType>
+ <xsd:attribute name="URI" type="xsd:anyURI"/>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:simpleType name="PasswordTypeEnum">
+ <xsd:restriction base="xsd:QName">
+ <xsd:enumeration value="wsse:PasswordText"/>
+ <xsd:enumeration value="wsse:PasswordDigest"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ <xsd:simpleType name="ValueTypeEnum">
+ <xsd:restriction base="xsd:QName">
+ <xsd:enumeration value="wsse:X509v3"/>
+ <xsd:enumeration value="wsse:Kerberosv5TGT"/>
+ <xsd:enumeration value="wsse:Kerberosv5ST"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ <xsd:simpleType name="EncodingTypeEnum">
+ <xsd:restriction base="xsd:QName">
+ <xsd:enumeration value="wsse:Base64Binary"/>
+ <xsd:enumeration value="wsse:HexBinary"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ <xsd:simpleType name="FaultcodeEnum">
+ <xsd:restriction base="xsd:QName">
+ <xsd:enumeration value="wsse:UnsupportedSecurityToken"/>
+ <xsd:enumeration value="wsse:UnsupportedAlgorithm"/>
+ <xsd:enumeration value="wsse:InvalidSecurity"/>
+ <xsd:enumeration value="wsse:InvalidSecurityToken"/>
+ <xsd:enumeration value="wsse:FailedAuthentication"/>
+ <xsd:enumeration value="wsse:FailedCheck"/>
+ <xsd:enumeration value="wsse:SecurityTokenUnavailable"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/allgemein/Auswertungen.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/allgemein/Auswertungen.xsd new file mode 100644 index 00000000..c5efb2f6 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/allgemein/Auswertungen.xsd @@ -0,0 +1,200 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Auswertungen.xsd
+Zweck: Definiert Datentypen zum Auflisten und Abholen von Auswertungen aus dem ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2007-12-19 teo: +NurAbgeholte in AuswertungenAuflistenRequest (CR442)
+2005-05-17 tsch: AuswertungErzeugt hinzugefuegt
+2005-04-30 tsch: EntityID einer speziellen Auswertung optional zur Organisation
+2005-04-30 tsch: Feld GeneriertBis hinzugefuegt (Schätzung der Bereitstellungszeit, falls Auswertungsgenerierung in Arbeit)
+2005-04-29 tsch: Es können mehrere Auswertungen zugleich gelöscht werden
+2004-11-09 tsch: Auswertung-Langtext hinzugefuegt
+2004-09-27 tsch: Vom ZMR-Namespace nach BASE verschoben
+2004-06-24 tsch: Erstellung
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:include schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+
+ <xsd:element name="AuswertungenAuflistenRequest">
+ <xsd:annotation>
+ <xsd:documentation>
+ Request zum Auflisten der im ZMR für eine Organisation erzeugten Auswertungen
+ Ist InclusiveAbgeholte='true', werden auch die Auswerungen geliefert, die schon abgeholt wurden.
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:choice>
+ <xsd:element ref="Organisation"/>
+ <xsd:element ref="EntityID"/>
+ </xsd:choice>
+ <xsd:element name="InclusiveAbgeholte" type="xsd:boolean"/>
+ <xsd:element name="NurAbgeholte" type="xsd:boolean" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AuswertungenAuflistenResponse">
+ <xsd:annotation>
+ <xsd:documentation>
+ In der Response werden die für die Organisation erzeugten Auswertungen als Liste geliefert.
+ Die Auswertungen sind nach GeneriertAm aufsteigend sortiert
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="Message"/>
+ <xsd:choice>
+ <xsd:element ref="Organisation"/>
+ <xsd:element ref="EntityID"/>
+ </xsd:choice>
+ <xsd:element ref="Auswertung" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AuswertungAbgeholtRequest">
+ <xsd:annotation>
+ <xsd:documentation>
+ Wenn alle Teile (Auswertungsdaten) einer Auswertung abgeholt (mittels HTTP-Get) und erfolgreich
+ verarbeitet wurden, muss dieser Request zum 'Abschliessen' der Auswertung geschickt werden.
+ Abgeholte Auswertungen werden nur nuch dann geliefert, wenn InclusiveAbgeholte='true' gesetzt ist.
+ Es muss die EntityID der abgeholten Auswertung geschickt werden.
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="EntityID" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AuswertungAbgeholtResponse">
+ <xsd:annotation>
+ <xsd:documentation>
+ Response mit EntityID der abgeholten Auswertung
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="Message"/>
+ <xsd:element ref="EntityID" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AuswertungErzeugtRequest">
+ <xsd:annotation>
+ <xsd:documentation>
+ Sobald eine Auswertung erzeugt wurde, kann über diese Schnittstelle der Empfänger aktiv verständigt werden (PUSH-Mechanismus)
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="Organisation"/>
+ <xsd:element ref="Auswertung"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AuswertungErzeugtResponse">
+ <xsd:annotation>
+ <xsd:documentation>
+ Bestätigung des Empfängers, die Verstänfigung erhalten zu haben
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="Message"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="Auswertung">
+ <xsd:annotation>
+ <xsd:documentation>
+ Innerhalb einer Auswertung werden die geteilten Files aufsteigend durchnummeriert geliefert.
+ Als erster Schüssel der Sortierung dient der Datentyp, als zweiter die Nummerierung
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="Code">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="20"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="Langtext">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="50"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element ref="EntityID"/>
+ <xsd:choice>
+ <xsd:sequence>
+ <xsd:element ref="GeneriertAm"/>
+ <xsd:element ref="AuswertungAbgeholt" minOccurs="0"/>
+ <xsd:element ref="Auswertungsdaten" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ <xsd:sequence>
+ <xsd:element name="BearbeitungsBeginn" type="TimestampType"/>
+ </xsd:sequence>
+ </xsd:choice>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="Auswertungsdaten">
+ <xsd:annotation>
+ <xsd:documentation>
+ Das File mit dem Auswertungsteil ist über den angegebenen (zur ZMR-Applikationsroot)
+ relativen URL referenziert und kann mittels HTTP-GET abgeholt werden.
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="Langtext">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="50"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="URL" type="xsd:string"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AuswertungAbgeholt">
+ <xsd:annotation>
+ <xsd:documentation>
+ Falls die Auswertung schon einmal abgeholt wurde, wird dieser Datenteil mit den
+ Informationen zur Abholung (Organisation, Zeitpunkt) geliefert.
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="AbgeholtAm" type="TimestampType"/>
+ <xsd:element ref="DurchgefuehrtVon"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/allgemein/BasTabelleAbfrage.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/allgemein/BasTabelleAbfrage.xsd new file mode 100644 index 00000000..ca78a990 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/allgemein/BasTabelleAbfrage.xsd @@ -0,0 +1,193 @@ +<?xml version="1.0" encoding="UTF-8"?> + <!-- +Name: BasTabellenAbfrage.xsd +Zweck: Definiert Abfragerequest und -responses für die BAS-Tabellenabfrage +Author(s): Fürnweger Andreas, ZMR-SU + +Aenderungshistorie: +2012-08-08 xfu: Erstellt +--> + +<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + <xsd:include schemaLocation="../eingebunden/EingebundenProxy.xsd" /> + + <xsd:simpleType name="TabelleType"> + <xsd:restriction base="xsd:string"> + <xsd:enumeration value="AKADGRAD" /> + <xsd:enumeration value="STAAT" /> + <xsd:enumeration value="DOMAINCODE" /> + <xsd:enumeration value="GEMNRBEHKZ" /> + <xsd:enumeration value="TGEM" /> + <xsd:enumeration value="GESCHAEFTSPROLLE" /> + <xsd:enumeration value="RELIGION" /> + </xsd:restriction> + </xsd:simpleType> + + <xsd:element name="BasTabelleAbfrageRequest"> + <xsd:annotation> + <xsd:documentation> + Definiert welche Tabelle mit welchen Suchkriterien aufgelistet werden soll. + InclusivHistorie: bestimmt ob nur aktuelle oder auch (fachlich) historische Einträge aufgelistet werden sollen + LetzteAenderungNach: Gibt man hier ein Datum an, werden nur Einträge gelistet, deren LetzteAenderung Datum nach diesem ist + </xsd:documentation> + </xsd:annotation> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="Tabelle" type="base:TabelleType" /> + <xsd:element ref="base:InclusivHistorie" /> + <xsd:element name="LetzteAenderungNach" type="base:TimestampType" minOccurs="0" /> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="BasTabelleAbfrageResponse"> + <xsd:annotation> + <xsd:documentation>Enthält alle gefunden Einträge der entsprechenden BAS-Tabelle</xsd:documentation> + </xsd:annotation> + <xsd:complexType> + <xsd:choice> + <xsd:element ref="base:BasStaat" minOccurs="0" maxOccurs="unbounded" /> + <xsd:element ref="base:BasAkadGrad" minOccurs="0" maxOccurs="unbounded" /> + <xsd:element ref="base:BasDomainCode" minOccurs="0" maxOccurs="unbounded" /> + <xsd:element ref="base:GemnrBehkz" minOccurs="0" maxOccurs="unbounded" /> + <xsd:element ref="base:BasTgem" minOccurs="0" maxOccurs="unbounded" /> + <xsd:element ref="base:Rolle" minOccurs="0" maxOccurs="unbounded" /> + <xsd:element ref="base:ReligionCode" minOccurs="0" maxOccurs="unbounded" /> + </xsd:choice> + </xsd:complexType> + </xsd:element> + + <xsd:element name="BasStaat"> + <xsd:complexType> + <xsd:annotation> + <xsd:documentation>Ein BAS.STAAT Eintrag mit den üblichen technischen und allen fachlichen Informationen</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element ref="base:EntityErgebnisReferenz" /> + <xsd:element name="ISOCode2" type="xsd:string" minOccurs="0" /> + <xsd:element name="ISOCode3" type="xsd:string" minOccurs="0" /> + <xsd:element name="StaatAnerkannt" type="xsd:boolean" minOccurs="0" /> + <xsd:element name="Staatsbuerger" type="xsd:boolean" minOccurs="0" /> <!-- ZMR-2864 Staatsbuergerschaft --> + <xsd:element name="GebStaat" type="xsd:boolean" minOccurs="0" /> + <xsd:element name="UmzugStaat" type="xsd:boolean" minOccurs="0" /> + <xsd:element name="ReisedokStaat" type="xsd:boolean" minOccurs="0" /> + <xsd:element name="ZugehoerigStaat" type="xsd:string" minOccurs="0" /> + <xsd:element name="EwrStaat" type="xsd:boolean" minOccurs="0" /> + <xsd:element name="EuStaat" type="xsd:boolean" minOccurs="0" /> + <xsd:element name="EuStaatOffiziell" type="xsd:boolean" minOccurs="0" /> + <xsd:element name="StaatName" type="xsd:string" minOccurs="0" /> + <xsd:element name="StaatNameEinf" type="xsd:string" minOccurs="0" /> + <xsd:element name="StaatNameLang" type="xsd:string" minOccurs="0" /> + <xsd:element name="StaatNameNorm" type="xsd:string" minOccurs="0" /> + <xsd:element name="StaatNummer" type="xsd:int" minOccurs="0" /> + <xsd:element name="StaatKFZ" type="xsd:string" minOccurs="0" /> + <xsd:element name="StaatEnglisch" type="xsd:string" minOccurs="0" /> + <xsd:element name="UnStaat" type="xsd:boolean" minOccurs="0" /> + <xsd:element name="PostStaat" type="xsd:boolean" minOccurs="0" /> + <xsd:element name="PlzStaat" type="xsd:string" minOccurs="0" /> + <xsd:element name="Kontinent" type="xsd:string" minOccurs="0" /> + <xsd:element name="Region" type="xsd:string" minOccurs="0" /> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="BasAkadGrad"> + <xsd:complexType> + <xsd:annotation> + <xsd:documentation>Ein BAS.AKADGRAD Eintrag mit den üblichen technischen und allen fachlichen Informationen</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element ref="base:EntityErgebnisReferenz" /> + <xsd:element ref="base:AkadGradStellung" minOccurs="0" /> + <xsd:element ref="base:AkadGradReihung" minOccurs="0" /> + <xsd:element name="Art" type="xsd:string" minOccurs="0" /> + <xsd:element ref="base:AkadGradLang" minOccurs="0" /> + <xsd:element ref="base:AkadGradKurz" minOccurs="0" /> + <xsd:element name="ISOCode3" type="xsd:string" minOccurs="0" /> + <xsd:element name="AkadGradNorm" type="xsd:string" minOccurs="0" /> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="BasDomainCode"> + <xsd:complexType> + <xsd:annotation> + <xsd:documentation>Ein BAS.DOMAINCODE Eintrag mit den fürs ZMR3 relevanten Feldern</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element name="Bereich" type="xsd:string" /> + <xsd:element name="Code" type="xsd:string" /> + <xsd:element name="CodeText" type="xsd:string" /> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="GemnrBehkz"> + <xsd:complexType> + <xsd:annotation> + <xsd:documentation>Ein BAS.GEMNRBEHKZ Eintrag mit den fürs ZMR3 relevanten Feldern</xsd:documentation> + </xsd:annotation> + <xsd:attribute name="gem" type="xsd:int" /> + <xsd:attribute name="beh" type="xsd:int" /> + </xsd:complexType> + </xsd:element> + + <xsd:element name="BasTgem"> + <xsd:complexType> + <xsd:annotation> + <xsd:documentation>Ein GW2.TGEM Eintrag mit den fürs ZMR3 relevanten Feldern</xsd:documentation> + </xsd:annotation> + <xsd:attribute name="name" type="xsd:string" /> + <xsd:attribute name="nr" type="xsd:int" /> + </xsd:complexType> + </xsd:element> + + <xsd:element name="Rolle"> + <xsd:complexType> + <xsd:annotation> + <xsd:documentation>Eine Rolle mit den erlaubten Geschäftsprozessen</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element ref="base:Geschaeftsprozess" minOccurs="0" maxOccurs="unbounded" /> + </xsd:sequence> + <xsd:attribute name="Name" type="xsd:string" /> + </xsd:complexType> + </xsd:element> + + <xsd:element name="ReligionCode"> + <xsd:complexType> + <xsd:annotation> + <xsd:documentation>Ein SMI.RELIGIONCODE Eintrag mit den fürs ZMR3 relevanten Feldern</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element name="Bezeichnung" type="xsd:string"/> + <xsd:element name="Code" type="xsd:string"/> + <xsd:element name="KurzBez" type="xsd:string"/> + <xsd:element name="MigGueltig" type="xsd:string"/> + <xsd:element name="ReferenzNr" type="xsd:long"/> + <xsd:element name="Religionart" type="xsd:string"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="Geschaeftsprozess"> + <xsd:complexType> + <xsd:annotation> + <xsd:documentation>Ein Geschäftsprozess zu einer Rolle mit optionaler Einschränkung auf bestimmte Vorgänge</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element ref="base:Vorgang" minOccurs="0" maxOccurs="unbounded" /> + </xsd:sequence> + <xsd:attribute name="Name" type="xsd:string" /> + </xsd:complexType> + </xsd:element> + + <xsd:element name="Vorgang"> + <xsd:complexType> + <xsd:annotation> + <xsd:documentation>Ein Geschäftsprozess zu einer Rolle mit optionaler Einschränkung auf bestimmte Vorgänge</xsd:documentation> + </xsd:annotation> + <xsd:attribute name="Name" type="xsd:string" /> + </xsd:complexType> + </xsd:element> +</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/allgemein/Benutzereinstellungen.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/allgemein/Benutzereinstellungen.xsd new file mode 100644 index 00000000..45bb9795 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/allgemein/Benutzereinstellungen.xsd @@ -0,0 +1,102 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Benutzereinstellungen.xsd
+Zweck: Definiert Datentypen für Benutzereinstellungen -Abfragen und Änderungen im ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2011-04-29 rp: LMR-905: +DefaultGemeindeNrSucheInclLMR
+2011-01-11 teo: LMR-837 Farbgestaltung Menü
+2010-01-27 teo: Suche mit Teilnamen (ZMR-1334)
+2009-12-10 mp: Suche inkl. LMR hinzugefügt (LMR-677)
+2008-04-08 xglettl: DruckOrtschaft und DruckPostort hinzu
+2006-08-24 tsch:
+2006-08-16 tsch: EingeschraenkteHistorie hinzugefügt
+2004-09-28 tsch: BehoerdenNr entfernt
+2004-09-08 tsch: BenutzerName hinzugefügt
+2004-08-17 tsch: Erstellung
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+
+ <xsd:include schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:include schemaLocation="Organisationseinstellungen.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+
+ <xsd:element name="BenutzereinstellungenAbfragenRequest">
+ <xsd:complexType>
+ <xsd:annotation>
+ <xsd:documentation>Leerer Request, die Identifikation des Benutzers wird aus den Logindaten gewonnen</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BenutzereinstellungenAbfragenResponse">
+ <xsd:annotation>
+ <xsd:documentation>Benutzereinstellungsdaten des abfragenden Benutzers.</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="Benutzereinstellungen" minOccurs="1"/>
+ <xsd:element ref="Organisationseinstellungen" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BenutzereinstellungenAendernRequest">
+ <xsd:complexType>
+ <xsd:annotation>
+ <xsd:documentation>geaenderte Benutzereinstellungen</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="Benutzereinstellungen" minOccurs="1"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BenutzereinstellungenAendernResponse">
+ <xsd:annotation>
+ <xsd:documentation>Benutzereinstellungsdaten des abfragenden Benutzers.</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="Benutzereinstellungen" minOccurs="1"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="Benutzereinstellungen">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="Benutzer" minOccurs="0"/>
+ <xsd:element name="BenutzerName" type="BenutzerNameType" minOccurs="0"/>
+ <xsd:element ref="GemeindeNr" minOccurs="0"/>
+ <xsd:element ref="AnzahlSaetze" minOccurs="0"/>
+ <xsd:element name="SucheInclusivHistorie" type="xsd:boolean" minOccurs="0"/>
+ <xsd:element name="SucheFormalisiert" type="xsd:boolean" minOccurs="0"/>
+ <xsd:element name="SucheInclusivERnP" type="xsd:boolean" minOccurs="0"/>
+ <xsd:element name="SucheInclusivZMR" type="xsd:boolean" minOccurs="0"/>
+ <xsd:element name="SucheInclusivLMR" type="xsd:boolean" minOccurs="0"/>
+ <xsd:element name="SucheMitTeilnamen" type="xsd:boolean" minOccurs="0"/>
+ <xsd:element name="ErgebnisInclusivHistorie" type="xsd:boolean" minOccurs="0"/>
+ <xsd:element name="EingeschraenkteHistorie" type="xsd:boolean" minOccurs="0"/>
+ <xsd:element name="DruckOrtschaft" type="xsd:boolean" minOccurs="0"/>
+ <xsd:element name="DruckPostort" type="xsd:boolean" minOccurs="0"/>
+ <xsd:element ref="DruckZusatztext" minOccurs="0" maxOccurs="20"/>
+ <xsd:element ref="cio:ISOCode3" minOccurs="0" maxOccurs="2"/>
+ <xsd:element name="FarbigesMenue" type="xsd:boolean" minOccurs="0"/>
+ <xsd:element name="DefaultGemeindeNrSucheInclLMR" type="GemeindeNrType" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/allgemein/GeschaeftsprozesseAuflisten.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/allgemein/GeschaeftsprozesseAuflisten.xsd new file mode 100644 index 00000000..34f8354c --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/allgemein/GeschaeftsprozesseAuflisten.xsd @@ -0,0 +1,64 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: GeschaeftsprozesseAuflisten.xsd
+Zweck: Definiert Datentypen die Abfrage der im ZMR für den aktuellen User verfügbaren Geschaeftsprozesse
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2015-05-20 xwelzl: ZMR-2194 Application-BuildID online abrufbar
+2008-12-11 teo: NCR-493 Anzeige der Versionen für das Deployment
+2004-09-09 tsch: VorgangRestriction hinzugefügt
+2004-08-17 tsch: Erstellung
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+
+ <xsd:include schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+
+ <xsd:element name="WorkflowsAuflistenRequest">
+ <xsd:annotation>
+ <xsd:documentation>
+ Request zum Auflisten der für den aktiven User verfügbaren Geschäftsprozesse.
+ Dieses Feld wird, genauso wie z.B. PersonSuchenRequest, innerhalb eines base:Request geschickt.
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="WorkflowsAuflistenResponse">
+ <xsd:annotation>
+ <xsd:documentation>
+ Enthält die Liste mit den für den User verfügbaren Geschäftsprozessen, sowie deren Sub-Prozesse (Vorgänge)
+ als Baumstruktur aufgebaut. Ein eintrag in der Liste enspricht einem Geschäftsprozess.
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="Workflow" minOccurs="0" maxOccurs="unbounded">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="ProzessName" />
+ <xsd:element ref="ProzessAnzeigeName" minOccurs="0" />
+ <xsd:element ref="ProzessStatus" />
+ <xsd:element ref="VorgangRestriction" minOccurs="0" maxOccurs="unbounded" />
+ <xsd:element ref="Subprozess" minOccurs="1" maxOccurs="unbounded" />
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="WorkflowCreated" type="TimestampType" minOccurs="0" />
+ <xsd:element name="WorkflowLastUpdate" type="TimestampType" minOccurs="0" />
+ <xsd:element name="ApplicationBuildID" type="xsd:string" minOccurs="0" maxOccurs="unbounded" />
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/allgemein/Messages.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/allgemein/Messages.xsd new file mode 100644 index 00000000..47dcda53 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/allgemein/Messages.xsd @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Messages.xsd
+Zweck: Definiert die Message-Datentypen fuer Services Request und Response (siehe Service.wsdl)
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2012-08-09 xfu: +BasTabelleAbfrage.xsd
+2004-02-18 tsch: Erstellung
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:include schemaLocation="../eingebunden/InfoTechnisch.xsd"/>
+ <xsd:include schemaLocation="../eingebunden/Workflow.xsd"/>
+ <xsd:include schemaLocation="Benutzereinstellungen.xsd"/>
+ <xsd:include schemaLocation="Organisationseinstellungen.xsd"/>
+ <xsd:include schemaLocation="GeschaeftsprozesseAuflisten.xsd"/>
+ <xsd:include schemaLocation="Auswertungen.xsd"/>
+ <xsd:include schemaLocation="BasTabelleAbfrage.xsd"/>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/allgemein/Organisationseinstellungen.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/allgemein/Organisationseinstellungen.xsd new file mode 100644 index 00000000..b5058e1b --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/allgemein/Organisationseinstellungen.xsd @@ -0,0 +1,151 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Organisationseinstellungen.xsd
+Zweck: Definiert Datentypen für Organisationseinstellungen -Abfragen und Änderungen im ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2009-06-18 teo: Einstellungen für Messenger hinzugefügt
+2005-02-10 tsch: Feld ParameterCode hinzugefügt
+2004-08-17 tsch: Erstellung
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+
+ <xsd:include schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+
+ <xsd:element name="OrganisationseinstellungenAendernRequest">
+ <xsd:complexType>
+ <xsd:annotation>
+ <xsd:documentation>geaenderte Benutzereinstellungen</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="Organisationseinstellungen" minOccurs="1"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="OrganisationseinstellungenAendernResponse">
+ <xsd:annotation>
+ <xsd:documentation>Benutzereinstellungsdaten des abfragenden Benutzers.</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="Organisationseinstellungen" minOccurs="1"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="Organisationseinstellungen">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="BehoerdenNr" minOccurs="0"/>
+ <xsd:element name="KontaktOrganisation" minOccurs="0">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="KontaktPerson" minOccurs="0"/>
+ <xsd:element ref="KontaktEmail" minOccurs="0"/>
+ <xsd:element ref="KontaktTelefon" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="KontaktTechnisch" minOccurs="0">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="KontaktPerson" minOccurs="0"/>
+ <xsd:element ref="KontaktEmail" minOccurs="0"/>
+ <xsd:element ref="KontaktTelefon" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="Softwarepartner" minOccurs="0">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="45"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element ref="DruckZusatztext" minOccurs="0" maxOccurs="20"/>
+ <xsd:element name="AbgleichZMR" type="xsd:boolean" minOccurs="0"/>
+ <xsd:element name="AbgleichZMR2" type="xsd:boolean" minOccurs="0"/>
+ <xsd:element ref="Batchvorgaben" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="MessengerEinstellungen" minOccurs="0">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="ZugriffUeberAuswertungen" type="xsd:boolean" minOccurs="0"/>
+ <xsd:element name="Empfaenger" type="BenutzerType" minOccurs="0" maxOccurs="3"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+
+ <xsd:element name="Batchvorgaben" type="BatchvorgabenType"/>
+ <xsd:complexType name="BatchvorgabenType">
+ <xsd:sequence>
+ <xsd:element name="Batchname">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="20"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="Filegroesse" type="IntegerType" minOccurs="0"/>
+ <xsd:element name="FileformatXML" type="xsd:boolean" minOccurs="0"/>
+ <xsd:element name="FileformatCSV" type="xsd:boolean" minOccurs="0"/>
+ <xsd:element name="FileformatPDF" type="xsd:boolean" minOccurs="0"/>
+ <xsd:element name="FileformatXLS" type="xsd:boolean" minOccurs="0"/>
+ <xsd:element ref="BatchParameter" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="BatchParameter" type="BatchParameterType"/>
+ <xsd:complexType name="BatchParameterType">
+ <xsd:sequence>
+ <xsd:element name="ParameterTyp" type="xsd:string" minOccurs="0"/>
+ <xsd:element name="ParameterCode" type="xsd:string"/>
+ <xsd:element name="ParameterName" type="xsd:string"/>
+ <xsd:element name="ParameterWert" type="xsd:string"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="KontaktPerson">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="45"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="KontaktEmail">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="45"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="KontaktTelefon">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="18"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/allgemein/Service.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/allgemein/Service.xsd new file mode 100644 index 00000000..81cd3e80 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/allgemein/Service.xsd @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Name: Service.xsd
+Zweck: Definiert die Serviceroot - Elemente base:Request und base:Response global
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2008-07-25 teo: +PDFResponse (optional! ZMR setzt dieses Feld bisher nicht!)
+2004-08-19 tsch: Erstellung
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:include schemaLocation="Messages.xsd"/>
+ <xsd:include schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+
+ <xsd:element name="Request">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="WorkflowInfoClient"/>
+ <xsd:element ref="ClientInfo"/>
+ <xsd:any processContents="lax"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="Response">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="WorkflowInfoServer"/>
+ <xsd:element name="PDFResponse" type="xsd:base64Binary" minOccurs="0"/>
+ <xsd:element ref="ServerInfo"/>
+ <xsd:any processContents="lax"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/AbfrageMuster.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/AbfrageMuster.xsd new file mode 100644 index 00000000..c7163abe --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/AbfrageMuster.xsd @@ -0,0 +1,140 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: AbfrageParameter.xsd
+Zweck: Definiert Datentypen für generische Suchabfragen mit simplen Operatoren
+Author(s): Tschurtschenthaler Thomas (basierend auf suchmuster.xsd von DI Heinz Töfferl - Comm-Unity Software Development GmbH & Co KG)
+Aenderungshistorie:
+2005-03-30 tsch: Erstellung
+-->
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+ <xsd:element name="AbfrageMuster">
+ <xsd:annotation>
+ <xsd:documentation>Daten zu einem Suchmuster (Ausdruck)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:choice>
+ <xsd:sequence>
+ <xsd:element ref="FeldAbfrage"/>
+ <xsd:element ref="SubFeldAbfrage" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ <xsd:sequence>
+ <xsd:annotation>
+ <xsd:documentation>
+ Dient zur Klammerung von Suchmuster-Ausdrücken.
+ Muss erst dann unterstützt werden, wenn eine Klammerung nötig wird.
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:element ref="AbfrageMuster"/>
+ <xsd:element ref="SubAbfrageMuster" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:choice>
+ <xsd:attribute name="AbfrageName" type="xsd:string" use="optional"/>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="FeldAbfrage">
+ <xsd:annotation>
+ <xsd:documentation>Eine Sucheinschränkung (= Einschränkung für ein Feld)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="Feld" type="xsd:string"/>
+ <xsd:element ref="Relation"/>
+ <xsd:element name="Wert" type="xsd:string"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="Operation" block="restriction" default="UND">
+ <xsd:annotation>
+ <xsd:documentation>Verknüpfung mit der nächsten Zeile (Default: AND)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:NMTOKEN">
+ <xsd:enumeration value="UND"/>
+ <xsd:enumeration value="ODER"/>
+ <xsd:enumeration value="ODER_SELF"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="Relation">
+ <xsd:annotation>
+ <xsd:documentation>Mögliche Vergleichsoperatoren.</xsd:documentation>
+ </xsd:annotation>
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="IST"/>
+ <xsd:enumeration value="IST NICHT"/>
+ <xsd:enumeration value="BEGINNT MIT"/>
+ <xsd:enumeration value="BEGINNT NICHT MIT"/>
+ <xsd:enumeration value="ENDET MIT"/>
+ <xsd:enumeration value="ENDET NICHT MIT"/>
+ <xsd:enumeration value="GRÖSSER ALS"/>
+ <xsd:enumeration value="GRÖSSER GLEICH"/>
+ <xsd:enumeration value="KLEINER ALS"/>
+ <xsd:enumeration value="KLEINER GLEICH"/>
+ <xsd:enumeration value="ENTHÄLT"/>
+ <xsd:enumeration value="ENTHÄLT NICHT"/>
+ <xsd:enumeration value="IST LEER"/>
+ <xsd:enumeration value="IST NICHT LEER"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="AbfrageSortierung">
+ <xsd:annotation>
+ <xsd:documentation>Daten zur Sortierung einer Abfrage</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="SortSchluessel" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="SortSchluessel">
+ <xsd:annotation>
+ <xsd:documentation>Sortierungsschluessel einer Abfrage</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="Feld" type="xsd:string"/>
+ <xsd:element name="Absteigend" type="xsd:boolean"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="SubFeldAbfrage">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="Operation"/>
+ <xsd:element ref="FeldAbfrage"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="SubAbfrageMuster">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="Operation"/>
+ <xsd:element ref="AbfrageMuster"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AbfrageParameter">
+ <xsd:annotation>
+ <xsd:documentation>Daten zur Parametrisierung einer Abfrage</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="Parameter" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="Parameter">
+ <xsd:annotation>
+ <xsd:documentation>Ein einzelner Abfrageparameter</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="Name" type="xsd:string"/>
+ <xsd:element name="Wert" type="xsd:string"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+</xsd:schema>
diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/AkademischerGradFelder.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/AkademischerGradFelder.xsd new file mode 100644 index 00000000..da73c389 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/AkademischerGradFelder.xsd @@ -0,0 +1,61 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: AkademischerGradFelder.xsd
+Zweck: Definiert allgemein nutzbare Felder für akademische Grade
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2004-12-15 tsch: AkadGradReihung - Wertebereich erweitert
+2004-06-20 tsch: Erstellung
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:include schemaLocation="SimpleTypes.xsd"/>
+
+ <xsd:element name="AkadGradStellung">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="VOR"/>
+ <xsd:enumeration value="NACH"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="AkadGradReihung">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="0"/>
+ <xsd:enumeration value="1"/>
+ <xsd:enumeration value="2"/>
+ <xsd:enumeration value="2/3"/>
+ <xsd:enumeration value="3"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="AkadGradLang">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="90"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="AkadGradKurz">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="30"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="AkadGradKey" type="IDType"/>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/Blaettern.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/Blaettern.xsd new file mode 100644 index 00000000..943439b8 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/Blaettern.xsd @@ -0,0 +1,56 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Blaettern.xsd
+Zweck: Definiert Request-Typen für das allgemeine Blättern; Die Response hängt vom Workflow-Vorgang ab (Personensuchergebnis, Avisosuchergebnis, ...)
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2006-04-19 toef: Richtungswerte 'Anfang' und 'Ende' hinzugefügt
+2005-09-20 tsch: Richtungswert 'Aktualisieren' hinzugefügt
+2004-06-14 tsch: Organisation nach ClientInfo verschoben
+2004-04-07 tsch: Erstellung
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+ <xsd:include schemaLocation="InfoFachlich.xsd"/>
+
+ <xsd:element name="BlaetternRequest">
+ <xsd:annotation>
+ <xsd:documentation>
+ Für Suchvorgänge, in deren Ergebnisliste geblättert werden kann, stellt dieser Request
+ eine generische Schnittstelle zum Blättern dar. Er wird mit demselben Vorgang-Namen in der
+ Workflowschnittstelle geschickt, wie der ursprüngliche Suche-Request. Als Ergebnis wird
+ das Suchergebnis des ensprechenden Suchvorgangs analog zur rsprünglichen Suche-Response geliefert.
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="BlaetternInfo"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BlaetternInfo">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="ErgebnislisteName" type="xsd:string" minOccurs="0"/>
+ <xsd:element name="Richtung">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="Vor"/>
+ <xsd:enumeration value="Zurueck"/>
+ <xsd:enumeration value="Aktualisieren"/>
+ <xsd:enumeration value="Anfang"/>
+ <xsd:enumeration value="Ende"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element ref="AnzahlSaetze"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/DokumentFelder.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/DokumentFelder.xsd new file mode 100644 index 00000000..0c38ec09 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/DokumentFelder.xsd @@ -0,0 +1,74 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: DokumentFelder.xsd
+Zweck: Definiert allgemein nutzbare Felder für Dokumente/Reisedokumente
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2005-09-26 tsch: DokumentName hinzugefügt
+2004-09-29 tsch: Felder für Standard-Dokumente hinzugefügt
+2004-06-24 tsch: AusstellDatum: Timestamp wird xsd:date
+2004-01-22 tsch: Erstellung
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:include schemaLocation="SimpleTypes.xsd"/>
+
+ <xsd:element name="DokumentArt">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="55"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="DokumentNummer">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="256"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="EintragungsNummer">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="45"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="DokumentName">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="54"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="AusstellDatum" type="xsd:date"/>
+ <xsd:element name="AblaufDatum" type="xsd:date"/>
+ <xsd:element name="SterbeDatum" type="xsd:date"/>
+ <xsd:element name="SterbeUhrzeit" type="xsd:time"/>
+ <xsd:element name="AusstellBehoerde">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="90"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="Ausstellungsstaat" type="StaatenNameType"/>
+ <xsd:element name="DokumentGiltBis" type="TimestampType"/>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/EingebundenProxy.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/EingebundenProxy.xsd new file mode 100644 index 00000000..de80a94f --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/EingebundenProxy.xsd @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Name: EingebundenProxy.xsd
+Zweck: Fasst XSD-Files zusammen, die oft eingebunden werden
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2009-07-07 teo: +PersonExport
+2003-12-10 tsch: Erstellung
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:include schemaLocation="InfoFachlich.xsd"/>
+ <xsd:include schemaLocation="InfoTechnisch.xsd"/>
+ <xsd:include schemaLocation="MeldungFelder.xsd"/>
+ <xsd:include schemaLocation="PersonFelder.xsd"/>
+ <xsd:include schemaLocation="DokumentFelder.xsd"/>
+ <xsd:include schemaLocation="Workflow.xsd"/>
+ <xsd:include schemaLocation="Blaettern.xsd"/>
+ <xsd:include schemaLocation="AkademischerGradFelder.xsd"/>
+ <xsd:include schemaLocation="AbfrageMuster.xsd"/>
+ <xsd:include schemaLocation="PersonExport.xsd"/>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/Entity.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/Entity.xsd new file mode 100644 index 00000000..a5fbac59 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/Entity.xsd @@ -0,0 +1,135 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Entity.xsd
+Zweck: Definiert allgemeine Datentypen für Entities (Person, Meldung, ...) der Register
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2012-08-09 xfu: Beginncode und -text ist optional
+2004-10-27 tsch: Behoerdenschluessel hinzugefügt
+2004-09-28 tsch: OrgBezeichnung hinzugefügt
+2004-06-21 tsch: EntityReferenz ohne LetzteAenderung
+2004-06-18 tsch: BeginnText hinzugefügt
+2004-01-22 tsch: EntityErgebnisReferenz statt Entity abstract
+2003-11-16 tsch: Erstellung
+-->
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:include schemaLocation="SimpleTypes.xsd"/>
+
+ <xsd:element name="EntityErgebnisReferenz" type="EntityErgebnisReferenzType"/>
+ <xsd:complexType name="EntityErgebnisReferenzType">
+ <xsd:annotation>
+ <xsd:documentation>Referenziert eine Entity in der Datenbank für Suchergebnisse</xsd:documentation>
+ </xsd:annotation>
+
+ <xsd:sequence>
+ <xsd:sequence>
+ <xsd:element ref="Technisch"/>
+ <xsd:group ref="ErgebnisFachlichGroup"/>
+ </xsd:sequence>
+ </xsd:sequence>
+
+ </xsd:complexType>
+
+ <xsd:element name="EntityReferenz" type="EntityReferenzType"/>
+ <xsd:complexType name="EntityReferenzType">
+ <xsd:annotation>
+ <xsd:documentation>Referenziert eine Entity in der Datenbank für Aenderungen (immer die aktuellste, das heisst jüngstes 'Von')</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="EntityID"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="Technisch">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="EntityID"/>
+ <xsd:element ref="LetzteAenderung"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:group name="ErgebnisFachlichGroup">
+ <xsd:sequence>
+ <xsd:element ref="Von"/>
+ <xsd:element ref="BeginnCode" minOccurs="0"/> <!-- Einträge in BAS.STAAT und BAS.AKADGRAD haben keinen Beginncode (werden aber in BasTabelleAbfrage.xsd abgerufen) -->
+ <xsd:element ref="BeginnText" minOccurs="0"/>
+ <xsd:element ref="BeginnFreitext" minOccurs="0"/>
+ <xsd:element ref="Bis" minOccurs="0"/>
+ <xsd:element ref="DurchgefuehrtVon"/>
+ </xsd:sequence>
+ </xsd:group>
+
+ <xsd:element name="Von" type="TimestampType"/>
+ <xsd:element name="Bis" type="TimestampType"/>
+ <xsd:element name="BeginnCode" type="GrundCodeType"/>
+ <xsd:element name="BeginnText" type="GrundTextType"/>
+ <xsd:element name="BeginnFreitext" type="GrundFreitextType"/>
+ <xsd:element name="EntityID" type="ENTITYIDType"/>
+ <xsd:element name="LetzteAenderung" type="TimestampType"/>
+ <xsd:element name="DurchgefuehrtVon" type="DurchgefuehrtVonType"/>
+ <xsd:complexType name="DurchgefuehrtVonType">
+ <xsd:sequence>
+ <xsd:element ref="Organisation"/>
+ <xsd:element ref="Benutzer" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="Organisation">
+ <xsd:complexType>
+ <xsd:annotation>
+ <xsd:documentation>
+ Die derzeit bekannten Organisationen sind strikt definiert (BehoerdenNr, GemeindeNr, KundenNr);
+ neue, noch nicht definierte Organiationen, können mittels eines (Orgtyp, OrgCode)-Paares übermittelt werden.
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:choice>
+ <xsd:choice>
+ <xsd:element ref="BehoerdenNr"/>
+ <xsd:element ref="GemeindeNr"/>
+ <xsd:element ref="KundenNr"/>
+ <xsd:element ref="Behoerdenschluessel"/>
+ </xsd:choice>
+ <xsd:sequence>
+ <xsd:element ref="OrgTyp"/>
+ <xsd:element ref="OrgCode"/>
+ </xsd:sequence>
+ </xsd:choice>
+ <xsd:element ref="OrgBezeichnung" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="BehoerdenNr" type="BehoerdenNrType"/>
+ <xsd:element name="Behoerdenschluessel" type="BehoerdenschluesselType"/>
+ <xsd:element name="GemeindeNr" type="GemeindeNrType"/>
+ <xsd:element name="KundenNr" type="KundenNrType"/>
+ <xsd:element name="OrgTyp" type="OrgTypType"/>
+ <xsd:element name="OrgCode" type="OrgCodeType"/>
+ <xsd:element name="Benutzer" type="BenutzerType"/>
+ <xsd:element name="OrgBezeichnung">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="80"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="BehoerdenBezeichnung">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="80"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+</xsd:schema>
diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/InfoFachlich.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/InfoFachlich.xsd new file mode 100644 index 00000000..20212cc2 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/InfoFachlich.xsd @@ -0,0 +1,103 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: InfoFachlich.xsd
+Zweck: Definiert Typen für allgemeine fachliche Informationen der Usecases
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2006-08-08 tsch: Feld EingeschraenkteHistorie hinzugefügt
+2004-09-09 tsch: Register hinzugefügt
+2004-07-07 tsch: InfoFachlichType.Von optional, InfoFachlichType.GrundCode Mussfeld
+2004-06-22 tsch: SaetzeVon, SaetzeBis hinzugefügt
+2004-06-18 tsch: ErgebnissatzInfo, Beendigung hinzugefügt
+2004-04-17 tsch: Organisation entfernt
+2004-04-13 tsch: InfoFachlichType - GrundCode optional
+2003-11-16 tsch: Erstellung
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+ <xsd:include schemaLocation="SimpleTypes.xsd"/>
+ <xsd:include schemaLocation="Entity.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="PersonDataZMR.xsd"/>
+
+ <xsd:element name="ErgebnissatzInfo" type ="ErgebnissatzInfoType"/>
+ <xsd:complexType name="ErgebnissatzInfoType">
+ <xsd:sequence>
+ <xsd:annotation>
+ <xsd:documentation>
+ Letze-Änderung-Timestamp des Gesamt-Satzes (Jüngster Timestamp aller Entities im Satz),
+ Muss bei einem Änderungsvorgang als Letzte-Änderung-Timestamp geschickt werden.
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:element ref="LetzteAenderung"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="Message">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="Number"/>
+ <xsd:element ref="Text"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="Number" type="IntegerType"/>
+ <xsd:element name="Text">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="250"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:complexType name="InfoFachlichType" abstract="true">
+ <xsd:annotation>
+ <xsd:documentation>allgemeine fachliche Informationen</xsd:documentation>
+ </xsd:annotation>
+
+ <xsd:sequence>
+ <xsd:element ref="Von" minOccurs="0"/>
+ <xsd:element name="GrundCode" type="GrundCodeType"/>
+ <xsd:element ref="GrundFreitext" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="BPKPersonInfo" type="BPKPersonInfoType"/>
+ <xsd:complexType name="BPKPersonInfoType">
+ <xsd:annotation>
+ <xsd:documentation>Bereichspezifische Bürgerkarten-Information einer Person</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="cio:NatuerlichePerson"/>
+ <xsd:element ref="Bereichskennung"/>
+ <xsd:element ref="BPK"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="Beendigung" type="xsd:boolean"/>
+ <xsd:element name="Bezugsfeld" type="BezugsfeldType"/>
+
+ <xsd:element name="Stichtag" type="TimestampType"/>
+ <xsd:element name="InclusivHistorie" type="xsd:boolean"/>
+ <xsd:element name="EingeschraenkteHistorie" type="xsd:boolean"/>
+ <xsd:element name="Formalisiert" type="xsd:boolean"/>
+ <xsd:element name="ErstellePDF" type="xsd:boolean"/>
+ <xsd:element name="InclusivAusgeblendeteSaetze" type="xsd:boolean"/>
+ <xsd:element name="InclusivNameVorErsterEhe" type="xsd:boolean"/>
+ <xsd:element name="GefundeneSaetze" type="IntegerType"/>
+ <xsd:element name="AnzahlSaetze" type="IntegerType"/>
+ <xsd:element name="SaetzeVon" type="IntegerType"/>
+ <xsd:element name="SaetzeBis" type="IntegerType"/>
+ <xsd:element name="GrundFreitext" type="GrundFreitextType"/>
+ <xsd:element name="Bereichskennung" type="xsd:string"/>
+ <xsd:element name="BPK" type="xsd:string"/>
+ <xsd:element name="Register" type="RegisterType"/>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/InfoTechnisch.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/InfoTechnisch.xsd new file mode 100644 index 00000000..e23ff4fe --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/InfoTechnisch.xsd @@ -0,0 +1,103 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: InfoTechnisch.xsd
+Zweck: Definiert Typen für allgemeine technische Informationen der Usecases
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2004-09-09 tsch: ErrorCode, ErrorMessage hinzugefügt
+2004-06-24 tsch: UserInfo als Message definiert
+2004-05-17 tsch: Organisation, Client dazugefügt; Softwarehaus, ClientVersion entfernt
+2003-11-16 tsch: Erstellung
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+ <xsd:include schemaLocation="InfoFachlich.xsd"/>
+
+ <xsd:element name="ClientInfo" type="ClientInfoType"/>
+
+ <xsd:complexType name="ClientInfoType">
+ <xsd:annotation>
+ <xsd:documentation>Technische Client-Informationen</xsd:documentation>
+ </xsd:annotation>
+
+ <xsd:sequence>
+ <xsd:element ref="Organisation"/>
+ <xsd:element ref="Client">
+ <xsd:annotation>
+ <xsd:documentation>Herstellername der Client-Software inklusive Version (Bsp.: ZMRHTMLClient V3.0)</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="Client">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="18"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+
+ <xsd:element name="ServerInfo" type="ServerInfoType"/>
+
+ <xsd:complexType name="ServerInfoType">
+ <xsd:annotation>
+ <xsd:documentation>Technische Server-Informationen</xsd:documentation>
+ </xsd:annotation>
+
+ <xsd:sequence>
+ <xsd:element ref="GeneriertVon">
+ <xsd:annotation>
+ <xsd:documentation>Applikationsname und -version</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="GeneriertAm">
+ <xsd:annotation>
+ <xsd:documentation>Generierung Timestamp</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="ServerTransaktionNr">
+ <xsd:annotation>
+ <xsd:documentation>Transaktionsnummer des Servers</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="UserInfo" minOccurs="0">
+ <xsd:annotation>
+ <xsd:documentation>
+ Enthält neue User-Information (wie z.B. Information über Wartungarbeiten am ZMR)
+ Diese Info kann dem User am Bildschirm angezeigt werden.
+ </xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="GeneriertVon">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="50"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="GeneriertAm" type="TimestampType"/>
+ <xsd:element name="ErrorCode" type="xsd:string"/>
+ <xsd:element name="ErrorMessage" type="xsd:string"/>
+ <xsd:element name="ServerTransaktionNr" type="IDType"/>
+ <xsd:element name="UserInfo">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="Message"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/MeldungFelder.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/MeldungFelder.xsd new file mode 100644 index 00000000..2179baaf --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/MeldungFelder.xsd @@ -0,0 +1,283 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: MeldungFelder.xsd
+Zweck: Definiert allgemein nutzbare Felder für Meldedaten
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2010-11-24 mp: +Infotext (ZMR-1513)
+2009-11-20 mp: Gebäudeeigenschaft und Nutzungsart hinzugefügt
+2006-06-26 tsch: OrientierungsnummerBis hinzugefügt
+2005-12-06 tsch: Detailfelder für GWR-Tueren hinzugefügt
+2004-12-09 tsch: OKZ und SKZ alphanumerisch
+2004-08-16 tsch: Bezirkskennung, DruckZusatztext hinzugefügt
+2004-08-02 tsch: PeriodeCode, PeriodeText, PeriodeFreitext hinzugefügt
+2004-07-30 tsch: HauptIdentadresse->HauptIdent; AdressZusatz enfernt; +OKZ; +SKZ; +Adressschluessel; +InfoMeldewesen
+2004-06-24 tsch: GBRRefkey, Postleitzahlgebiet hinzugefügt
+2004-01-27 tsch: Erstellung
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+ <xsd:include schemaLocation="SimpleTypes.xsd"/>
+
+
+ <xsd:element name="GemeldetVon" type="TimestampType"/>
+ <xsd:element name="GemeldetBis" type="TimestampType"/>
+
+ <xsd:element name="PeriodeCode" type="GrundCodeType"/>
+ <xsd:element name="PeriodeText" type="GrundTextType"/>
+ <xsd:element name="PeriodeFreitext" type="GrundFreitextType"/>
+
+ <xsd:element name="Unterkunftgeber">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="250"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="ADRRefkey">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="12"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="GBRRefkey">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="12"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="HauptIdent">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="H"/>
+ <xsd:enumeration value="I"/>
+ <xsd:enumeration value="B"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="OKZ">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:pattern value="[0-9;A-Z]{5}"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="SKZ">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:pattern value="[0-9;A-Z]{6}"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="Adressstatus">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="9"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="Hofname">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="50"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="StrasseZweisprachig">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="108"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="Gebaeudeunterscheidung">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="60"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="Postleitzahlgebiet">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="54"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="InfoMeldewesen">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="100"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="GBDUntteil" type="xsd:boolean"/>
+
+ <xsd:element name="NameZuteil" type="xsd:boolean"/>
+
+ <xsd:element name="Adressschluessel">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="OKZ" minOccurs="0"/>
+ <xsd:element ref="SKZ" minOccurs="0"/>
+ <xsd:element ref="ADRRefkey" minOccurs="0"/>
+ <xsd:element ref="GBRRefkey" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="Bezirkskennung">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:pattern value="[0-9]{3}"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="DruckZusatztext">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="230"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="Infotext">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="230"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="TuerNr">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="25"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="TopNr">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="25"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="Lagebeschreibung">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="25"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="NtzLage">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="1"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="NtzStock">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="3"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="NtzAdrart">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="1"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="OrientierungsnummerBis">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="32"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="GbdEigenschaft">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="2"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="NtzArt">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="2"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/PersonDataZMR.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/PersonDataZMR.xsd new file mode 100644 index 00000000..d5d2df47 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/PersonDataZMR.xsd @@ -0,0 +1,741 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: PersonDataZMR.xsd
+Zweck: Striktere Redefinition des Generischen Schemas zum Speichern und Austauschen von Personendaten des Chief Information Office Austria, Stabsstelle IKT-Strategie des Bundes, BMÖLS
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2012-04-12 ee : element "Adresse" entfernt, substitutionGroups darauf entfernt
+ -> mit wsdl2java wieder kompilierbar, sonst "Adresse is referenced but not defined." error
+2010-07-09 rp : LMR-783: +GueltigVon, GueltigBis bei Staatsangehoerigkeit
+2009-11-25 teo : ZMR-1296 Anpassungen aufgrund Bundesgesetz über die eingetragene Partnerschaft (EPG)
+2006-04-18 woeg: Familienstand
+2005-09-26 tsch: Internetadresse, Telefonadresse übernommen, Postleitzahl alphanumerisch
+2004-01-31 tsch: maximale Feldlänge für Geburtsbundesland auf 72 erhöht, minimale auf 0.
+2004-12-09 tsch: Adresscode und Objektnummer alphanumerisch, Postleitzahl mit führender Null
+2004-11-02 tsch: Elemenent Affix in PersonenNameTyp Unbounded
+2004-08-24 tsch: Element PersonenDaten übernommen
+2004-07-30 tsch: Anpassungen von Personrecord-Feldern: +Adresszeile; Gebaeudeteil->Gebaeude; Nutzungseinheitnummer->Nutzungseinheit; NTZLNR->Nutzungseinheitlaufnummer; +Postfach; AdressRegEintrag->AdressRegisterEintrag;Gemeindekennzahl->Gemeindekennziffer
+2004-07-20 tsch: Staatsangehörigkeit-Felder optional
+2004-07-08 tsch: Region (Postleitzahlgebiet) hinzugefügt
+2004-06-24 tsch: StaatsCode, StaatsName in Postadresse übernommen
+2004-01-28 tsch: Adaptionen an neuen CIO-PersonDataDE Record
+2004-01-27 tsch: ZMRAdresse wird PostAdresse
+2004-01-15 tsch: Erstellung
+-->
+
+<xsd:schema targetNamespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" xmlns="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+ <xsd:import namespace="http://www.w3.org/2000/09/xmldsig#" schemaLocation="W3C-XMLDSig.xsd"/>
+ <xsd:annotation>
+ <xsd:documentation>This version of person deploys only global elements. All types derived from abstract types have been replaced by substitution groups</xsd:documentation>
+ </xsd:annotation>
+
+ <xsd:element name="Identification" type="IdentificationType">
+ <xsd:annotation>
+ <xsd:documentation>unique identification entities</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:complexType name="IdentificationType">
+ <xsd:annotation>
+ <xsd:documentation>unique identifier</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element name="Value" type="xsd:string">
+ <xsd:annotation>
+ <xsd:documentation>actual value of the identifier.</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element name="Type" type="xsd:anyURI">
+ <xsd:annotation>
+ <xsd:documentation>type of value (eg 'ZMR', 'SV-Nummer', 'Martrikelnummer', database identification, ...)</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded">
+ <xsd:annotation>
+ <xsd:documentation>zusätzliche felder</xsd:documentation>
+ </xsd:annotation>
+ </xsd:any>
+ </xsd:sequence>
+ </xsd:complexType>
+
+
+ <xsd:element name="PersonenDaten" type="PersonenDatenTyp">
+ <xsd:annotation>
+ <xsd:documentation>Personendatenstruktur</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+
+ <xsd:complexType name="PersonenDatenTyp">
+ <xsd:sequence>
+ <xsd:element ref="NatuerlichePerson"/>
+ <xsd:element ref="PostAdresse" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+
+ <xsd:element name="NatuerlichePerson" type="NatuerlichePersonTyp" substitutionGroup="Person">
+ <xsd:annotation>
+ <xsd:documentation>element of physical person type</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element name="Person" type="AbstractPersonType">
+ <xsd:annotation>
+ <xsd:documentation>element of person type</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+
+ <xsd:complexType name="AbstractPersonType" abstract="true">
+ <xsd:annotation>
+ <xsd:documentation>main structure of person data</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence minOccurs="0">
+ <xsd:element name="Identification" type="IdentificationType" minOccurs="0" maxOccurs="unbounded">
+ <xsd:annotation>
+ <xsd:documentation>unique identification entities</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ </xsd:sequence>
+ <xsd:attribute name="Id" type="xsd:ID" use="optional"/>
+ <xsd:anyAttribute namespace="##other"/>
+ </xsd:complexType>
+
+ <xsd:complexType name="NatuerlichePersonTyp">
+ <xsd:annotation>
+ <xsd:documentation>physical person</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexContent>
+ <xsd:extension base="AbstractPersonType">
+ <xsd:sequence minOccurs="0">
+ <xsd:element ref="PersonenName" minOccurs="0"/>
+ <xsd:element ref="AlternativName" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element ref="Familienstand" minOccurs="0"/>
+ <xsd:element ref="Geschlecht" minOccurs="0"/>
+ <xsd:element ref="Geburtsdatum" minOccurs="0"/>
+ <xsd:element ref="Geburtsort" minOccurs="0"/>
+ <xsd:element ref="Geburtsbundesland" minOccurs="0"/>
+ <xsd:element ref="Geburtsstaat" minOccurs="0"/>
+ <xsd:element ref="Sterbedatum" minOccurs="0"/>
+ <xsd:element ref="Staatsangehoerigkeit" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded">
+ <xsd:annotation>
+ <xsd:documentation>any additional properties</xsd:documentation>
+ </xsd:annotation>
+ </xsd:any>
+ </xsd:sequence>
+ </xsd:extension>
+ </xsd:complexContent>
+ </xsd:complexType>
+
+ <xsd:element name="AlternativName">
+ <xsd:annotation>
+ <xsd:documentation>Former name, Artist name, changes of Given name ... type of name is given as attribute - choose from list or define new type</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="Familienname">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="108"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ </xsd:sequence>
+ <xsd:attribute name="Type" type="DefinierterAlternativNamensTypTyp" use="required"/>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:simpleType name="DefinierterAlternativNamensTypTyp">
+ <xsd:annotation>
+ <xsd:documentation>known types of alternative names</xsd:documentation>
+ </xsd:annotation>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="Kuenstlername"/>
+ <xsd:enumeration value="Spitzname"/>
+ <xsd:enumeration value="FruehererName"/>
+ <xsd:enumeration value="Alias"/>
+ <xsd:enumeration value="NameVorErsterEhe"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+
+ <xsd:element name="PersonenName" type="PersonenNameTyp"/>
+
+ <xsd:complexType name="PersonenNameTyp">
+ <xsd:sequence>
+ <xsd:element ref="Vorname" minOccurs="0"/>
+ <xsd:element ref="Familienname" minOccurs="0"/>
+ <xsd:element ref="Affix" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+
+ <xsd:element name="Familienname">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="108"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="Vorname" nillable="true">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="108"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="Affix">
+ <xsd:complexType>
+ <xsd:simpleContent>
+ <xsd:extension base="xsd:string">
+ <xsd:attribute name="typ" use="required">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="akademischerGrad"/>
+ <xsd:enumeration value="Adelstitel"/>
+ <xsd:enumeration value="FamiliennamenSuffix"/>
+ <xsd:enumeration value="Anrede"/>
+ <xsd:enumeration value="Generation"/>
+ <xsd:enumeration value="Qualifikation"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:attribute>
+ <xsd:attribute name="position" use="required">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="prefix"/>
+ <xsd:enumeration value="suffix"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:attribute>
+ </xsd:extension>
+ </xsd:simpleContent>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="Sterbedatum">
+ <xsd:simpleType>
+ <xsd:annotation>
+ <xsd:documentation>simple type for dates (union), which may omit day and/or month</xsd:documentation>
+ </xsd:annotation>
+ <xsd:union memberTypes="xsd:date xsd:gYearMonth xsd:gYear"/>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="Geburtsdatum">
+ <xsd:simpleType>
+ <xsd:annotation>
+ <xsd:documentation>simple type for dates (union), which may omit day and/or month</xsd:documentation>
+ </xsd:annotation>
+ <xsd:union memberTypes="xsd:date xsd:gYearMonth xsd:gYear"/>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="Familienstand">
+ <xsd:simpleType>
+ <xsd:annotation>
+ <xsd:documentation>simple type for marital status of a person</xsd:documentation>
+ </xsd:annotation>
+ <xsd:restriction base="xsd:token">
+ <xsd:enumeration value="ledig"/>
+ <xsd:enumeration value="verheiratet"/>
+ <xsd:enumeration value="in eingetragener Partnerschaft lebend"/>
+ <xsd:enumeration value="geschieden"/>
+ <xsd:enumeration value="eingetragene Partnerschaft aufgelöst oder für nichtig erklärt"/>
+<!-- <xsd:enumeration value="aufgelöste eingetragene Partnerschaft"/> -->
+ <xsd:enumeration value="verwitwet"/>
+ <xsd:enumeration value="hinterbliebener eingetragener Partner"/>
+ <xsd:enumeration value="Ehe aufgehoben oder für nichtig erklärt"/>
+ <xsd:enumeration value="unbekannt"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="Geschlecht">
+ <xsd:simpleType>
+ <xsd:annotation>
+ <xsd:documentation>simple type for sex (gender) of person</xsd:documentation>
+ </xsd:annotation>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="50"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="Geburtsort">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="54"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="Geburtsstaat">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="54"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="Geburtsbundesland">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="72"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="Staatsangehoerigkeit">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="ISOCode3" minOccurs="0"/>
+ <xsd:element ref="StaatsnameDE" minOccurs="0"/>
+ <xsd:element ref="StaatsnameEN" minOccurs="0"/>
+ <xsd:element ref="StaatsnameFR" minOccurs="0"/>
+ <xsd:element name="GueltigVon" type="xsd:date" minOccurs="0"/>
+ <xsd:element name="GueltigBis" type="xsd:date" minOccurs="0"/>
+ <xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded">
+ <xsd:annotation>
+ <xsd:documentation>any additional properties</xsd:documentation>
+ </xsd:annotation>
+ </xsd:any>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="StaatsnameDE">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="54"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="StaatsnameEN">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="54"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="StaatsnameFR">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="54"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="PostAdresse" type="PostAdresseTyp" >
+ <xsd:annotation>
+ <xsd:documentation>Post oder ZMR Adresse, entspricht PostalAddress</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:complexType name="AbstractAddressType" abstract="true">
+ <xsd:annotation>
+ <xsd:documentation>main structure of address data</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence minOccurs="0">
+ <xsd:element name="Identification" type="IdentificationType" minOccurs="0" maxOccurs="unbounded">
+ <xsd:annotation>
+ <xsd:documentation>unique identification entities</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ </xsd:sequence>
+ <xsd:attribute name="Id" type="xsd:ID" use="optional"/>
+ <xsd:anyAttribute namespace="##other"/>
+ </xsd:complexType>
+ <xsd:complexType name="PostAdresseTyp">
+ <xsd:annotation>
+ <xsd:documentation>postal address</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexContent>
+ <xsd:extension base="AbstractAddressType">
+ <xsd:sequence>
+ <xsd:element ref="Staatscode" minOccurs="0"/>
+ <xsd:element ref="Staatsname" minOccurs="0"/>
+
+ <xsd:element ref="Postleitzahl" minOccurs="0"/>
+ <xsd:element ref="Region" minOccurs="0"/>
+ <xsd:element ref="Bundesland" minOccurs="0"/>
+ <xsd:element ref="Gemeinde" minOccurs="0"/>
+ <xsd:element ref="Gemeindekennziffer" minOccurs="0"/>
+ <xsd:element ref="Ortschaft" minOccurs="0"/>
+ <xsd:element ref="OrtschaftZweisprachig" minOccurs="0"/>
+ <xsd:element name="Zustelladresse" type="ZustelladresseTyp" minOccurs="0"/>
+
+ <xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded">
+ <xsd:annotation>
+ <xsd:documentation>any additional properties</xsd:documentation>
+ </xsd:annotation>
+ </xsd:any>
+ </xsd:sequence>
+ </xsd:extension>
+ </xsd:complexContent>
+ </xsd:complexType>
+
+ <xsd:complexType name="ZustelladresseTyp">
+ <xsd:sequence>
+ <xsd:element ref="Adresszeile" minOccurs="0"/>
+ <xsd:element ref="Strassenname" minOccurs="0"/>
+ <xsd:element ref="Orientierungsnummer" minOccurs="0"/>
+ <xsd:element ref="Gebaeude" minOccurs="0"/>
+ <xsd:element ref="Nutzungseinheit" minOccurs="0"/>
+ <xsd:element ref="Postfach" minOccurs="0"/>
+ <xsd:element ref="Wohnsitzqualitaet" minOccurs="0"/>
+ <xsd:element ref="Abgabestelle" minOccurs="0"/>
+ <xsd:element ref="Nutzungseinheitlaufnummer" minOccurs="0"/>
+ <xsd:element name="AdressRegisterEintrag" minOccurs="0">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="Adresscode" minOccurs="0"/>
+ <xsd:element ref="Subcode" minOccurs="0"/>
+ <xsd:element ref="Objektnummer" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="InternetAdresse" type="InternetAdresseTyp" >
+ <xsd:annotation>
+ <xsd:documentation>Entspricht InternetAddress</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element name="TelefonAdresse" type="TelefonAdresseTyp" >
+ <xsd:annotation>
+ <xsd:documentation>Container für Telefonnummern, entspricht TelephoneAddress</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+
+ <xsd:complexType name="InternetAdresseTyp">
+ <xsd:annotation>
+ <xsd:documentation>internet based communication</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexContent>
+ <xsd:extension base="AbstractAddressType">
+ <xsd:sequence minOccurs="0">
+ <xsd:element ref="dsig:KeyInfo" minOccurs="0">
+ <xsd:annotation>
+ <xsd:documentation>certificate for secure communication</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element name="Adresse">
+ <xsd:annotation>
+ <xsd:documentation>eURI: mail-Adresse, Web, FTP, LDAP, ..., entspricht Address</xsd:documentation>
+ </xsd:annotation>
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:anyURI">
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="60"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded">
+ <xsd:annotation>
+ <xsd:documentation>any additional properties</xsd:documentation>
+ </xsd:annotation>
+ </xsd:any>
+ </xsd:sequence>
+ </xsd:extension>
+ </xsd:complexContent>
+ </xsd:complexType>
+
+ <xsd:complexType name="TelefonAdresseTyp">
+ <xsd:annotation>
+ <xsd:documentation>phone numbers</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexContent>
+ <xsd:extension base="AbstractAddressType">
+ <xsd:sequence>
+ <xsd:element name="Typ">
+ <xsd:annotation>
+ <xsd:documentation>type of phononumber - category (eg 'Festnetz', 'Mobile', 'fax', ...)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="Festnetz"/>
+ <xsd:enumeration value="Mobil"/>
+ <xsd:enumeration value="Fax"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="Nummer" type="TelekomNummerTyp">
+ <xsd:annotation>
+ <xsd:documentation>phonenumber</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded">
+ <xsd:annotation>
+ <xsd:documentation>any additional properties</xsd:documentation>
+ </xsd:annotation>
+ </xsd:any>
+ </xsd:sequence>
+ </xsd:extension>
+ </xsd:complexContent>
+ </xsd:complexType>
+
+ <xsd:complexType name="TelekomNummerTyp">
+ <xsd:choice>
+ <xsd:element ref="FormatierteNummer"/>
+ <xsd:group ref="TelekomNummernGruppe"/>
+ </xsd:choice>
+ </xsd:complexType>
+
+ <xsd:group name="TelekomNummernGruppe">
+ <xsd:sequence>
+ <xsd:element ref="InternationalerLaendercode" minOccurs="0"/>
+ <xsd:element ref="NationalNummer" minOccurs="0"/>
+ <xsd:element ref="Vorwahl" minOccurs="0"/>
+ <xsd:element ref="Anschlussnummer"/>
+ <xsd:element ref="Klappe" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:group>
+
+ <xsd:element name="InternationalerLaendercode" type="xsd:string">
+ <xsd:annotation>
+ <xsd:documentation>entspricht InternationalCountryCode</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element name="NationalNummer" type="xsd:string">
+ <xsd:annotation>
+ <xsd:documentation>entspricht NationalNumber</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element name="Vorwahl" type="xsd:string">
+ <xsd:annotation>
+ <xsd:documentation>entspricht AreaCityCode</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element name="Anschlussnummer" type="xsd:string">
+ <xsd:annotation>
+ <xsd:documentation>entspricht SubscriberNumber</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element name="FormatierteNummer">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="25"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="Klappe" type="xsd:string">
+ <xsd:annotation>
+ <xsd:documentation>entspricht Extension</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+
+
+ <xsd:element name="Abgabestelle" type="xsd:boolean"/>
+
+ <xsd:element name="Wohnsitzqualitaet">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="H"/>
+ <xsd:enumeration value="N"/>
+ <xsd:enumeration value="O"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="ISOCode3">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:pattern value="[A-Z]{3}"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="Staatscode">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:pattern value="[A-Z]{3}"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="Staatsname">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="54"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="Postleitzahl">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="10"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="Region">
+ <xsd:annotation>
+ <xsd:documentation>entspricht Region</xsd:documentation>
+ </xsd:annotation>
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="54"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="Bundesland">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="Wien"/>
+ <xsd:enumeration value="Niederösterreich"/>
+ <xsd:enumeration value="Burgenland"/>
+ <xsd:enumeration value="Oberösterreich"/>
+ <xsd:enumeration value="Steiermark"/>
+ <xsd:enumeration value="Salzburg"/>
+ <xsd:enumeration value="Kärnten"/>
+ <xsd:enumeration value="Tirol"/>
+ <xsd:enumeration value="Vorarlberg"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="Gemeinde">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="54"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="Gemeindekennziffer">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:pattern value="[0-9]{5}"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="Ortschaft">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="54"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="OrtschaftZweisprachig">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="45"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="Adresscode">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:pattern value="[0-9;A-Z]{7}"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="Subcode">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:pattern value="[0-9]{3}"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="Nutzungseinheitlaufnummer">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:pattern value="[0-9]{4}"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="Objektnummer">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:pattern value="[0-9;A-Z]{7}"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="Strassenname">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="54"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="Orientierungsnummer">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="32"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="Gebaeude">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="75"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="Nutzungseinheit">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="40"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="Adresszeile">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="54"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="Postfach">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="20"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/PersonExport.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/PersonExport.xsd new file mode 100644 index 00000000..5987d099 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/PersonExport.xsd @@ -0,0 +1,107 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Name: PersonExport.xsd + Zweck: Definiert allgemein nutzbare Export-Schnittstelle um eine Liste von Personen abzubilden. + Author(s): Ehrenmüller Oliver, ZMR-SU + + Aenderungshistorie: + 2009-07-20 teo: Überarbeitung PersonExportElementType + 2009-07-08 teo: erstellt +--> + +<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + <xsd:annotation> + <xsd:documentation>Definiert allgemein nutzbare Export-Schnittstelle um eine Liste von Personen abzubilden.</xsd:documentation> + </xsd:annotation> + <xsd:include schemaLocation="InfoFachlich.xsd"/> + + <xsd:element name="PersonExport" type="PersonExportType"> + <xsd:annotation> + <xsd:documentation>Root-Element des Personenexports.</xsd:documentation> + </xsd:annotation> + </xsd:element> + + <xsd:complexType name="PersonExportType"> + <xsd:annotation> + <xsd:documentation>Root-Element des Personenexports.</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element ref="Message"/> + <xsd:element ref="Stichtag"/> + <xsd:element name="Database"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:minLength value="1"/> + <xsd:maxLength value="20"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Person" type="PersonExportElementType" minOccurs="0" maxOccurs="unbounded"> + <xsd:annotation> + <xsd:documentation> + Gruppiert nach Personen werden alle Elemente in dieser + Liste abgebildet. + </xsd:documentation> + </xsd:annotation> + </xsd:element> + </xsd:sequence> + </xsd:complexType> + + <xsd:complexType name="PersonExportElementType"> + <xsd:annotation> + <xsd:documentation>Dieser Type beinhaltet alle Elemente die zu einer Person gehören.</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element name="ID" type="ENTITYIDType"/> + <xsd:element name="Typ" type="xsd:string"/> + <xsd:element name="Satz" type="PersonExportSatzType" minOccurs="0" maxOccurs="unbounded"> + <xsd:annotation> + <xsd:documentation> + Diese Liste beinhaltet alle Sätze die zu einer + Person gehören. Unabhängig von der Tabelle oder + Strang-Historie. + Fehlt die Liste, ist die Entity zu löschen. + </xsd:documentation> + </xsd:annotation> + </xsd:element> + </xsd:sequence> + </xsd:complexType> + + <xsd:complexType name="PersonExportSatzType"> + <xsd:annotation> + <xsd:documentation> + Dieser Type beinhaltet alle Elemente die sich auf einen Eintrag + in einer beliebigen Tabelle beziehen. + </xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element name="Tabelle"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:minLength value="1"/> + <xsd:maxLength value="20"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element ref="EntityID"/> + <xsd:element name="RecID" type="ENTITYIDType"/> + <xsd:element name="Created" type="TimestampType"/> + <xsd:element name="Feld" type="PersonExportFeldType" maxOccurs="unbounded"/> + </xsd:sequence> + </xsd:complexType> + + <xsd:complexType name="PersonExportFeldType"> + <xsd:annotation> + <xsd:documentation>Generiersche Name/Wert-Paare für Export</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element name="Name" type="xsd:string"/> + <xsd:element name="Wert" type="xsd:string"/> + </xsd:sequence> + </xsd:complexType> + +</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/PersonFelder.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/PersonFelder.xsd new file mode 100644 index 00000000..600e01c3 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/PersonFelder.xsd @@ -0,0 +1,70 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: PersonFelder.xsd
+Zweck: Definiert allgemein nutzbare Felder für Personendaten
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2006-06-26 tsch: GeburtsdatumBis hinzugefügt
+2005-08-30 tsch: OrdnungsZahlType hinzugefügt
+2004-01-15 tsch: SVNummer hinzugefügt
+2004-06-24 tsch: OrdnungsZahl, Titel hinzugefügt
+2004-01-27 tsch: Erstellung
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+ <xsd:include schemaLocation="SimpleTypes.xsd"/>
+
+ <xsd:annotation>
+ <xsd:documentation>Personendaten-Felder</xsd:documentation>
+ </xsd:annotation>
+ <xsd:element name="ZMRZahl" type="ZMRZahlType"/>
+
+ <xsd:simpleType name="ZMRZahlType">
+ <xsd:restriction base="xsd:string">
+ <xsd:pattern value="[0-9]{12}"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+
+ <xsd:element name="OrdnungsZahl" type="OrdnungsZahlType"/>
+
+ <xsd:simpleType name="OrdnungsZahlType">
+ <xsd:restriction base="xsd:string">
+ <xsd:pattern value="[0-9]{12}"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+
+ <xsd:element name="SVNummer">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:pattern value="[0-9]{10}"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="Titel">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="45"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="StaatZugezogen" type="StaatenNameType"/>
+ <xsd:element name="StaatVerzogen" type="StaatenNameType"/>
+
+ <xsd:element name="GeburtsdatumBis">
+ <xsd:simpleType>
+ <xsd:annotation>
+ <xsd:documentation>simple type for dates (union), which may omit day and/or month</xsd:documentation>
+ </xsd:annotation>
+ <xsd:union memberTypes="xsd:date xsd:gYearMonth xsd:gYear"/>
+ </xsd:simpleType>
+ </xsd:element>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/Protokollierung.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/Protokollierung.xsd new file mode 100644 index 00000000..c9bc3b1a --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/Protokollierung.xsd @@ -0,0 +1,496 @@ +<?xml version="1.0" encoding="UTF-8"?> +<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.example.org/Protokoll" + xmlns:prot="http://bmi.gv.at/namespace/zmr-su/protokoll/20091125#" elementFormDefault="qualified" + attributeFormDefault="qualified"> + + <element name="sprotokoll" type="prot:SProtokollType" /> + <complexType name="SProtokollType">
+ <sequence>
+ <element ref="prot:header" />
+ <element ref="prot:user" />
+ <element ref="prot:application" />
+ </sequence>
+ </complexType> + + <element name="dienststelle" type="prot:DienststelleType" /> + <complexType name="DienststelleType">
+ <annotation>
+ <documentation>Das Element Dienststelle identifiziert die Dienststelle mit den verschiedenen definierten
+ Codes und Kennzeichen.</documentation>
+ </annotation>
+ <sequence>
+ <element name="dstcode" minOccurs="0">
+ <annotation>
+ <documentation>3-Stelliger Dienststellencode. Wird im neuen Portal wegfallen???
+ </documentation>
+ </annotation>
+ <simpleType>
+ <restriction base="string">
+ <length value="3" />
+ </restriction>
+ </simpleType>
+ </element>
+
+ <element name="dstname" type="string" minOccurs="0">
+ <annotation>
+ <documentation>Klartextname der durchfuehrenden Dienststelle. PVP.ou</documentation>
+ </annotation>
+ </element>
+
+ <element name="mail" minOccurs="0">
+ <annotation>
+ <documentation>Emailadresse der Organisationseinheit/Dienststelle</documentation>
+ </annotation>
+ <complexType>
+ <simpleContent>
+ <extension base="string">
+ <attribute name="art">
+ <simpleType>
+ <restriction base="string">
+ <enumeration value="organisationseinheit" />
+ </restriction>
+ </simpleType>
+ </attribute>
+ </extension>
+ </simpleContent>
+ </complexType>
+ </element>
+ <element name="participant_id" type="string">
+ <annotation>
+ <documentation>Verwaltungskennzeichen (VKZ) der durchfuehrenden Dienststelle
+ (PVP-Header). Kunde fuer Verrechnung</documentation>
+ </annotation>
+ </element>
+ <element name="gvouid" type="string" minOccurs="0">
+ <annotation>
+ <documentation>Bundesweite eindeutige ID der Dienststelle (vom Portal) fuer Verrechnung.
+ PVP.gvOuId - bleibt das?</documentation>
+ </annotation>
+ </element>
+ <element name="kostcenter_id" type="string" minOccurs="0">
+ <annotation>
+ <documentation>Verwaltungskennzeichen (VKZ) der Kostenstelle des Users aus
+ PVP-Header normalerweise der Kunde (BMI Kundennummer) fuer Verrechnung. PVP.CostCenterId</documentation>
+ </annotation>
+ </element>
+ <element name="invoice_receipt_id" type="string" minOccurs="0">
+ <annotation>
+ <documentation>Verwaltungskennzeichen (VKZ) des Rechnungsempfaengers aus PVP-Header
+ Provider fuer Verrechnung. PVP.invoiceReceiptId</documentation>
+ </annotation>
+ </element>
+ <element name="charge_code" type="string" minOccurs="0">
+ <annotation>
+ <documentation>Liste von Codes aus PVP-Header fuer Verrechnung. PVP.ChargeCode</documentation>
+ </annotation>
+ </element>
+ </sequence>
+ </complexType> + + <element name="header" type="prot:HeaderType" /> + <complexType name="HeaderType">
+ <sequence>
+ <element name="protdatum" type="prot:DatumRedType"></element>
+ <element name="protzeit" type="prot:TimeRedType"></element>
+ <element name="application" type="string">
+ <annotation>
+ <documentation>Applikationskurzzeichen, Beispiel: "X02"</documentation>
+ </annotation>
+ </element>
+ <element name="applicationVersion" type="string">
+ <annotation>
+ <documentation>Versionsnummer wie sie auch im GUI angezeigt wird</documentation>
+ </annotation>
+ </element>
+
+ <element name="verarbeitungsart" type="string">
+ <annotation>
+ <documentation>Applikationskurzzeichen-Verarbeitungsbezeichnung
+ </documentation>
+ </annotation>
+ </element>
+
+ <element name="kzanfrage">
+ <annotation>
+ <documentation>If (Anfrage oder Auskunft)="1" Else="0" </documentation>
+ </annotation>
+ <simpleType>
+ <restriction base="string">
+ <pattern value="[01]" />
+ </restriction>
+ </simpleType>
+ </element>
+
+ <element name="kzupdate" minOccurs="0">
+ <annotation>
+ <documentation>If Update="1" Else "0"</documentation>
+ </annotation>
+ <simpleType>
+ <restriction base="string">
+ <pattern value="[01]" />
+ </restriction>
+ </simpleType>
+ </element>
+
+ <element name="fundstellen" type="integer" minOccurs="0">
+ <annotation>
+ <documentation>Summe der Anzahl der Treffer</documentation>
+ </annotation>
+ </element>
+
+ <element name="ergebnis" minOccurs="0">
+ <annotation>
+ <documentation>If Treffer="P", If Kein Treffer="N", If Treffer mit abweichenden Personendaten="I"
+ </documentation>
+ </annotation>
+ <simpleType>
+ <restriction base="string">
+ <pattern value="[INP]" />
+ </restriction>
+ </simpleType>
+ </element>
+
+ <element name="trancode" minOccurs="0">
+ <annotation>
+ <documentation>z.B.: "X02A" "X02B" analog zu den Hosttransaktionen</documentation>
+ </annotation>
+ <simpleType>
+ <restriction base="string">
+ <pattern value="[0-9A-Z _\-]{4}" />
+ </restriction>
+ </simpleType>
+ </element>
+
+ <element name="trannr" type="string" minOccurs="0">
+ <annotation>
+ <documentation>Transaktionsnummer</documentation>
+ </annotation>
+ </element>
+
+ <element name="behoerde" type="string" minOccurs="0">
+ <annotation>
+ <documentation>Behoerdenschluessel der durchfuehrenden Behoerde. Wenn in Applikation
+ geprueft, dann MUSS es vorhanden sein, sonst 000000</documentation>
+ </annotation>
+ </element>
+
+ <element name="systemid" type="string" minOccurs="0">
+ <annotation>
+ <documentation>Entiwcklungsumgebung=WEBS, Testumgebung=WEBT,
+ Produktionsumgebung=WEBP</documentation>
+ </annotation>
+ </element>
+ </sequence>
+ </complexType>
+
+ <element name="user" type="prot:UserType" /> + <complexType name="UserType">
+ <annotation>
+ <documentation>Das Element User identifiziert den User, der den Request ausgelöst hat und die
+ Dienststelle, welcher der Request zuzuordnen ist.</documentation>
+ </annotation>
+ <sequence>
+ <element name="globalid" type="string" minOccurs="0">
+ <annotation>
+ <documentation>gvgid im Sinne des Portalverbundes, Wert der "OPK". PVP.gvGid</documentation>
+ </annotation>
+ </element>
+ <element name="commname" type="string" minOccurs="0">
+ <annotation>
+ <documentation>Familienname und Vorname. PVP.cn</documentation>
+ </annotation>
+ </element>
+ <element name="userid" type="string">
+ <annotation>
+ <documentation>Anmeldename des durchführenden Benutzers. PVP.userId</documentation>
+ </annotation>
+ </element>
+ <element name="mail" minOccurs="0">
+ <annotation>
+ <documentation>Emailadresse des Users aus PVP-Header. PVP.mail</documentation>
+ </annotation>
+ <complexType>
+ <simpleContent>
+ <extension base="string">
+ <attribute name="art">
+ <simpleType>
+ <restriction base="string">
+ <enumeration value="user"></enumeration>
+ </restriction>
+ </simpleType>
+ </attribute>
+ </extension>
+ </simpleContent>
+ </complexType>
+ </element>
+ <element ref="prot:dienststelle">
+ <annotation>
+ <documentation>Dienststelle</documentation>
+ </annotation>
+ </element>
+ </sequence>
+ </complexType>
+
+ <complexType name="ReferenzType">
+ <annotation>
+ <documentation>Vordefinierte Werte für Referenzarten:
+ * edv_zahl
+ * dastazahl
+ * numerator_nr
+ * geschaeftszahl</documentation>
+ </annotation>
+ <sequence>
+ <element name="transactionid" type="string">
+ <annotation>
+ <documentation>Transaktionsnummer</documentation>
+ </annotation>
+ </element>
+ </sequence>
+ </complexType>
+
+ <element name="application" type="prot:ApplicationType" /> + <complexType name="ApplicationType">
+ <sequence>
+
+ <element name="bezug" type="string">
+ <annotation>
+ <documentation>String-Begruendung der Anfrage fuer den User "hilfreich" bei
+ DS-Rueckfrage. Manuelle Eingabe oder Vorgangsbeschreibung.</documentation>
+ </annotation>
+ </element>
+
+ <element ref="prot:person" minOccurs="0" />
+
+ <element name="referenzen" type="prot:ReferenzType" minOccurs="0" maxOccurs="unbounded">
+ <annotation>
+ <documentation>Protokoll:Referenz</documentation>
+ </annotation>
+ </element>
+
+ <element name="request" type="string" minOccurs="0">
+ <annotation>
+ <documentation>SOAP Request im Fall von Abfragen, Suchen. Parameter wenn es sich um eine
+ Batchanforderung handelt, sonst leer.
+ Weitere applikationsspezifische Daten, allenfalls notwendige Tags
+ sind mit IV/2 abzustimmen.
+ Datumselemente: Art ist mit IV/2 abzustimmen.</documentation>
+ </annotation>
+ </element>
+
+ </sequence>
+ </complexType>
+
+ <element name="person" type="prot:PersonType" /> + <complexType name="PersonType">
+ <annotation> + <documentation>Zurueckgelieferte Person.</documentation> + </annotation> + <sequence>
+ <element name="rolle" type="prot:RolleType">
+ <annotation>
+ <documentation>im ZMR: "ZMR-Meldung", "Meldepflichtiger". ERnP??? Definition???
+ Attribute
+ art="personenrolle"</documentation>
+ </annotation>
+ </element>
+ <element name="familienname" type="string" minOccurs="0">
+ <annotation>
+ <documentation>Familienname der Person. ZPR.famname</documentation>
+ </annotation>
+ </element>
+ <element name="vorname" type="string" minOccurs="0">
+ <annotation>
+ <documentation>Vorname der Person. ZPR.vorname</documentation>
+ </annotation>
+ </element>
+ <element name="geburtsort" type="string" minOccurs="0">
+ <annotation>
+ <documentation>Geburtsort</documentation>
+ </annotation>
+ </element>
+ <element ref="prot:geburtsdaten" minOccurs="0" />
+ <element name="akademischer_grad" type="string" minOccurs="0">
+ <annotation>
+ <documentation>Zu klären:
+ * was vom Akademischen Grad
+ * welche Grade
+ * Reihenfolge
+ * Kurzform, nur
+ vorangestellte?</documentation>
+ </annotation>
+ </element>
+ <element name="geschlecht" type="prot:GeschlechtType" minOccurs="0">
+ <annotation>
+ <documentation>Kennzeichen Geschlecht.</documentation>
+ </annotation>
+ </element>
+ <element name="geburtsstaat" type="string" minOccurs="0">
+ <annotation>
+ <documentation>Geburtsstaat. Normierung?</documentation>
+ </annotation>
+ </element>
+ <element name="speicherdatum" type="string" minOccurs="0">
+ <annotation>
+ <documentation>JJJJMMTT created: Letztes Aenderungsdatum der Person.</documentation>
+ </annotation>
+ </element>
+ <element name="zmrzahl" minOccurs="0">
+ <annotation>
+ <documentation>zmrzahl</documentation>
+ </annotation>
+ <simpleType>
+ <restriction base="string">
+ <length value="12"></length>
+ </restriction>
+ </simpleType>
+ </element>
+ <element ref="prot:adressen" minOccurs="0" />
+ </sequence>
+ </complexType>
+
+ <element name="adressen" type="prot:AdressenType" /> + <complexType name="AdressenType">
+ <annotation>
+ <documentation>Liste von Adressen. Es wird nur eine Adresse ausgegeben (bisherige Logik)
+ </documentation>
+ </annotation>
+ <sequence>
+ <element ref="prot:adresse" maxOccurs="unbounded" />
+ </sequence>
+ </complexType>
+
+ <element name="adresse" type="prot:AdresseType"/> + <complexType name="AdresseType">
+ <sequence>
+ <element name="plz" type="string" minOccurs="0">
+ <annotation>
+ <documentation>Postleitzahl. Meldung.plz</documentation>
+ </annotation>
+ </element>
+ <element name="ortname" type="string" minOccurs="0">
+ <annotation>
+ <documentation>Ortname (vereinfacht?). Meldung.ortname</documentation>
+ </annotation>
+ </element>
+ <element name="strasse" type="string" minOccurs="0">
+ <annotation>
+ <documentation>Strassenname. Meldung.strname</documentation>
+ </annotation>
+ </element>
+ <element name="hausnummer" type="string" minOccurs="0">
+ <annotation>
+ <documentation>Hausnummer. Meldung.hausnummer</documentation>
+ </annotation>
+ </element>
+ </sequence>
+ </complexType>
+
+ <complexType name="GeburtsdatenType">
+ <choice>
+ <element name="geburtsdatum" type="prot:DatumRedType">
+ <annotation>
+ <documentation>JJJJMMTT: Gebdatum</documentation>
+ </annotation>
+ </element>
+ <sequence>
+ <element name="geburtsdatum_von" type="string" minOccurs="0">
+ <annotation>
+ <documentation>JJJJMMTT: Suche mit unvollständigem Datum (Jahr)</documentation>
+ </annotation>
+ </element>
+ <element name="geburtsdatum_bis" type="string" minOccurs="0">
+ <annotation>
+ <documentation>JJJJMMTT: Suche mit unvollständigem Datum (Jahr)</documentation>
+ </annotation>
+ </element>
+ </sequence>
+ </choice>
+ </complexType>
+
+ <element name="geburtsdaten" type="prot:GeburtsdatenType">
+ <annotation>
+ <documentation>Geburstsdatum oder Suchintervall</documentation>
+ </annotation>
+ </element>
+
+
+ <simpleType name="DatumRedType">
+ <annotation>
+ <documentation>
+ DatumRedType: Format JJJJMMTT richtet sich nach
+ xsd:date, '00' bei Monat und Tag erlaubt.
+ Keine
+ Trennzeichen
+ </documentation>
+ </annotation>
+ <restriction base="string">
+ <pattern value="[2-9][0-9]{3}[01][0-9][0-3][0-9]" />
+ </restriction>
+ </simpleType>
+
+ <simpleType name="TimeRedType">
+ <annotation>
+ <documentation>
+ TimeRedType: Format (mindestens HHMMSS) richtet sich
+ nach xsd:dateTime, ohne Datumsanteil und
+ ohne
+ Trennzeichen. 0 bis 3 Nachkommastellen sind zulaessig
+ </documentation>
+ </annotation>
+ <restriction base="string">
+ <pattern value="[0-2][0-9][0-6][0-9][0-6][0-9][0-9]{0,3}" />
+ </restriction>
+ </simpleType>
+
+ <simpleType name="GeschlechtType">
+ <annotation>
+ <documentation>Maennlich="1", Weiblich="2", Unbekannt="3", Juristische Person="4".
+ "Juristische Person" ist nur in enstprechenden Anwendungen/Anwendungsfaellen zulaessig.</documentation>
+ </annotation>
+ <restriction base="string">
+ <enumeration value="1">
+ <annotation>
+ <documentation>maennlich</documentation>
+ </annotation>
+ </enumeration>
+ <enumeration value="2">
+ <annotation>
+ <documentation>weiblich</documentation>
+ </annotation>
+ </enumeration>
+ <enumeration value="3">
+ <annotation>
+ <documentation>unbekannt</documentation>
+ </annotation>
+ </enumeration>
+ <enumeration value="4">
+ <annotation>
+ <documentation>juristische Person</documentation>
+ </annotation>
+ </enumeration>
+ </restriction>
+ </simpleType>
+
+ <complexType name="RolleType">
+ <annotation>
+ <documentation>im ZMR: "ZMR-Meldung", "Meldepflichtiger". ERnP???
+ Definition??? Attribute
+ art="personenrolle"</documentation>
+ </annotation>
+ <simpleContent>
+ <extension base="string">
+ <attribute name="art" type="string"></attribute>
+ </extension>
+ </simpleContent>
+ </complexType>
+
+ <attribute name="mailAttribute">
+ <simpleType>
+ <restriction base="string">
+ <enumeration value="user"></enumeration>
+ <enumeration value="organisationseinheit"></enumeration>
+ </restriction>
+ </simpleType>
+ </attribute>
+
+</schema>
diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/SimpleTypes.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/SimpleTypes.xsd new file mode 100644 index 00000000..77b3e59e --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/SimpleTypes.xsd @@ -0,0 +1,173 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Name: SimpleTypes.xsd +Zweck: Definiert allgemein nutzbare simple Datentypen +Author(s): Tschurtschenthaler Thomas, ZMR-SU + +2010-08-25 teo: ZMR-339: ID 343 - USERID DB-Feld erweitern +2006-05-03 tsch: KGNummerType hinzugefügt +2004-10-27 tsch: BehoerdenschluesselType hinzugefügt +2004-09-09 tsch: RegisterType hinzugefügt +2004-09-08 tsch: BenutzerNameType hinzugefügt +2004-08-17 tsch: GemeindeNrType hinzugefügt +2004-06-18 tsch: GrundTextType hinzugefügt +--> + +<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + + <xsd:simpleType name="IntegerType"> + <xsd:annotation> + <xsd:documentation>IntegerType: nicht negativer Integer mit Maximalwert 2^31-1 (Beschränkung durch Datenbank)</xsd:documentation> + </xsd:annotation> + <xsd:restriction base="xsd:nonNegativeInteger"> + <xsd:maxExclusive value="2147483648"/> + </xsd:restriction> + </xsd:simpleType> + + <xsd:simpleType name="DatumType"> + <xsd:annotation> + <xsd:documentation>DatumType: Format richtet sich nach xsd:date, '00' bei Monat und Tag erlaubt</xsd:documentation> + </xsd:annotation> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[0-9]{4}[\-][0-9]{2}[\-][0-9]{2}"/> + </xsd:restriction> + </xsd:simpleType> + + + <xsd:simpleType name="TimestampType"> + <xsd:annotation> + <xsd:documentation>TimestampType: Format richtet sich nach xsd:dateTime, Angabe der Millisekunden ist Pflicht, Zeitzone nicht erlaubt</xsd:documentation> + </xsd:annotation> + <xsd:restriction base="xsd:dateTime"> + <xsd:pattern value="[0-9]{4}[\-][0-9]{2}[\-][0-9]{2}[T][0-9]{2}[:][0-9]{2}[:][0-9]{2}[.][0-9]{3}"/> + </xsd:restriction> + </xsd:simpleType> + + <xsd:simpleType name="IDType"> + <xsd:annotation> + <xsd:documentation>IDs</xsd:documentation> + </xsd:annotation> + <xsd:restriction base="xsd:unsignedLong"> + </xsd:restriction> + </xsd:simpleType> + <xsd:simpleType name="ENTITYIDType"> + <xsd:annotation> + <xsd:documentation>Entity-IDs (können auch alphanumerisch sein, z.B. alte edvzahlen)</xsd:documentation> + </xsd:annotation> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="64"/> + </xsd:restriction> + </xsd:simpleType> + + <xsd:simpleType name="StaatenNameType"> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="45"/> + </xsd:restriction> + </xsd:simpleType> + + <xsd:simpleType name="GrundCodeType"> + <xsd:restriction base="xsd:string" > + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="20"/> + </xsd:restriction> + </xsd:simpleType> + <xsd:simpleType name="GrundTextType"> + <xsd:restriction base="xsd:string"> + <xsd:minLength value="1"/> + <xsd:maxLength value="50"/> + </xsd:restriction> + </xsd:simpleType> + <xsd:simpleType name="GrundFreitextType"> + <xsd:restriction base="xsd:string"> + <xsd:minLength value="0"/> + <xsd:maxLength value="228"/> + </xsd:restriction> + </xsd:simpleType> + + <xsd:simpleType name="BehoerdenNrType"> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[0-9]{6}"/> + </xsd:restriction> + </xsd:simpleType> + <xsd:simpleType name="BehoerdenschluesselType"> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[0-9]{6}|C[0-9]{5}"/> + </xsd:restriction> + </xsd:simpleType> + <xsd:simpleType name="GemeindeNrType"> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[0-9]{5}"/> + </xsd:restriction> + </xsd:simpleType> + <xsd:simpleType name="KGNummerType"> + <xsd:restriction base="xsd:string"> + <xsd:minLength value="5"/> + <xsd:maxLength value="5"/> + </xsd:restriction> + </xsd:simpleType> + <xsd:simpleType name="GemeindenameType"> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="54"/> + </xsd:restriction> + </xsd:simpleType> + <xsd:simpleType name="KundenNrType"> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[0-9]{5,6}"/> + </xsd:restriction> + </xsd:simpleType> + <xsd:simpleType name="OrgTypType"> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="20"/> + </xsd:restriction> + </xsd:simpleType> + <xsd:simpleType name="OrgCodeType"> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="20"/> + </xsd:restriction> + </xsd:simpleType> + <xsd:simpleType name="BezugsfeldType"> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="50"/> + </xsd:restriction> + </xsd:simpleType> + <xsd:simpleType name="BenutzerType"> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="100"/> + </xsd:restriction> + </xsd:simpleType> + <xsd:simpleType name="BenutzerNameType"> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="1"/> + <xsd:maxLength value="45"/> + </xsd:restriction> + </xsd:simpleType> + <xsd:simpleType name="RegisterType"> + <xsd:restriction base="xsd:string"> + <xsd:enumeration value="ZMR"/> + <xsd:enumeration value="EGR"/> + <xsd:enumeration value="LMR"/> + <xsd:enumeration value="ZPR"/> + </xsd:restriction> + </xsd:simpleType> + +</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/W3C-XMLDSig.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/W3C-XMLDSig.xsd new file mode 100644 index 00000000..63440043 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/W3C-XMLDSig.xsd @@ -0,0 +1,274 @@ +<?xml version="1.0" encoding="utf-8"?>
+<!-- PUBLIC "-//W3C//DTD XMLSchema 200102//EN" "http://www.w3.org/2001/XMLSchema.dtd"
+ -->
+<!--<!DOCTYPE schema
+ [
+ <!ATTLIST schema
+ xmlns:ds CDATA #FIXED "http://www.w3.org/2000/09/xmldsig#"
+>
+ <!ENTITY dsig 'http://www.w3.org/2000/09/xmldsig#'>
+ <!ENTITY % p ''>
+ <!ENTITY % s ''>
+]> -->
+<!-- Schema for XML Signatures
+ http://www.w3.org/2000/09/xmldsig#
+ $Revision: 1.1 $ on $Date: 2002/11/11 16:24:27 $ by $Author: Linauer $
+
+ Copyright 2001 The Internet Society and W3C (Massachusetts Institute
+ of Technology, Institut National de Recherche en Informatique et en
+ Automatique, Keio University). All Rights Reserved.
+ http://www.w3.org/Consortium/Legal/
+
+ This document is governed by the W3C Software License [1] as described
+ in the FAQ [2].
+
+ [1] http://www.w3.org/Consortium/Legal/copyright-software-19980720
+ [2] http://www.w3.org/Consortium/Legal/IPR-FAQ-20000620.html#DTD
+-->
+<schema targetNamespace="http://www.w3.org/2000/09/xmldsig#" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" version="0.1">
+ <!-- Basic Types Defined for Signatures -->
+ <!-- modified to ensure that whiteSpace is preserved
+<simpleType name="CryptoBinary">
+ <restriction base="base64Binary">
+ </restriction>
+</simpleType>
+ -->
+ <simpleType name="CryptoBinary">
+ <restriction base="string">
+ <whiteSpace value="preserve"/>
+ <pattern value="[A-Za-z0-9\+/=\n\r\t ]*"/>
+ </restriction>
+ </simpleType>
+ <!-- Start Signature -->
+ <element name="Signature" type="ds:SignatureType"/>
+ <complexType name="SignatureType">
+ <sequence>
+ <element ref="ds:SignedInfo"/>
+ <element ref="ds:SignatureValue"/>
+ <element ref="ds:KeyInfo" minOccurs="0"/>
+ <element ref="ds:Object" minOccurs="0" maxOccurs="unbounded"/>
+ </sequence>
+ <attribute name="Id" type="ID" use="optional"/>
+ </complexType>
+ <element name="SignatureValue" type="ds:SignatureValueType"/>
+ <complexType name="SignatureValueType">
+ <simpleContent>
+ <extension base="ds:CryptoBinary">
+ <attribute name="Id" type="ID" use="optional"/>
+ </extension>
+ </simpleContent>
+ </complexType>
+ <!-- Start SignedInfo -->
+ <element name="SignedInfo" type="ds:SignedInfoType"/>
+ <complexType name="SignedInfoType">
+ <sequence>
+ <element ref="ds:CanonicalizationMethod"/>
+ <element ref="ds:SignatureMethod"/>
+ <element ref="ds:Reference" maxOccurs="unbounded"/>
+ </sequence>
+ <attribute name="Id" type="ID" use="optional"/>
+ </complexType>
+ <element name="CanonicalizationMethod" type="ds:CanonicalizationMethodType"/>
+ <complexType name="CanonicalizationMethodType" mixed="true">
+ <sequence>
+ <any namespace="##any" minOccurs="0" maxOccurs="unbounded"/>
+ <!-- (0,unbounded) elements from (1,1) namespace -->
+ </sequence>
+ <attribute name="Algorithm" type="anyURI" use="required"/>
+ </complexType>
+ <element name="SignatureMethod" type="ds:SignatureMethodType"/>
+ <complexType name="SignatureMethodType" mixed="true">
+ <sequence>
+ <element name="HMACOutputLength" type="ds:HMACOutputLengthType" minOccurs="0"/>
+ <any namespace="##other" minOccurs="0" maxOccurs="unbounded"/>
+ <!-- (0,unbounded) elements from (1,1) external namespace -->
+ </sequence>
+ <attribute name="Algorithm" type="anyURI" use="required"/>
+ </complexType>
+ <!-- Start Reference -->
+ <element name="Reference" type="ds:ReferenceType"/>
+ <complexType name="ReferenceType">
+ <sequence>
+ <element ref="ds:Transforms" minOccurs="0"/>
+ <element ref="ds:DigestMethod"/>
+ <element ref="ds:DigestValue"/>
+ </sequence>
+ <attribute name="Id" type="ID" use="optional"/>
+ <attribute name="URI" type="anyURI" use="optional"/>
+ <attribute name="Type" type="anyURI" use="optional"/>
+ </complexType>
+ <element name="Transforms" type="ds:TransformsType"/>
+ <complexType name="TransformsType">
+ <sequence>
+ <element ref="ds:Transform" maxOccurs="unbounded"/>
+ </sequence>
+ </complexType>
+ <element name="Transform" type="ds:TransformType"/>
+ <complexType name="TransformType" mixed="true">
+ <choice minOccurs="0" maxOccurs="unbounded">
+ <any namespace="##other" processContents="lax"/>
+ <element name="XPath" type="string"/>
+ <!-- (1,1) elements from (0,unbounded) namespaces -->
+ </choice>
+ <attribute name="Algorithm" type="anyURI" use="required"/>
+ </complexType>
+ <!-- End Reference -->
+ <element name="DigestMethod" type="ds:DigestMethodType"/>
+ <complexType name="DigestMethodType" mixed="true">
+ <sequence>
+ <any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
+ </sequence>
+ <attribute name="Algorithm" type="anyURI" use="required"/>
+ </complexType>
+ <element name="DigestValue" type="ds:DigestValueType"/>
+ <simpleType name="DigestValueType">
+ <restriction base="ds:CryptoBinary"/>
+ </simpleType>
+ <!-- End SignedInfo -->
+ <!-- Start KeyInfo -->
+ <element name="KeyInfo" type="ds:KeyInfoType"/>
+ <complexType name="KeyInfoType" mixed="true">
+ <choice maxOccurs="unbounded">
+ <element ref="ds:KeyName"/>
+ <element ref="ds:KeyValue"/>
+ <element ref="ds:RetrievalMethod"/>
+ <element ref="ds:X509Data"/>
+ <element ref="ds:PGPData"/>
+ <element ref="ds:SPKIData"/>
+ <element ref="ds:MgmtData"/>
+ <any namespace="##other" processContents="lax"/>
+ <!-- (1,1) elements from (0,unbounded) namespaces -->
+ </choice>
+ <attribute name="Id" type="ID" use="optional"/>
+ </complexType>
+ <element name="KeyName" type="string"/>
+ <element name="MgmtData" type="string"/>
+ <element name="KeyValue" type="ds:KeyValueType"/>
+ <complexType name="KeyValueType" mixed="true">
+ <choice>
+ <element ref="ds:DSAKeyValue"/>
+ <element ref="ds:RSAKeyValue"/>
+ <any namespace="##other" processContents="lax"/>
+ </choice>
+ </complexType>
+ <element name="RetrievalMethod" type="ds:RetrievalMethodType"/>
+ <complexType name="RetrievalMethodType">
+ <sequence>
+ <element name="Transforms" type="ds:TransformsType" minOccurs="0"/>
+ </sequence>
+ <attribute name="URI" type="anyURI"/>
+ <attribute name="Type" type="anyURI" use="optional"/>
+ </complexType>
+ <!-- Start X509Data -->
+ <element name="X509Data" type="ds:X509DataType"/>
+ <complexType name="X509DataType">
+ <sequence maxOccurs="unbounded">
+ <choice>
+ <element name="X509IssuerSerial" type="ds:X509IssuerSerialType"/>
+ <element name="X509SKI" type="ds:CryptoBinary"/>
+ <element name="X509SubjectName" type="string"/>
+ <element name="X509Certificate" type="ds:CryptoBinary"/>
+ <element name="X509CRL" type="ds:CryptoBinary"/>
+ <any namespace="##other" processContents="lax"/>
+ </choice>
+ </sequence>
+ </complexType>
+ <complexType name="X509IssuerSerialType">
+ <sequence>
+ <element name="X509IssuerName" type="string"/>
+ <element name="X509SerialNumber" type="integer"/>
+ </sequence>
+ </complexType>
+ <!-- End X509Data -->
+ <!-- Begin PGPData -->
+ <element name="PGPData" type="ds:PGPDataType"/>
+ <complexType name="PGPDataType">
+ <choice>
+ <sequence>
+ <element name="PGPKeyID" type="ds:CryptoBinary"/>
+ <element name="PGPKeyPacket" type="ds:CryptoBinary" minOccurs="0"/>
+ <any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
+ </sequence>
+ <sequence>
+ <element name="PGPKeyPacket" type="ds:CryptoBinary"/>
+ <any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
+ </sequence>
+ </choice>
+ </complexType>
+ <!-- End PGPData -->
+ <!-- Begin SPKIData -->
+ <element name="SPKIData" type="ds:SPKIDataType"/>
+ <complexType name="SPKIDataType">
+ <sequence maxOccurs="unbounded">
+ <element name="SPKISexp" type="ds:CryptoBinary"/>
+ <any namespace="##other" processContents="lax" minOccurs="0"/>
+ </sequence>
+ </complexType>
+ <!-- End SPKIData -->
+ <!-- End KeyInfo -->
+ <!-- Start Object (Manifest, SignatureProperty) -->
+ <element name="Object" type="ds:ObjectType"/>
+ <complexType name="ObjectType" mixed="true">
+ <sequence minOccurs="0" maxOccurs="unbounded">
+ <any namespace="##any" processContents="lax"/>
+ </sequence>
+ <attribute name="Id" type="ID" use="optional"/>
+ <attribute name="MimeType" type="string" use="optional"/>
+ <attribute name="Encoding" type="anyURI" use="optional"/>
+ <!-- add a grep facet -->
+ </complexType>
+ <element name="Manifest" type="ds:ManifestType"/>
+ <complexType name="ManifestType">
+ <sequence>
+ <element ref="ds:Reference" maxOccurs="unbounded"/>
+ </sequence>
+ <attribute name="Id" type="ID" use="optional"/>
+ </complexType>
+ <element name="SignatureProperties" type="ds:SignaturePropertiesType"/>
+ <complexType name="SignaturePropertiesType">
+ <sequence>
+ <element ref="ds:SignatureProperty" maxOccurs="unbounded"/>
+ </sequence>
+ <attribute name="Id" type="ID" use="optional"/>
+ </complexType>
+ <element name="SignatureProperty" type="ds:SignaturePropertyType"/>
+ <complexType name="SignaturePropertyType" mixed="true">
+ <choice maxOccurs="unbounded">
+ <any namespace="##other" processContents="lax"/>
+ <!-- (1,1) elements from (1,unbounded) namespaces -->
+ </choice>
+ <attribute name="Target" type="anyURI" use="required"/>
+ <attribute name="Id" type="ID" use="optional"/>
+ </complexType>
+ <!-- End Object (Manifest, SignatureProperty) -->
+ <!-- Start Algorithm Parameters -->
+ <simpleType name="HMACOutputLengthType">
+ <restriction base="integer"/>
+ </simpleType>
+ <!-- Start KeyValue Element-types -->
+ <element name="DSAKeyValue" type="ds:DSAKeyValueType"/>
+ <complexType name="DSAKeyValueType">
+ <sequence>
+ <sequence minOccurs="0">
+ <element name="P" type="ds:CryptoBinary"/>
+ <element name="Q" type="ds:CryptoBinary"/>
+ </sequence>
+ <element name="J" type="ds:CryptoBinary" minOccurs="0"/>
+ <element name="G" type="ds:CryptoBinary" minOccurs="0"/>
+ <element name="Y" type="ds:CryptoBinary"/>
+ <sequence minOccurs="0">
+ <element name="Seed" type="ds:CryptoBinary"/>
+ <element name="PgenCounter" type="ds:CryptoBinary"/>
+ </sequence>
+ </sequence>
+ </complexType>
+ <element name="RSAKeyValue" type="ds:RSAKeyValueType"/>
+ <complexType name="RSAKeyValueType">
+ <sequence>
+ <element name="Modulus" type="ds:CryptoBinary"/>
+ <element name="Exponent" type="ds:CryptoBinary"/>
+ </sequence>
+ </complexType>
+ <!-- End KeyValue Element-types -->
+ <!-- End Signature -->
+</schema>
diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/Workflow.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/Workflow.xsd new file mode 100644 index 00000000..729b61ee --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/Workflow.xsd @@ -0,0 +1,200 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Workflow.xsd
+Zweck: Definiert Datentypen für die Geschäftsprozesssteuerung der Usecases
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2004-08-02 tsch: Vorgang WorkflowsAuflisten hinzugefügt
+2004-06-29 tsch: Subprozess Struktur vereinfacht
+2004-06-14 tsch: ProzessAnzeigeenamen hinzugefügt
+2004-06-14 tsch: Optionale VerlassenerProzessInstanzID hinzugefügt
+2004-05-19 tsch: SequenceID hinzugefügt, Umbenennung Process->Prozess
+2004-05-17 tsch: Umbenennungen: Activity nach Vorgang, Workflowitems nach Subprozesse
+2004-05-04 tsch: ProcessID->ProcessName, ActivityID->ActivityName
+2003-12-12 tsch: Erstellung
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:include schemaLocation="SimpleTypes.xsd"/>
+
+
+ <xsd:element name="WorkflowInfoClient">
+ <xsd:annotation>
+ <xsd:documentation>Workflowinformationen des Clients</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="ProzessName"/>
+ <xsd:sequence minOccurs="0">
+ <xsd:annotation>
+ <xsd:documentation>
+ Wenn der Geschäftsprozess aus mehreren Vorgängen besteht,
+ müssen die ProzessinstanzID und SequenzID aus der letzten
+ Server-Response vom Client geschickt werden.
+ Beim ersten Vorgang eines neuen Geschäftsprozesses dürfen die beiden
+ Felder nicht geschickt werden.
+ Bei Beginn einen neuen Geschäftsprozesses SOLLTE die InstanzID des letztzen
+ Prozesses als VerlassenerProzessInstanzID mitgeschickt werden
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:element ref="ProzessInstanzID"/>
+ <xsd:element ref="VerlassenerProzessInstanzID" minOccurs="0"/>
+ <xsd:element ref="SequenzID"/>
+ </xsd:sequence>
+ <xsd:element ref="VorgangName"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="WorkflowInfoServer">
+ <xsd:annotation>
+ <xsd:documentation>Workflowinformationen des Servers</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:annotation>
+ <xsd:documentation>
+ Der Prozessname dient zur technischen Identifikation des Prozesses, der ProzessAnzeigeName
+ kann zur Anzeige auf der Benutzeroberfläche verwendet werden.
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:element ref="ProzessName"/>
+ <xsd:element ref="ProzessAnzeigeName" minOccurs="0"/>
+ <xsd:element ref="ProzessInstanzID"/>
+ <xsd:element ref="ProzessStatus"/>
+ <xsd:element ref="SequenzID"/>
+ <xsd:element ref="Subprozess" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:complexType name="SubprozessType">
+ <xsd:sequence>
+ <xsd:annotation>
+ <xsd:documentation>
+ Der VorgangName dient zur technischen Identifikation des Vorgangs, der VorgangAnzeigeName
+ kann zur Anzeige auf der Benutzeroberfläche verwendet werden.
+ Die Elemente VorgangRestriction und VorgangConditions werden in näherer Zukunft nicht implementiert
+ und können ignoriert werden (werden nicht befüllt).
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:element ref="VorgangName"/>
+ <xsd:element ref="VorgangAnzeigeName" minOccurs="0"/>
+ <xsd:element ref="VorgangStatus"/>
+ <xsd:element ref="VorgangRestriction" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element ref="VorgangConditions" minOccurs="0"/>
+ <xsd:element name="Required" type="xsd:boolean"/>
+ <xsd:element name="Visible" type="xsd:boolean"/>
+ <xsd:element ref="Subprozess" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="Subprozess" type="SubprozessType"/>
+
+ <xsd:element name="ProzessInstanzID" type="IDType"/>
+ <xsd:element name="VerlassenerProzessInstanzID" type="IDType"/>
+ <xsd:element name="SequenzID" type="IDType"/>
+
+ <xsd:element name="ProzessName">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="90"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="ProzessAnzeigeName">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="90"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="ProzessStatus">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="O"/>
+ <xsd:enumeration value="A"/>
+ <xsd:enumeration value="C"/>
+ <xsd:enumeration value="E"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="VorgangName">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="90"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="VorgangAnzeigeName">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="90"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="VorgangStatus">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="O"/>
+ <xsd:enumeration value="A"/>
+ <xsd:enumeration value="C"/>
+ <xsd:enumeration value="E"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="VorgangRestriction">
+ <xsd:annotation>
+ <xsd:documentation>regionale Restriktion, die fuer den Vorgang gilt (z.B. Gemeindenummer, fuer die Personen angemeldet werden duerfen.</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="RestrictionType" type="xsd:string"/>
+ <xsd:element name="RestrictionValue" type="xsd:string"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+
+ <xsd:element name="VorgangConditions">
+ <xsd:annotation>
+ <xsd:documentation>Liste von Bedingungen, unter denen das Item aktiv wird.</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="SelectedItems" minOccurs="1" maxOccurs="unbounded">
+ <xsd:annotation>
+ <xsd:documentation>Liste von alternativen Voraussetzungen (ODER) für die Anwählbarkeit der Activity. Ein Eintrag repräsentiert eine Reihe von Objekten, die im Suchergebnis ausgewählt sein müssen (UND).</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="SelectedItem" type="xsd:string" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+</xsd:schema>
+
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/gis-schnittstelle.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/gis-schnittstelle.xsd new file mode 100644 index 00000000..4228c88f --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/gis-schnittstelle.xsd @@ -0,0 +1,171 @@ +<?xml version="1.0" encoding="UTF-8"?> +<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://bmi.gv.at/namespace/zmr-su/gis/20070725#" xmlns="http://bmi.gv.at/namespace/zmr-su/gis/20070725#" elementFormDefault="qualified"> + + <xsd:element name="GISListe"> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="GISDaten" maxOccurs="unbounded"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="GISDaten" type="GISDatenType"/> + <xsd:complexType name="GISDatenType"> + <xsd:sequence> + <xsd:element ref="Erstellungsdatum" minOccurs="0"/> + <xsd:element ref="Stichtagsdatum" minOccurs="0"/> + <xsd:element ref="Filter" minOccurs="0"/> + <xsd:element ref="Gemeindekennziffer" minOccurs="0"/> + <xsd:element ref="Ortkennziffer" minOccurs="0"/> + <xsd:element ref="Strassekennziffer" minOccurs="0"/> + <xsd:element ref="Adresscode" minOccurs="0"/> + <xsd:element ref="Subcode" minOccurs="0"/> + <xsd:element ref="AdresscodeSubcode" minOccurs="0"/> + <xsd:element ref="Objektnummer" minOccurs="0"/> + <xsd:element ref="Nutzungseinheitlaufnummer" minOccurs="0"/> + <xsd:element ref="Grundstuecknummer" minOccurs="0"/> + <xsd:element ref="GisMeridian" minOccurs="0"/> + <xsd:element name="KoordinatenADRCD" type="KoordinatenType" minOccurs="0"/> + <xsd:element name="KoordinatenSUBCD" type="KoordinatenType" minOccurs="0"/> + <xsd:element ref="Postleitzahl" minOccurs="0"/> + <xsd:element ref="Strassenname" minOccurs="0"/> + <xsd:element ref="Hausnummer" minOccurs="0"/> + <xsd:element ref="Stiege" minOccurs="0"/> + <xsd:element ref="Tuer" minOccurs="0"/> + <xsd:element ref="ErweitertesAttribut" minOccurs="0" maxOccurs="unbounded"/> + </xsd:sequence> + </xsd:complexType> + + <xsd:element name="Erstellungsdatum" type="xsd:date"/> + <xsd:element name="Stichtagsdatum" type="xsd:date"/> + <xsd:element name="Filter" type="xsd:string"/> + + <xsd:element name="Gemeindekennziffer"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[0-9]{5}"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Ortkennziffer"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[0-9]{5}"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Strassekennziffer"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[0-9]{6}"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + + <xsd:element name="Adresscode"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[0-9;A-Z]{7}"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Subcode"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[0-9]{3}"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="AdresscodeSubcode"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[0-9;A-Z]{7}[0-9]{3}"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Objektnummer"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[0-9;A-Z]{7}"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Nutzungseinheitlaufnummer"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:pattern value="[0-9]{4}"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Grundstuecknummer"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="Katastralgemnr" type="xsd:string"/> + <xsd:element name="Haupt" type="xsd:string"/> + <xsd:element name="Sub" type="xsd:string"/> + <xsd:element name="Punkt" type="xsd:string"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + <xsd:element name="GisMeridian" type="xsd:string"/> + <xsd:complexType name="KoordinatenType"> + <xsd:sequence> + <xsd:element name="X" type="xsd:float"/> + <xsd:element name="Y" type="xsd:float"/> + </xsd:sequence> + </xsd:complexType> + <xsd:element name="Postleitzahl"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="10"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Strassenname"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="54"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Hausnummer"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="54"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Stiege"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="54"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Tuer"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="0"/> + <xsd:maxLength value="54"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="ErweitertesAttribut"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="Code" type="xsd:string"/> + <xsd:element name="Beschreibung" type="xsd:string"/> + <xsd:element name="Wert" type="xsd:string"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> +</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/pvp1.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/pvp1.xsd new file mode 100644 index 00000000..68a1115d --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/pvp1.xsd @@ -0,0 +1,174 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<xs:schema targetNamespace="http://egov.gv.at/pvp1.xsd" xmlns="http://egov.gv.at/pvp1.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
+ <xs:element name="pvpToken">
+ <xs:complexType>
+ <xs:complexContent>
+ <xs:extension base="pvpTokenType" />
+ </xs:complexContent>
+ </xs:complexType>
+ </xs:element>
+ <xs:complexType name="pvpTokenType">
+ <xs:sequence>
+ <xs:element name="authenticate">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element name="participantId" type="xs:string" />
+ <xs:element name="gvOuDomain" type="xs:string" minOccurs="0" maxOccurs="1" />
+ <xs:choice>
+ <xs:element name="userPrincipal">
+ <xs:complexType>
+ <xs:complexContent>
+ <xs:extension base="pvpPrincipalType">
+ <xs:sequence>
+ <xs:element name="gvGid" type="xs:string" />
+ <xs:element name="mail" type="xs:string" minOccurs="0" maxOccurs="1" />
+ <xs:element name="tel" type="xs:string" minOccurs="0" maxOccurs="1" />
+ <xs:element name="bpk" type="xs:string" minOccurs="0" maxOccurs="1" />
+ <xs:element name="gvFunction" type="xs:string" minOccurs="0" maxOccurs="1" />
+ </xs:sequence>
+ </xs:extension>
+ </xs:complexContent>
+ </xs:complexType>
+ </xs:element>
+ <xs:element name="systemPrincipal" type="pvpPrincipalType" />
+ </xs:choice>
+ <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded">
+ <xs:annotation>
+ <xs:documentation>additional authentication properties</xs:documentation>
+ </xs:annotation>
+ </xs:any>
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
+ <xs:element name="authorize" minOccurs="0" maxOccurs="1">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:sequence minOccurs="0">
+ <xs:element name="gvOuId" type="xs:string" />
+ <xs:element name="ou" type="xs:string" />
+ </xs:sequence>
+ <xs:element name="role" maxOccurs="unbounded">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element name="param" minOccurs="0" maxOccurs="unbounded">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element name="key" type="xs:string" />
+ <xs:element name="value" type="xs:string" />
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
+ </xs:sequence>
+ <xs:attribute name="value" type="xs:string" use="required" />
+ </xs:complexType>
+ </xs:element>
+ <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded">
+ <xs:annotation>
+ <xs:documentation>additional authorization properties</xs:documentation>
+ </xs:annotation>
+ </xs:any>
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
+ <xs:element name="accounting" minOccurs="0">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element name="invoiceRecptId" type="xs:string" />
+ <xs:element name="CostCenterId" maxOccurs="unbounded">
+ <xs:complexType>
+ <xs:simpleContent>
+ <xs:extension base="xs:string">
+ <xs:attribute name="default" type="xs:boolean" use="optional" default="false" />
+ </xs:extension>
+ </xs:simpleContent>
+ </xs:complexType>
+ </xs:element>
+ <xs:element name="ChargeCode" maxOccurs="unbounded">
+ <xs:complexType>
+ <xs:simpleContent>
+ <xs:extension base="xs:string">
+ <xs:attribute name="default" type="xs:boolean" use="optional" default="false" />
+ </xs:extension>
+ </xs:simpleContent>
+ </xs:complexType>
+ </xs:element>
+ <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded">
+ <xs:annotation>
+ <xs:documentation>additional properties</xs:documentation>
+ </xs:annotation>
+ </xs:any>
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
+ <xs:element name="pvpChainedToken" type="pvpTokenType" minOccurs="0" />
+ <xs:element name="pvpExtension" block="extension" minOccurs="0">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element name="orig-host" minOccurs="0" maxOccurs="1">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element name="scheme" type="xs:string" />
+ <xs:element name="hostinfo" type="xs:string" />
+ <xs:element name="uri" type="xs:string" />
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
+ <xs:element name="debug-ticket" minOccurs="0" maxOccurs="1">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element name="txid" type="xs:string" />
+ <xs:element name="log-level" type="logLevelType" minOccurs="0" maxOccurs="1" />
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
+ <xs:any namespace="##any" processContents="lax" maxOccurs="unbounded" />
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
+ </xs:sequence>
+ <xs:attribute name="version" type="gvVersionType" use="required" />
+ <xs:anyAttribute namespace="##any" processContents="lax" />
+ </xs:complexType>
+ <xs:complexType name="pvpPrincipalType">
+ <xs:sequence>
+ <xs:element name="userId" type="xs:string" />
+ <xs:element name="cn" type="xs:string" />
+ <xs:element name="gvOuId" type="xs:string" />
+ <xs:element name="ou" type="xs:string" />
+ <xs:element name="gvSecClass" type="gvSecClassType" minOccurs="0" />
+ <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded">
+ <xs:annotation>
+ <xs:documentation>additional principal attributes</xs:documentation>
+ </xs:annotation>
+ </xs:any>
+ </xs:sequence>
+ <xs:anyAttribute namespace="##any" processContents="lax" />
+ </xs:complexType>
+ <xs:simpleType name="gvSecClassType">
+ <xs:restriction base="xs:integer">
+ <xs:enumeration value="0" />
+ <xs:enumeration value="1" />
+ <xs:enumeration value="2" />
+ <xs:enumeration value="3" />
+ </xs:restriction>
+ </xs:simpleType>
+ <xs:simpleType name="gvVersionType">
+ <xs:restriction base="xs:string">
+ <xs:enumeration value="1.0" />
+ <xs:enumeration value="1.1" />
+ <xs:enumeration value="1.2" />
+ <xs:enumeration value="1.8" />
+ <xs:enumeration value="1.9" />
+ </xs:restriction>
+ </xs:simpleType>
+ <xs:simpleType name="logLevelType">
+ <xs:restriction base="xs:integer">
+ <xs:enumeration value="0" />
+ <xs:enumeration value="1" />
+ <xs:enumeration value="2" />
+ <xs:enumeration value="3" />
+ <xs:enumeration value="4" />
+ <xs:enumeration value="5" />
+ </xs:restriction>
+ </xs:simpleType>
+</xs:schema>
diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/secext.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/secext.xsd new file mode 100644 index 00000000..1005b12a --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/secext.xsd @@ -0,0 +1,150 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Legal Disclaimer
+
+The presentation, distribution or other dissemination of the information
+contained in this specification is not a license, either expressly or impliedly,
+to any intellectual property owned or controlled by IBM or Microsoft and\or any other
+third party. IBM and Microsoft and\or any other third party may have patents, patent
+applications, trademarks, copyrights, or other intellectual property rights
+covering subject matter in this document. The furnishing of this document
+does not give you any license to IBM's and Microsoft's or any other third party's patents,
+trademarks, copyrights, or other intellectual property.
+
+This specification and the information contained herein is provided on an "AS IS"
+ basis and to the maximum extent permitted by applicable law, IBM and Microsoft provides
+the document AS IS AND WITH ALL FAULTS, and hereby disclaims all other warranties
+and conditions, either express, implied or statutory, including, but not limited
+to, any (if any) implied warranties, duties or conditions of merchantability, of
+fitness for a particular purpose, of accuracy or completeness of responses, of
+results, of workmanlike effort, of lack of viruses, and of lack of negligence,
+all with regard to the document. ALSO, THERE IS NO WARRANTY OR CONDITION OF
+TITLE, QUIET ENJOYMENT, QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR
+NON-INFRINGEMENT OF ANY INTELLECTUAL PROPERTY RIGHTS WITH REGARD TO THE DOCUMENT.
+
+IN NO EVENT WILL IBM or MICROSOFT BE LIABLE TO ANY OTHER PARTY FOR THE COST OF PROCURING
+SUBSTITUTE GOODS OR SERVICES, LOST PROFITS, LOSS OF USE, LOSS OF DATA, OR ANY
+INCIDENTAL, CONSEQUENTIAL, DIRECT, INDIRECT, OR SPECIAL DAMAGES WHETHER UNDER
+CONTRACT, TORT, WARRANTY, OR OTHERWISE, ARISING IN ANY WAY OUT OF THIS OR ANY
+OTHER AGREEMENT RELATING TO THIS DOCUMENT, WHETHER OR NOT SUCH PARTY HAD ADVANCE
+NOTICE OF THE POSSIBILITY OF SUCH DAMAGES.
+
+Copyright Notice
+
+Copyright 2001, 2002 IBM Corporation and Microsoft Corporation. All rights reserved.
+-->
+<xsd:schema targetNamespace="http://schemas.xmlsoap.org/ws/2002/04/secext" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsse="http://schemas.xmlsoap.org/ws/2002/04/secext" xmlns="http://schemas.xmlsoap.org/ws/2002/04/secext" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" elementFormDefault="qualified" attributeFormDefault="unqualified" version="0.2">
+ <xsd:element name="Security">
+ <xsd:annotation>
+ <xsd:documentation>
+ This element defines header block to use for security-relevant data directed at a specific SOAP actor.
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:any processContents="lax" minOccurs="0" maxOccurs="unbounded">
+ <xsd:annotation>
+ <xsd:documentation>
+ The use of "any" is to allow extensibility and different forms of security data.
+ </xsd:documentation>
+ </xsd:annotation>
+ </xsd:any>
+ </xsd:sequence>
+ <xsd:anyAttribute processContents="lax"/>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="UsernameToken">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="Username"/>
+ <xsd:element ref="Password" minOccurs="0"/>
+ </xsd:sequence>
+ <xsd:attribute name="Id" type="xsd:ID"/>
+ <xsd:anyAttribute namespace="##other"/>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="Username">
+ <xsd:complexType>
+ <xsd:simpleContent>
+ <xsd:extension base="xsd:string">
+ <xsd:anyAttribute namespace="##other"/>
+ </xsd:extension>
+ </xsd:simpleContent>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="Password">
+ <xsd:complexType>
+ <xsd:simpleContent>
+ <xsd:extension base="xsd:string">
+ <xsd:attribute name="Type" type="xsd:QName"/>
+ <xsd:anyAttribute namespace="##other"/>
+ </xsd:extension>
+ </xsd:simpleContent>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="BinarySecurityToken">
+ <xsd:annotation>
+ <xsd:documentation>A security token that is encoded in binary</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:simpleContent>
+ <xsd:extension base="xsd:string">
+ <xsd:attribute name="Id" type="xsd:ID"/>
+ <xsd:attribute name="ValueType" type="xsd:QName"/>
+ <xsd:attribute name="EncodingType" type="xsd:QName"/>
+ <xsd:anyAttribute namespace="##other" processContents="strict"/>
+ </xsd:extension>
+ </xsd:simpleContent>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="SecurityTokenReference">
+ <xsd:annotation>
+ <xsd:documentation>
+ This element is used reference a security token.
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:choice minOccurs="0" maxOccurs="unbounded">
+ <xsd:element ref="Reference"/>
+ <xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:choice>
+ <xsd:attribute name="Id" type="xsd:ID"/>
+ <xsd:anyAttribute namespace="##other" processContents="lax"/>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="Reference">
+ <xsd:complexType>
+ <xsd:attribute name="URI" type="xsd:anyURI"/>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:simpleType name="PasswordTypeEnum">
+ <xsd:restriction base="xsd:QName">
+ <xsd:enumeration value="wsse:PasswordText"/>
+ <xsd:enumeration value="wsse:PasswordDigest"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ <xsd:simpleType name="ValueTypeEnum">
+ <xsd:restriction base="xsd:QName">
+ <xsd:enumeration value="wsse:X509v3"/>
+ <xsd:enumeration value="wsse:Kerberosv5TGT"/>
+ <xsd:enumeration value="wsse:Kerberosv5ST"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ <xsd:simpleType name="EncodingTypeEnum">
+ <xsd:restriction base="xsd:QName">
+ <xsd:enumeration value="wsse:Base64Binary"/>
+ <xsd:enumeration value="wsse:HexBinary"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ <xsd:simpleType name="FaultcodeEnum">
+ <xsd:restriction base="xsd:QName">
+ <xsd:enumeration value="wsse:UnsupportedSecurityToken"/>
+ <xsd:enumeration value="wsse:UnsupportedAlgorithm"/>
+ <xsd:enumeration value="wsse:InvalidSecurity"/>
+ <xsd:enumeration value="wsse:InvalidSecurityToken"/>
+ <xsd:enumeration value="wsse:FailedAuthentication"/>
+ <xsd:enumeration value="wsse:FailedCheck"/>
+ <xsd:enumeration value="wsse:SecurityTokenUnavailable"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/soapenv.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/soapenv.xsd new file mode 100644 index 00000000..a5db77f5 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/eingebunden/soapenv.xsd @@ -0,0 +1,129 @@ +<?xml version='1.0' encoding='UTF-8' ?>
+
+<!-- Schema for the SOAP/1.1 envelope
+
+ This schema has been produced using W3C's SOAP Version 1.2 schema
+ found at:
+
+ http://www.w3.org/2001/06/soap-envelope
+
+ Copyright 2001 Martin Gudgin, Developmentor.
+
+ Changes made are the following:
+ - reverted namespace to http://schemas.xmlsoap.org/soap/envelope/
+ - reverted mustUnderstand to only allow 0 and 1 as lexical values
+ - made encodingStyle a global attribute 20020825
+
+ Further changes:
+
+ - removed default value from mustUnderstand attribute declaration - 20030314
+
+ Original copyright:
+
+ Copyright 2001 W3C (Massachusetts Institute of Technology,
+ Institut National de Recherche en Informatique et en Automatique,
+ Keio University). All Rights Reserved.
+ http://www.w3.org/Consortium/Legal/
+
+ This document is governed by the W3C Software License [1] as
+ described in the FAQ [2].
+
+ [1] http://www.w3.org/Consortium/Legal/copyright-software-19980720
+ [2] http://www.w3.org/Consortium/Legal/IPR-FAQ-20000620.html#DTD
+-->
+
+<!--
+2004-12-13 tsch: Content-Validierung im Body-Element von lax auf strict geändert (Element MUSS bekannt sein)
+-->
+<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
+ xmlns:tns="http://schemas.xmlsoap.org/soap/envelope/"
+ targetNamespace="http://schemas.xmlsoap.org/soap/envelope/" >
+
+
+ <!-- Envelope, header and body -->
+ <xs:element name="Envelope" type="tns:Envelope" />
+ <xs:complexType name="Envelope" >
+ <xs:sequence>
+ <xs:element ref="tns:Header" minOccurs="0" />
+ <xs:element ref="tns:Body" minOccurs="1" />
+ <xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded" processContents="lax" />
+ </xs:sequence>
+ <xs:anyAttribute namespace="##other" processContents="lax" />
+ </xs:complexType>
+
+ <xs:element name="Header" type="tns:Header" />
+ <xs:complexType name="Header" >
+ <xs:sequence>
+ <xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded" processContents="lax" />
+ </xs:sequence>
+ <xs:anyAttribute namespace="##other" processContents="lax" />
+ </xs:complexType>
+
+ <xs:element name="Body" type="tns:Body" />
+ <xs:complexType name="Body" >
+ <xs:sequence>
+ <xs:any namespace="##any" minOccurs="0" maxOccurs="unbounded" processContents="strict" />
+ </xs:sequence>
+ <xs:anyAttribute namespace="##any" processContents="lax" >
+ <xs:annotation>
+ <xs:documentation>
+ Prose in the spec does not specify that attributes are allowed on the Body element
+ </xs:documentation>
+ </xs:annotation>
+ </xs:anyAttribute>
+ </xs:complexType>
+
+
+ <!-- Global Attributes. The following attributes are intended to be usable via qualified attribute names on any complex type referencing them. -->
+ <xs:attribute name="mustUnderstand" >
+ <xs:simpleType>
+ <xs:restriction base='xs:boolean'>
+ <xs:pattern value='0|1' />
+ </xs:restriction>
+ </xs:simpleType>
+ </xs:attribute>
+ <xs:attribute name="actor" type="xs:anyURI" />
+
+ <xs:simpleType name="encodingStyle" >
+ <xs:annotation>
+ <xs:documentation>
+ 'encodingStyle' indicates any canonicalization conventions followed in the contents of the containing element. For example, the value 'http://schemas.xmlsoap.org/soap/encoding/' indicates the pattern described in SOAP specification
+ </xs:documentation>
+ </xs:annotation>
+ <xs:list itemType="xs:anyURI" />
+ </xs:simpleType>
+
+ <xs:attribute name="encodingStyle" type="tns:encodingStyle" />
+ <xs:attributeGroup name="encodingStyle" >
+ <xs:attribute ref="tns:encodingStyle" />
+ </xs:attributeGroup>
+
+ <xs:element name="Fault" type="tns:Fault" />
+ <xs:complexType name="Fault" final="extension" >
+ <xs:annotation>
+ <xs:documentation>
+ Fault reporting structure
+ </xs:documentation>
+ </xs:annotation>
+ <xs:sequence>
+ <xs:element name="faultcode" type="xs:QName" />
+ <xs:element name="faultstring" type="xs:string" />
+ <xs:element name="faultactor" type="xs:anyURI" minOccurs="0" />
+ <xs:element name="detail" type="tns:detail" minOccurs="0" />
+ </xs:sequence>
+ </xs:complexType>
+
+ <xs:complexType name="detail">
+ <xs:sequence>
+ <xs:any namespace="##any" minOccurs="0" maxOccurs="unbounded" processContents="lax" />
+ </xs:sequence>
+ <xs:anyAttribute namespace="##any" processContents="lax" />
+ </xs:complexType>
+
+</xs:schema>
+
+
+
+
+
+
diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/AblaufendeAuskunftssperrenSuche.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/AblaufendeAuskunftssperrenSuche.xsd new file mode 100644 index 00000000..cf5a661e --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/AblaufendeAuskunftssperrenSuche.xsd @@ -0,0 +1,76 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: AblaufendeAuskunftssperrenSuche.xsd
+Zweck: Definiert Datentypen für die Suche nach Personen mit ablaufenden Auskunftssperren im ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2005-02-07 tsch: AnzahlSaetze hinzugefügt
+2004-09-28 tsch: Erstellung
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+ <xsd:include schemaLocation="Personenabfrage.xsd"/>
+
+ <xsd:element name="AblaufendeAuskunftssperrenSucheRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="SperreBis"/>
+ <xsd:element ref="base:AnzahlSaetze"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AblaufendeAuskunftssperrenSucheResponse">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="AblaufendeAuskunftssperrenSucheAnfrage"/>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="AblaufendeAuskunftssperreErgebnis" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AblaufendeAuskunftssperrenSucheAnfrage">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="SperreBis"/>
+ <xsd:element ref="base:AnzahlSaetze"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AblaufendeAuskunftssperreErgebnis" type="AblaufendeAuskunftssperreErgebnisType"/>
+ <xsd:complexType name="AblaufendeAuskunftssperreErgebnisType">
+ <xsd:annotation>
+ <xsd:documentation>Enthält je einen 'PersonErgebnisSatz' pro gefundener Person. Wird keine Person gefunden, befindet sich eine entprechende Text-Message in 'PersonensucheMsg'</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:GefundeneSaetze">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtanzahl der in der Datenbank gefundenen Personen</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="base:SaetzeVon">
+ <xsd:annotation>
+ <xsd:documentation>Beginn-Index dieser Ergebnisliste im Gesamtergebnis (bei Blaettern); Start mit 1</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="base:SaetzeBis">
+ <xsd:annotation>
+ <xsd:documentation>Ende-Index dieser Ergebnisliste im Gesamtergebnis (bei Blaettern)</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element name="PersonErgebnisSatz" type="PAbfrageErgebnisSatzType" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Adoption.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Adoption.xsd new file mode 100644 index 00000000..81a29052 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Adoption.xsd @@ -0,0 +1,63 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Adoption.xsd
+Zweck: Definiert Datentypen für Adoption einer Person im ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2005-02-07 tsch: AdoptionInfo optional
+2004-11-25 tsch: Erstellt
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+ <xsd:include schemaLocation="../zmr/entities/Person.xsd"/>
+
+ <xsd:element name="AdoptionRequest">
+ <xsd:annotation>
+ <xsd:documentation>Es können die Person und deren abhängige Entities (z.B. Staatsangehoerigkeit) unabhängig geändert werden. Felder, die nicht geschickt werden, bleiben unverändert, leer geschickte Felder werden gelöscht.</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="AdoptionInfo" minOccurs="0"/>
+ <xsd:element ref="PersonReferenz"/>
+ <xsd:element ref="cio:Familienname"/>
+ <xsd:element ref="cio:AlternativName" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AdoptionResponse">
+ <xsd:annotation>
+ <xsd:documentation>Server-Antwort zur Adoption</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="PersonErgebnis">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtdatensatz der geänderten (adoptierten) Person (mit EntityIDs der Person und deren abhängigen Entities)</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AdoptionInfo" type="AdoptionInfoType"/>
+ <xsd:complexType name="AdoptionInfoType">
+ <xsd:annotation>
+ <xsd:documentation>allgemeine Fachliche Informationen zur Adoption</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:Von" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Adresssuche.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Adresssuche.xsd new file mode 100644 index 00000000..41dab2e2 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Adresssuche.xsd @@ -0,0 +1,128 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Adresssuche.xsd
+Zweck: Definiert Datentypen für die Suche nach offiziellen STATA-Adressen im ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2009-11-20 mp: +Gebäudeeigenschaft, +Nutzungsart
+2005-06-15 pwag: CQ1370: Suchart ADRESSPRUEFUNG hinzugefügt
+2004-11-15 tsch: Detailgrad Gemeinde hinzugefügt
+2004-07-30 tsch: HauptIdentadresse->HauptIdent; Felder hinzu: Adressstatus, Adressschlüssel, HauptIdent, Hofname, Gebaeudeunterscheidung, GBDUntteil, InfoMeldewesen
+2004-07-08 tsch: Felder Adresszusatz, HauptIdentadresse hinzugefügt
+2004-06-24 tsch: GBRRefkey hinzugefügt
+2004-05-17 tsch: Organisation entfernt
+2004-01-27 tsch: Erstellung
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+
+ <xsd:element name="AdresssucheRequest">
+ <xsd:annotation>
+ <xsd:documentation>Suchdaten für die STATA - Adresssuche im ZMR</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="AdresssucheInfo"/>
+ <xsd:element ref="Adressdaten"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AdresssucheResponse">
+ <xsd:annotation>
+ <xsd:documentation>Anfragedaten, sowie Suchergebnis oder Text-Meldung (falls nichts gefunden)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="AdresssucheAnfrage"/>
+ <xsd:element ref="base:Message"/>
+ <!-- gibt an, ob Klaerungsadressen erlaubt sind oder nicht -->
+ <xsd:element name="inclKlaerungsadressen" type="xsd:boolean" minOccurs="0"/>
+ <xsd:element ref="Adresssuchergebnis"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AdresssucheAnfrage">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="AdresssucheInfo"/>
+ <xsd:element ref="Adressdaten"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AdresssucheInfo" type="AdresssucheInfoType"/>
+ <xsd:complexType name="AdresssucheInfoType">
+ <xsd:annotation>
+ <xsd:documentation>Fachliche Informationen zur Adresssuche</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element name="Suchart">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="ADRESSSUCHE"/>
+ <xsd:enumeration value="IDENTEADRESSENSUCHE"/>
+ <xsd:enumeration value="ADRESSPRUEFUNG"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="Adresssuchergebnis" type="AdresssuchergebnisType"/>
+ <xsd:complexType name="AdresssuchergebnisType">
+ <xsd:sequence>
+ <xsd:element name="Detailgrad">
+ <xsd:annotation>
+ <xsd:documentation>Gibt der Detailgrad der Adressen im Suchergebnis an</xsd:documentation>
+ </xsd:annotation>
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="Gemeinde"/>
+ <xsd:enumeration value="Ortschaft"/>
+ <xsd:enumeration value="Strassenname"/>
+ <xsd:enumeration value="Orientierungsnummer"/>
+ <xsd:enumeration value="Gebaeudeteil"/>
+ <xsd:enumeration value="Tuer"/>
+ <xsd:enumeration value="Gesamtadresse"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element ref="base:GefundeneSaetze">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtanzahl der gefundenen Sätze</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="Adressdaten" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="Adressdaten">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="cio:PostAdresse" minOccurs="0"/>
+ <xsd:element ref="base:Adressstatus" minOccurs="0"/>
+ <xsd:element ref="base:Adressschluessel" minOccurs="0"/>
+ <xsd:element ref="base:HauptIdent" minOccurs="0"/>
+ <xsd:element ref="base:NameZuteil" minOccurs="0"/>
+ <xsd:element ref="base:Hofname" minOccurs="0"/>
+ <xsd:element ref="base:Gebaeudeunterscheidung" minOccurs="0"/>
+ <xsd:element ref="base:GBDUntteil" minOccurs="0"/>
+ <xsd:element ref="base:InfoMeldewesen" minOccurs="0"/>
+ <xsd:element ref="base:GbdEigenschaft" minOccurs="0"/>
+ <xsd:element ref="base:NtzArt" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Anwendungsintegration.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Anwendungsintegration.xsd new file mode 100644 index 00000000..4bdd43c5 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Anwendungsintegration.xsd @@ -0,0 +1,97 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Name: Anwendungsintegration.xsd +Zweck: Definiert Datentypen für den Usecase "ZMR Anwendungsintegration" im ZMR +Author(s): Ehrenmüller Oliver, ZMR-SU + +Aenderungshistorie: +2007-09-04 teo: erstellt. +--> + +<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" + xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" + elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + + <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/> + <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/> + + <xsd:include schemaLocation="Personensuche.xsd"/> + <xsd:include schemaLocation="Behoerdenabfrage.xsd"/> + + <xsd:element name="AnwendungsintegrationRequest"> + <xsd:annotation> + <xsd:documentation>Suchkriterien für die Anwendungsintegration im ZMR/ERnP (Personendaten + Adressdaten)</xsd:documentation> + </xsd:annotation> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="AnwendungsintegrationInfo"/> + <xsd:element ref="PersonKey" minOccurs="0"/> + <xsd:element ref="cio:NatuerlichePerson" minOccurs="0"/> + <xsd:element ref="cio:PostAdresse" minOccurs="0"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="AnwendungsintegrationResponse"> + <xsd:annotation> + <xsd:documentation>In der Response werden die Anfragedaten aus dem Request, und das Suchergebnis bzw. eine Text-Meldung geliefert (Falls keine Person gefunden)</xsd:documentation> + </xsd:annotation> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="AnwendungsintegrationAnfrage"/> + <xsd:element ref="base:Message"/> + <xsd:element ref="AnwendungsintegrationUeberblick" minOccurs="0"/> + <xsd:element ref="AnwendungsintegrationDetail" minOccurs="0"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="AnwendungsintegrationInfo"> + <xsd:complexType> + <xsd:annotation> + <xsd:documentation>Fachliche Informationen zur Anwendungsintegration</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element ref="base:Bezugsfeld"/> + <xsd:element name="BezugsfeldDokumente"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:enumeration value="BUERGERZUSTIMMUNG"/> + <xsd:enumeration value="BUNDESGESETZ"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Geburtsurkunde" type="xsd:boolean" minOccurs="0"/> + <xsd:element name="Heiratsurkunde" type="xsd:boolean" minOccurs="0"/> + <xsd:element name="Staatsbuergerschaftsnachweis" type="xsd:boolean" minOccurs="0"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="AnwendungsintegrationUeberblick"> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="base:AnzahlSaetze"/> + <xsd:element ref="PersonUeberblick" minOccurs="1" maxOccurs="unbounded"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="AnwendungsintegrationAnfrage"> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="AnwendungsintegrationInfo"/> + <xsd:element ref="PersonKey" minOccurs="0"/> + <xsd:element ref="cio:NatuerlichePerson" minOccurs="0"/> + <xsd:element ref="cio:PostAdresse" minOccurs="0"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="AnwendungsintegrationDetail" type="PersonErgebnisSatzType"/> + +</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/AnwendungsintegrationWiederholung.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/AnwendungsintegrationWiederholung.xsd new file mode 100644 index 00000000..6bbd038d --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/AnwendungsintegrationWiederholung.xsd @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Name: AnwendungsintegrationWiederholung.xsd +Zweck: Definiert Datentypen für den Usecase "ZMR Anwendungsintegration Wiederholungsanfrage" im ZMR +Author(s): Ehrenmüller Oliver, ZMR-SU + +Aenderungshistorie: +2007-11-28 teo: erstellt. +--> + +<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" + xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" + elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + + <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/> + <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/> + + <xsd:include schemaLocation="Anwendungsintegration.xsd"/> + + <xsd:element name="AnwendungsintegrationWiederholungRequest"> + <xsd:annotation> + <xsd:documentation>Sammel-Token für die AnwendungsintegrationWiederholung im ZMR/ERnP (Personendaten + Adressdaten)</xsd:documentation> + </xsd:annotation> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="AnwendungsintegrationWiederholungInfo"/> + <xsd:element ref="AnwendungsintegrationWiederholungAbfrage" maxOccurs="10"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="AnwendungsintegrationWiederholungInfo"> + <xsd:complexType> + <xsd:annotation> + <xsd:documentation>Fachliche Informationen zur AnwendungsintegrationWiederholung</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element ref="base:Bezugsfeld"/> + <xsd:element name="Ergebnisoption"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:enumeration value="PERSONENDATEN"/> + <xsd:enumeration value="PERSONENDATENBPK"/> + <xsd:enumeration value="BPK"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Verfahrensbereich" minOccurs="0"> + <xsd:annotation> + <xsd:documentation>Verfahrensbereich inkl. Prefix für den die bPK errechnet werden soll (zb. urn:publicid:gv.at:cdid+PV)</xsd:documentation> + </xsd:annotation> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="26"/> + <xsd:maxLength value="29"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + <xsd:element name="Fremdbereich" minOccurs="0" maxOccurs="10"> + <xsd:annotation> + <xsd:documentation>Fremd-bPKs die miterzeugt werden sollen. (zb. urn:publicid:gv.at:ecdid+BMI+ZP)</xsd:documentation> + </xsd:annotation> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="28"/> + <xsd:maxLength value="50"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="AnwendungsintegrationWiederholungAbfrage"> + <xsd:annotation> + <xsd:documentation>Suchkriterien für die Anwendungsintegration/Wiederholungsabfrage im ZMR/ERnP (Personendaten + Adressdaten)</xsd:documentation> + </xsd:annotation> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="cio:NatuerlichePerson" minOccurs="0"/> + <xsd:element ref="cio:PostAdresse" minOccurs="0"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + + <xsd:element name="AnwendungsintegrationWiederholungResponse"> + <xsd:annotation> + <xsd:documentation>In der Response werden die Anfragedaten aus dem Request, und das Suchergebnis bzw. eine Text-Meldung geliefert (Falls keine Person gefunden)</xsd:documentation> + </xsd:annotation> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="AnwendungsintegrationWiederholungAnfrage"/> + <xsd:element ref="base:Message"/> + <xsd:element ref="AnwendungsintegrationWiederholungDetail" minOccurs="0" maxOccurs="10"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="AnwendungsintegrationWiederholungAnfrage"> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="AnwendungsintegrationWiederholungInfo"/> + <xsd:element ref="AnwendungsintegrationWiederholungAbfrage" maxOccurs="10"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="AnwendungsintegrationWiederholungDetail" type="PersonErgebnisSatzType"/> + +</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/AuskunftssperreAendern.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/AuskunftssperreAendern.xsd new file mode 100644 index 00000000..9e29f2f2 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/AuskunftssperreAendern.xsd @@ -0,0 +1,55 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Name: AuskunftssperreAendern.xsd +Zweck: Definiert Datentypen für den Usecase "Wohnsitz Auskunftssperre Ändern" im ZMR +Author(s): Ehrenmüller Oliver, ZMR-SU + +Aenderungshistorie: +2009-08-06 teo: Erstellt +--> + +<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" + xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" + xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" + xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + + <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/> + <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/> + <xsd:include schemaLocation="../zmr/entities/Person.xsd"/> + <xsd:include schemaLocation="../zmr/entities/Meldung.xsd"/> + <xsd:include schemaLocation="../zmr/entities/Auskunftssperre.xsd"/> + + <xsd:element name="AuskunftssperreAendernRequest"> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="PersonReferenz"/> + <xsd:element ref="MeldungReferenz"/> + <xsd:element ref="AuskunftssperreAenderung" minOccurs="0" maxOccurs="unbounded"/> + <xsd:element ref="AuskunftssperreAnlage" minOccurs="0" maxOccurs="unbounded"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="AuskunftssperreAendernResponse"> + <xsd:complexType> + <xsd:annotation> + <xsd:documentation>Server-Antwort zur Änderung von Auskunftssperren auf Meldungen</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element ref="base:Message"/> + <xsd:sequence minOccurs="0"> + <xsd:element ref="PersonReferenz"/> + <xsd:element ref="MeldungErgebnis"> + <xsd:annotation> + <xsd:documentation>Gesamtdatensatz der korrigierten Meldung (mit EntityIDs der Meldung und deren abhängigen Entities)</xsd:documentation> + </xsd:annotation> + </xsd:element> + </xsd:sequence> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + +</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/AvisoAendern.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/AvisoAendern.xsd new file mode 100644 index 00000000..37a3ac98 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/AvisoAendern.xsd @@ -0,0 +1,93 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: AvisoAendern.xsd
+Zweck: Definiert Datentypen für die Änderung von Avisi
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2004-11-26 tsch: Avisotreffer, AvisoBeenden hinzugefügt
+2004-04-13 tsch: Erstellung
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:include schemaLocation="../zmr/entities/Aviso.xsd"/>
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+
+ <xsd:element name="AvisoAendernRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="AvisoAendernInfo"/>
+ <xsd:element ref="AvisoReferenz"/>
+ <xsd:choice>
+ <xsd:sequence>
+ <xsd:element ref="AvisoAenderung"/>
+ <xsd:element ref="AvisoTrefferAenderung" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ <xsd:sequence>
+ <xsd:element ref="AvisoTrefferAenderung" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:choice>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AvisoAendernResponse">
+ <xsd:annotation>
+ <xsd:documentation>Server-Antwort zur Avisonänderung</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="AvisoErgebnis">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtdatensatz des geänderten Aviso</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AvisoBeendenRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="AvisoReferenz" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AvisoBeendenResponse">
+ <xsd:annotation>
+ <xsd:documentation>Server-Antwort zur Avisobeendugung</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="AvisoErgebnis" minOccurs="1" maxOccurs="unbounded">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtdatensätze der beendeten Avisi</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AvisoAendernInfo" type="AvisoAendernInfoType"/>
+ <xsd:complexType name="AvisoAendernInfoType">
+ <xsd:annotation>
+ <xsd:documentation>Fachliche Informationen zur Avisoaenderung</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexContent>
+ <xsd:extension base="base:InfoFachlichType">
+
+ </xsd:extension>
+ </xsd:complexContent>
+
+ </xsd:complexType>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/AvisoAnlegen.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/AvisoAnlegen.xsd new file mode 100644 index 00000000..92c37432 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/AvisoAnlegen.xsd @@ -0,0 +1,60 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: AvisoAnlegen.xsd
+Zweck: Definiert Datentypen für die Anlage von Avisi
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2004-04-13 tsch: Erstellung
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:include schemaLocation="../zmr/entities/Aviso.xsd"/>
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+
+ <xsd:element name="AvisoAnlegenRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="AvisoAnlegenInfo"/>
+ <xsd:element ref="AvisoAnlage"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AvisoAnlegenResponse">
+ <xsd:annotation>
+ <xsd:documentation>Server-Antwort zur Avisonanlage</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="AvisoErgebnis">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtdatensatz des im ZMR angelegten Aviso</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AvisoAnlegenInfo" type="AvisoAnlegenInfoType"/>
+ <xsd:complexType name="AvisoAnlegenInfoType">
+ <xsd:annotation>
+ <xsd:documentation>Fachliche Informationen zur Avisoanlage</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexContent>
+ <xsd:extension base="base:InfoFachlichType">
+
+ </xsd:extension>
+ </xsd:complexContent>
+
+ </xsd:complexType>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/AvisoFreigeben.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/AvisoFreigeben.xsd new file mode 100644 index 00000000..6291dd58 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/AvisoFreigeben.xsd @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: AvisoFreigeben.xsd
+Zweck: Definiert Datentypen für die Freigabe von Avisi durch die Meldebehörde
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2005-01-14 tsch: Freigabe Suche erweitert
+2004-11-26 tsch: Erstellung
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:include schemaLocation="../zmr/Avisosuche.xsd"/>
+
+ <xsd:element name="AvisoFreigebenSucheRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:AnzahlSaetze"/>
+ <xsd:element ref="AvisoSuche" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AvisoFreigebenSucheResponse">
+ <xsd:annotation>
+ <xsd:documentation>Server-Antwort mit den zu aktivierenden Avisi</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="Avisosuchergebnis" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AvisoFreigebenRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="Freigegeben" type="xsd:boolean"/>
+ <xsd:element ref="AvisoReferenz" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AvisoFreigebenResponse">
+ <xsd:annotation>
+ <xsd:documentation>Server-Antwort zur Aviso-Aktivierung</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="AvisoErgebnis" minOccurs="1" maxOccurs="unbounded">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtdatensätze der freigegebenen/abgelehnten Avisi</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Avisosuche.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Avisosuche.xsd new file mode 100644 index 00000000..82e48c49 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Avisosuche.xsd @@ -0,0 +1,124 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Avisosuche.xsd
+Zweck: Definiert Datentypen für die Avisosuche
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2005-01-14 tsch: Feld NurHistorische hinzugefügt
+2004-11-26 tsch: Erweiterung um Avisotreffer
+2004-06-22 tsch: SaetzeVon und SaetzeBis im Ergebnis
+2004-05-17 tsch: Organisation entfernt
+2004-04-06 tsch: Erstellung
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:include schemaLocation="../zmr/entities/Aviso.xsd"/>
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+
+ <xsd:element name="AvisosucheRequest">
+ <xsd:annotation>
+ <xsd:documentation>Suchedaten fuer die Suche nach existierenden Avisi, sowie nach Personen im ZPR</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="AvisosucheInfo"/>
+ <xsd:element ref="AvisoSuche" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AvisosucheResponse">
+ <xsd:annotation>
+ <xsd:documentation>Anfragedaten, sowie Suchergebnis oder Text-Meldung (falls nichts gefunden)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="AvisosucheAnfrage"/>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="Avisosuchergebnis" minOccurs="0"/>
+ <xsd:element ref="PersonenAbfrageErgebnis" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AvisosucheAnfrage">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="AvisosucheInfo"/>
+ <xsd:element ref="AvisoSuche" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AvisosucheInfo" type="AvisosucheInfoType"/>
+ <xsd:complexType name="AvisosucheInfoType">
+ <xsd:annotation>
+ <xsd:documentation>Fachliche Informationen zur Avisosuche</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:InclusivHistorie"/>
+ <xsd:element ref="base:Formalisiert"/>
+ <xsd:element name="InclusivSucheZMR" type="xsd:boolean"/>
+ <xsd:element name="NurAvisoTreffer" type="xsd:boolean"/>
+ <xsd:element name="UnbearbeiteteAnzeigen" type="xsd:boolean"/>
+ <xsd:element name="NurHistorische" type="xsd:boolean"/>
+ <xsd:element ref="base:AnzahlSaetze"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="AvisoSuche" type="AvisoSucheType"/>
+ <xsd:complexType name="AvisoSucheType">
+ <xsd:annotation>
+ <xsd:documentation>Aviso-Struktur für die Suche nach Avisi bzw. Personen</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="AvisoAktenzahl" minOccurs="0"/>
+ <xsd:element ref="base:BehoerdenNr" minOccurs="0"/>
+ <xsd:element ref="AvisoZahl" minOccurs="0"/>
+ <xsd:element ref="AvisoSuchdaten" minOccurs="0"/>
+ <xsd:element ref="AvisoStatus" minOccurs="0"/>
+ <xsd:element name="AblaufZeitraum" minOccurs="0">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="Von" type="base:TimestampType"/>
+ <xsd:element name="Bis" type="base:TimestampType"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="Avisosuchergebnis" type="AvisosuchergebnisType"/>
+ <xsd:complexType name="AvisosuchergebnisType">
+ <xsd:annotation>
+ <xsd:documentation>Aviso-Struktur für Neuanlagen von Avisi im ZMR</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:GefundeneSaetze">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtanzahl der in der Datenbank gefundenen Avisi</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="base:SaetzeVon">
+ <xsd:annotation>
+ <xsd:documentation>Beginn-Index dieser Ergebnisliste im Gesamtergebnis (bei Blaettern); Start mit 1</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="base:SaetzeBis">
+ <xsd:annotation>
+ <xsd:documentation>Ende-Index dieser Ergebnisliste im Gesamtergebnis (bei Blaettern)</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="AvisoErgebnis" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/BKMeldeauskunft.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/BKMeldeauskunft.xsd new file mode 100644 index 00000000..b82fae63 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/BKMeldeauskunft.xsd @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: BKMeldeauskunft.xsd
+Zweck: Definiert Datentypen für die Meldeauskunft mit Bür aus dem ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2004-10-27 tsch: Meldeauskunft aus Mussfeld im Ergebnis
+2004-05-17 tsch: ZMR-Zahl hinzugefügt
+2004-04-01 tsch: Erstellung
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+
+ <xsd:include schemaLocation="Meldeauskunft.xsd"/>
+
+ <xsd:element name="BKMeldeauskunftRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="BKMeldeauskunftInfo"/>
+ <xsd:element ref="base:ZMRZahl" minOccurs="0"/>
+ <xsd:element ref="cio:NatuerlichePerson"/>
+ <xsd:element ref="cio:PostAdresse" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BKMeldeauskunftResponse">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="BKMeldeauskunftAnfrage"/>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="Meldeauskunft" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BKMeldeauskunftAnfrage">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="BKMeldeauskunftInfo"/>
+ <xsd:element ref="base:ZMRZahl" minOccurs="0"/>
+ <xsd:element ref="cio:NatuerlichePerson" minOccurs="0"/>
+ <xsd:element ref="cio:PostAdresse" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BKMeldeauskunftInfo" type="BKMeldeauskunftInfoType"/>
+ <xsd:complexType name="BKMeldeauskunftInfoType">
+ <xsd:annotation>
+ <xsd:documentation>allgemeine Fachliche Informationen für die Meldeauskunft</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:Bezugsfeld"/>
+ <xsd:element ref="base:BPKPersonInfo"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/BPKPruefung.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/BPKPruefung.xsd new file mode 100644 index 00000000..eb9b3798 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/BPKPruefung.xsd @@ -0,0 +1,76 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: BPKPruefung.xsd
+Zweck: Definiert Datentypen für die BPK-Prüfung im ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2005-05-24 tsch: Erstellung
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+
+
+ <xsd:element name="BPKPruefungRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="BPKPruefungInfo"/>
+ <xsd:element ref="base:Bereichskennung"/>
+ <xsd:element ref="base:BPK"/>
+ <xsd:element ref="cio:NatuerlichePerson"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BPKPruefungResponse">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="BPKPruefungAnfrage"/>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="BPKPruefungErgebnis" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BPKPruefungAnfrage">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="BPKPruefungInfo"/>
+ <xsd:element ref="base:Bereichskennung"/>
+ <xsd:element ref="base:BPK"/>
+ <xsd:element ref="cio:NatuerlichePerson"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BPKPruefungInfo" type="BPKPruefungInfoType"/>
+ <xsd:complexType name="BPKPruefungInfoType">
+ <xsd:annotation>
+ <xsd:documentation>allgemeine Fachliche Informationen für die BPK-Pruefung</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:Bezugsfeld"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+
+ <xsd:element name="BPKPruefungErgebnis">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="cio:NatuerlichePerson" minOccurs="0"/>
+ <xsd:element ref="cio:PostAdresse" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="AktMeldesatz" type="xsd:boolean"/>
+ <xsd:element ref="base:GemeldetBis" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Behoerdenabfrage.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Behoerdenabfrage.xsd new file mode 100644 index 00000000..6e764562 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Behoerdenabfrage.xsd @@ -0,0 +1,126 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Behoerdenabfrage.xsd
+Zweck: Definiert Datentypen für die Behoerdenabfrage des ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2005-01-04 tsch: Feld Personendaten in BehoerdenabfrageDetail optional für Negativdruckauskunft
+2004-12-13 tsch: StandarddokumenteLiefern hinzugefügt
+2004-08-02 tsch: Erstellung
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+
+ <xsd:include schemaLocation="Personensuche.xsd"/>
+
+ <xsd:element name="BehoerdenabfrageRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="BehoerdenabfrageInfo"/>
+ <xsd:element ref="PersonKey" minOccurs="0"/>
+ <xsd:element ref="base:ZMRZahl" minOccurs="0"/>
+ <xsd:element ref="cio:NatuerlichePerson" minOccurs="0"/>
+ <xsd:element ref="cio:PostAdresse" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BehoerdenabfrageResponse">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="BehoerdenabfrageAnfrage"/>
+ <xsd:element ref="base:Message"/>
+ <xsd:choice minOccurs="0">
+ <xsd:element ref="BehoerdenabfrageUeberblick"/>
+ <xsd:element ref="BehoerdenabfrageDetail"/>
+ </xsd:choice>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BehoerdenabfrageAnfrage">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="BehoerdenabfrageInfo"/>
+ <xsd:element ref="PersonKey" minOccurs="0"/>
+ <xsd:element ref="base:ZMRZahl" minOccurs="0"/>
+ <xsd:element ref="cio:NatuerlichePerson" minOccurs="0"/>
+ <xsd:element ref="cio:PostAdresse" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BehoerdenabfrageInfo" type="BehoerdenabfrageInfoType"/>
+ <xsd:complexType name="BehoerdenabfrageInfoType">
+ <xsd:annotation>
+ <xsd:documentation>allgemeine Fachliche Informationen für die Behördenabfrage</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:Bezugsfeld" minOccurs="0"/>
+ <xsd:element name="BehoerdenabfrageAction">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="BUNDGESETZ"/>
+ <xsd:enumeration value="SONSTIGES"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="StandarddokumenteLiefern" minOccurs="0">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="BUERGER"/>
+ <xsd:enumeration value="GESETZ"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element ref="base:InclusivHistorie"/>
+ <xsd:element ref="base:Formalisiert"/>
+ <xsd:element ref="base:ErstellePDF" minOccurs="0"/>
+ <xsd:element name="berechneBpk" type="xsd:boolean" default="false" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="BehoerdenabfrageUeberblick">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:AnzahlSaetze"/>
+ <xsd:element ref="PersonUeberblick" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="PersonUeberblick">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="PersonKey" />
+ <xsd:element ref="cio:Geburtsdatum" />
+ <xsd:element ref="cio:Geburtsort" minOccurs="0" />
+ <xsd:element ref="cio:Postleitzahl" minOccurs="0" />
+ <xsd:element ref="cio:Ortschaft" minOccurs="0" />
+ <xsd:element ref="cio:Gemeinde" minOccurs="0" />
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BehoerdenabfrageDetail">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="Personendaten" minOccurs="0"/>
+ <xsd:element ref="Meldedaten" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="PDFDaten" type="xsd:base64Binary"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="PersonKey" type="base:IDType"/>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/BehoerdenattributeAendern.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/BehoerdenattributeAendern.xsd new file mode 100644 index 00000000..aa4b2bbf --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/BehoerdenattributeAendern.xsd @@ -0,0 +1,68 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: BehoerdenattributeAendern.xsd
+Zweck: Definiert Datentypen für Änderungen an den Behördenattribute der Meldungen im ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2004-09-27 tsch: Erstellt
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:include schemaLocation="../zmr/entities/Person.xsd"/>
+ <xsd:include schemaLocation="../zmr/entities/Meldung.xsd"/>
+
+ <xsd:element name="BehoerdenattributeAendernRequest">
+ <xsd:annotation>
+ <xsd:documentation>
+ Referenz-Daten der betroffenen Person und der Meldung, sowie die geänderten Behördenattribute.
+ Nicht übermittelte Felder bleiben unverändert, Felder, die als Leer-Tags geschickt werden, werden gelöscht.
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="BehoerdenattributeAendernInfo"/>
+ <xsd:element ref="PersonReferenz"/>
+ <xsd:element ref="MeldungReferenz"/>
+ <xsd:element name="BehoerdenattributeSetzen" type="BehoerdenattributeSetzenType"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BehoerdenattributeAendernResponse">
+ <xsd:annotation>
+ <xsd:documentation>Server-Antwort zum Änderungsvorgang</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="PersonReferenz"/>
+ <xsd:element ref="MeldungErgebnis">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtdatensatz der geänderten Meldung (geänderte Behördenattribute)</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BehoerdenattributeAendernInfo" type="BehoerdenattributeAendernInfoType"/>
+ <xsd:complexType name="BehoerdenattributeAendernInfoType">
+ <xsd:annotation>
+ <xsd:documentation>allgemeine Fachliche Informationen zur Änderung der Behördenattribute</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexContent>
+ <xsd:extension base="base:InfoFachlichType">
+
+ </xsd:extension>
+ </xsd:complexContent>
+ </xsd:complexType>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Bestandsaenderungen.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Bestandsaenderungen.xsd new file mode 100644 index 00000000..8abbbedf --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Bestandsaenderungen.xsd @@ -0,0 +1,140 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Zuzugsbestaetigung.xsd
+Zweck: Definiert Datentypen für die Zuzugsbetätigungen aus dem ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2005-01-11 tsch: Feld InclusiveAdressen hinzugefügt
+2004-08-23 tsch: Kapselung der Bestandsänderungssätze im Element Bestandsaenderung
+2004-08-20 tsch: GeburtsdatumVon, GeburtsdatumBis, Geschlecht in Anforderung optional
+2004-08-17 tsch: Erstellung
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+
+ <xsd:element name="BestandsaenderungenRequest">
+ <xsd:annotation>
+ <xsd:documentation>Anfragedaten der Bestandsaenderungen-Anforderung</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="BestandsaenderungenInfo"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BestandsaenderungenResponse">
+ <xsd:annotation>
+ <xsd:documentation>In der Response werden die Anfragedaten aus dem Request und das Abgleichergebnis geliefert.</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="BestandsaenderungenAnfrage"/>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="Bestandsaenderungen" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BestandsaenderungenInfo" type="BestandsaenderungenInfoType"/>
+
+ <xsd:complexType name="BestandsaenderungenInfoType">
+ <xsd:sequence>
+ <xsd:element name="AenderungenVon" type="base:TimestampType"/>
+ <xsd:element name="AenderungenBis" type="base:TimestampType"/>
+ <xsd:element name="InclusiveAdressen" type="xsd:boolean"/>
+ <xsd:element name="GeburtsdatumVon" type="base:DatumType" minOccurs="0"/>
+ <xsd:element name="GeburtsdatumBis" type="base:DatumType" minOccurs="0"/>
+ <xsd:element ref="cio:Geschlecht" minOccurs="0"/>
+ <xsd:element ref="Veraenderung" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="BestandsaenderungenAnfrage">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="BestandsaenderungenInfo"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="Bestandsaenderungen" type="BestandsaenderungenType"/>
+
+ <xsd:complexType name="BestandsaenderungenType">
+ <xsd:sequence>
+ <xsd:element ref="base:GefundeneSaetze">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtanzahl der Bestandsaenderung-Saetze für diese Anfrage</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="base:AnzahlSaetze">
+ <xsd:annotation>
+ <xsd:documentation>Anzahl der im File gelieferten Bestandsaenderung-Saetze</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="BestandsaenderungSatz" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="BestandsaenderungSatz" type="BestandsaenderungSatzType"/>
+ <xsd:complexType name="BestandsaenderungSatzType">
+ <xsd:sequence>
+ <xsd:element name="Aenderungszeitpunkt" type="base:TimestampType"/>
+ <xsd:element ref="base:ZMRZahl"/>
+ <xsd:element ref="cio:Identification" minOccurs="0" maxOccurs="3"/>
+ <xsd:element ref="KitQuelleBpk" minOccurs="0"/>
+ <xsd:element ref="KitZielBpk" minOccurs="0"/>
+ <xsd:element ref="cio:Familienname"/>
+ <xsd:element ref="cio:Geburtsdatum"/>
+ <xsd:element ref="cio:Geschlecht"/>
+ <xsd:element ref="Bestandsaenderung" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="KitQuelleBpk">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="cio:Identification" minOccurs="0" maxOccurs="3"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="KitZielBpk">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="cio:Identification" minOccurs="0" maxOccurs="3"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="Veraenderung">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="50"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+
+ <xsd:element name="Bestandsaenderung">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="Veraenderung"/>
+ <xsd:element ref="cio:PostAdresse" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/BusinesspartnerAnfrage.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/BusinesspartnerAnfrage.xsd new file mode 100644 index 00000000..249aa0c0 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/BusinesspartnerAnfrage.xsd @@ -0,0 +1,131 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: BusinesspartnerAnfrage.xsd
+Zweck: Definiert Datentypen fuer alle BusinesspartnerAbfragen im ZMR
+ soll Businesspartnerabfrage.xsd und BusinesspartnerabfrageErweitert.xsd ersetzen
+Author(s): Richard Mayrhofer
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:include schemaLocation="../zmr/Businesspartnerabfrage.xsd"/>
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+
+ <xsd:element name="BusinesspartnerAnfrageRequest">
+ <xsd:complexType>
+ <xsd:sequence minOccurs="1">
+ <xsd:element ref="BusinesspartnerAnfrage"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BusinesspartnerAnfrage">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="AnfrageGrund" type="xsd:string" />
+ <xsd:element ref="AnfrageOptionen" minOccurs="1"/>
+ <xsd:element ref="AnfrageArgumente" minOccurs="1"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AnfrageArgumente">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:ZMRZahl" minOccurs="0"/>
+ <xsd:sequence minOccurs="0">
+ <xsd:element ref="base:Bereichskennung"/>
+ <xsd:element ref="base:BPK"/>
+ </xsd:sequence>
+ <xsd:element ref="cio:NatuerlichePerson"/>
+ <xsd:element ref="cio:PostAdresse" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AnfrageOptionen">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="mitPDF" type="xsd:boolean" minOccurs="0"/>
+ <xsd:element ref="AnfrageRegister"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AnfrageRegister">
+ <xsd:complexType>
+ <xsd:sequence minOccurs="1" maxOccurs="2">
+ <xsd:element name="Register" type="RegisterValues"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:simpleType name="RegisterValues">
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="ZMR"/>
+ <xsd:enumeration value="ZPS"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+
+ <xsd:element name="BusinesspartnerAnfrageResponse">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="BusinesspartnerAnfrage"/>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="BusinesspartnerAnfrageErgebnis" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BusinesspartnerAnfrageErgebnis">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="Person"/>
+ <xsd:element ref="Meldung" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="PDFDokument" type="xsd:base64Binary" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="Meldung">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="cio:PostAdresse"/>
+ <xsd:element ref="base:GemeldetVon" minOccurs="0"/>
+ <xsd:element ref="base:GemeldetBis" minOccurs="0"/>
+ <xsd:element name="istAktuell" type="xsd:boolean"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="Person">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="cio:NatuerlichePerson" minOccurs="0"/>
+ <xsd:element name="istAktuell" type="xsd:boolean"/>
+ <xsd:element ref="SterbeInfo" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="SterbeInfo">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="SterbeDatum" type="xsd:string" minOccurs="0"/>
+ <xsd:element name="SterbeZeit" type="xsd:string" minOccurs="0"/>
+ <xsd:element name="SterbeGemeinde" type="xsd:string" minOccurs="0"/>
+ <xsd:element name="SterbeGemeindekennzahl" type="xsd:string" minOccurs="0"/>
+ <xsd:element name="SterbeStaatsname" type="xsd:string" minOccurs="0"/>
+ <xsd:element name="SterbeStaatscode" type="xsd:string" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Businesspartnerabfrage.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Businesspartnerabfrage.xsd new file mode 100644 index 00000000..2831a33d --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Businesspartnerabfrage.xsd @@ -0,0 +1,94 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Businesspartnerabfrage.xsd
+Zweck: Definiert Datentypen fuer die Abfrage für Businesspartner im ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2004-12-15 tsch: NatuerlichePerson optional im Ergebnis (bei Negativauskunft)
+2004-08-02 tsch: Erstellung
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+
+ <xsd:element name="BPAbfrageRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="BPAbfrageInfo"/>
+ <xsd:sequence minOccurs="0">
+ <xsd:element ref="base:Bereichskennung"/>
+ <xsd:element ref="base:BPK"/>
+ </xsd:sequence>
+ <xsd:element ref="base:ZMRZahl" minOccurs="0"/>
+ <xsd:element ref="cio:NatuerlichePerson"/>
+ <xsd:element ref="cio:PostAdresse" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BPAbfrageResponse">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="BPAbfrageAnfrage"/>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="BPAbfrageErgebnis" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BPAbfrageAnfrage">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="BPAbfrageInfo"/>
+ <xsd:sequence minOccurs="0">
+ <xsd:element ref="base:Bereichskennung"/>
+ <xsd:element ref="base:BPK"/>
+ </xsd:sequence>
+ <xsd:element ref="base:ZMRZahl" minOccurs="0"/>
+ <xsd:element ref="cio:NatuerlichePerson"/>
+ <xsd:element ref="cio:PostAdresse" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BPAbfrageInfo" type="BPAbfrageInfoType"/>
+ <xsd:complexType name="BPAbfrageInfoType">
+ <xsd:annotation>
+ <xsd:documentation>allgemeine Fachliche Informationen für die BP-Abfrage</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:Bezugsfeld"/>
+ <xsd:element name="BPAbfrageAction">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="BEFREIT"/>
+ <xsd:enumeration value="SONSTIGES"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element ref="base:ErstellePDF" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+
+ <xsd:element name="BPAbfrageErgebnis">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="cio:NatuerlichePerson" minOccurs="0"/>
+ <xsd:element ref="cio:PostAdresse" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="AktMeldesatz" type="xsd:boolean"/>
+ <xsd:element ref="base:GemeldetBis" minOccurs="0"/>
+ <xsd:element name="PDFDaten" type="xsd:base64Binary"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+</xsd:schema>
diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/BusinesspartnerabfrageErweitert.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/BusinesspartnerabfrageErweitert.xsd new file mode 100644 index 00000000..75daf516 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/BusinesspartnerabfrageErweitert.xsd @@ -0,0 +1,67 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: BusinesspartnerabfrageErweitert.xsd
+Zweck: Definiert Datentypen für die erweiterte Abfrage für Businesspartner im ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2005-08-31 tsch: Erstellung
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:include schemaLocation="../zmr/Businesspartnerabfrage.xsd"/>
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+
+ <xsd:element name="BPAbfrageErweitertRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="BPAbfrageInfo"/>
+ <xsd:sequence minOccurs="0">
+ <xsd:element ref="base:Bereichskennung"/>
+ <xsd:element ref="base:BPK"/>
+ </xsd:sequence>
+ <xsd:element ref="base:ZMRZahl" minOccurs="0"/>
+ <xsd:element ref="cio:NatuerlichePerson"/>
+ <xsd:element ref="cio:PostAdresse" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BPAbfrageErweitertResponse">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="BPAbfrageAnfrage"/>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="BPAbfrageErweitertErgebnis" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BPAbfrageErweitertErgebnis">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="cio:NatuerlichePerson" minOccurs="0"/>
+ <xsd:element name="Meldung" minOccurs="0" maxOccurs="unbounded">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="cio:PostAdresse"/>
+ <xsd:element ref="base:GemeldetVon"/>
+ <xsd:element ref="base:GemeldetBis" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="AktMeldesatz" type="xsd:boolean"/>
+ <xsd:element ref="base:GemeldetBis" minOccurs="0"/>
+ <xsd:element name="PDFDaten" type="xsd:base64Binary"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Datenabgleich.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Datenabgleich.xsd new file mode 100644 index 00000000..b953f052 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Datenabgleich.xsd @@ -0,0 +1,280 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Datenabgleich.xsd
+Zweck: Definiert Datentypen für den ZMR-Datenabgleich
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2006-02-16 tsch: ERnP-Personendaten hinzugefügt
+2005-03-24 tsch: Standarddokumente hinzugefügt
+2004-08-17 tsch: Grundsätzliche Änderung der Datenanlieferung: nicht mehr Gesamtdatensätze, sondern nur geänderte Sätze bei VON-BIS Anforderungen liefern
+2004-06-07 tsch: Erstellung
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:include schemaLocation="../zmr/entities/Meldung.xsd"/>
+ <xsd:include schemaLocation="../zmr/entities/Person.xsd"/>
+ <xsd:include schemaLocation="../zmr/entities/ERnPPerson.xsd"/>
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+
+ <xsd:element name="DatenabgleichRequest">
+ <xsd:annotation>
+ <xsd:documentation>Anfragedaten des Datenabgleichs (täglich, von-bis oder aktuell)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="DatenabgleichInfo"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="DatenabgleichResponse">
+ <xsd:annotation>
+ <xsd:documentation>In der Response werden die Anfragedaten aus dem Request und das Abgleichergebnis geliefert.</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="DatenabgleichAnfrage"/>
+ <xsd:element ref="base:Message"/>
+ <xsd:choice minOccurs="0">
+ <xsd:element ref="Datenabgleich"/>
+ <xsd:element ref="Wohnsitzverzeichnis"/>
+ </xsd:choice>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="DatenabgleichInfo" type="DatenabgleichInfoType"/>
+
+ <xsd:complexType name="DatenabgleichInfoType">
+ <xsd:sequence>
+ <xsd:element ref="base:GemeindeNr"/>
+ <xsd:element ref="DatenabgleichAction"/>
+ <xsd:sequence minOccurs="0">
+ <xsd:element name="AbgleichVon" type="base:TimestampType"/>
+ <xsd:element name="AbgleichBis" type="base:TimestampType"/>
+ </xsd:sequence>
+ <xsd:element ref="base:Stichtag" minOccurs="0"/>
+ <xsd:element ref="base:InclusivHistorie" minOccurs="0"/>
+ <xsd:element name="InclusivNWS" type="xsd:boolean" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="DatenabgleichAnfrage">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="DatenabgleichInfo"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="DatenabgleichAction">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="AENDERUNGEN"/>
+ <xsd:enumeration value="WOHNSITZVERZEICHNIS"/>
+ <xsd:enumeration value="GEMEINDEABZUG"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="Datenabgleich" type="DatenabgleichType"/>
+
+ <xsd:complexType name="DatenabgleichType">
+ <xsd:sequence>
+ <xsd:element ref="base:GefundeneSaetze">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtanzahl der Abgleichsätze für diese Anfrage</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="base:AnzahlSaetze">
+ <xsd:annotation>
+ <xsd:documentation>Anzahl der im File gelieferten Abgleichsätze</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element name="DatenabgleichSatz" type="DatenabgleichSatzType" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:complexType name="DatenabgleichSatzType">
+ <xsd:sequence>
+ <xsd:element name="Aenderungszeitpunkt" type="base:TimestampType"/>
+ <xsd:element ref="PersonReferenz"/>
+ <xsd:element ref="cio:Familienname"/>
+ <xsd:element ref="cio:Vorname"/>
+ <xsd:element ref="cio:Geburtsdatum"/>
+ <xsd:element ref="PersonAbgleich" minOccurs="0"/>
+ <xsd:element ref="MeldungAbgleich" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element ref="ERnPPersonAbgleich" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="PersonAbgleich">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="DatenAktiv" type="PersonAbgleichdaten" minOccurs="0"/>
+ <xsd:element name="DatenGeloescht" type="PersonAbgleichdaten" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:complexType name="PersonAbgleichdaten">
+ <xsd:sequence>
+ <xsd:element name="Person" type="PersonAbgleichErgebnisType" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="Staatsangehoerigkeit" type="StaatsangehoerigkeitErgebnisType" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="Reisedokument" type="ReisedokumentErgebnisType" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="Behoerdenattribute" type="BehoerdenattributeErgebnisType" minOccurs="0"/>
+ <xsd:element name="Auskunftssperre" type="AuskunftssperreErgebnisType" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="Qualifikationskennzeichen" type="QualifikationskennzeichenErgebnisType" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="AkademischerGrad" type="AkademischerGradErgebnisType" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="Standarddokument" type="StandarddokumentErgebnisType" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="MeldungAbgleich">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="MeldungReferenz"/>
+ <xsd:element name="DatenAktiv" type="MeldungAbgleichdaten" minOccurs="0"/>
+ <xsd:element name="DatenGeloescht" type="MeldungAbgleichdaten" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:complexType name="MeldungAbgleichdaten">
+ <xsd:sequence>
+ <xsd:element name="Meldung" type="MeldungAbgleichErgebnisType" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="Behoerdenattribute" type="BehoerdenattributeErgebnisType" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="Auskunftssperre" type="AuskunftssperreErgebnisType" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="Qualifikationskennzeichen" type="QualifikationskennzeichenErgebnisType" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="Wohnsitzverzeichnis" type="WohnsitzverzeichnisType"/>
+
+ <xsd:complexType name="WohnsitzverzeichnisType">
+ <xsd:sequence>
+ <xsd:element ref="base:GefundeneSaetze">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtanzahl der Abgleichsätze für diese Anfrage</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="base:AnzahlSaetze">
+ <xsd:annotation>
+ <xsd:documentation>Anzahl der im File gelieferten Abgleichsätze</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="SummeHWS"/>
+ <xsd:element ref="SummeNWS"/>
+ <xsd:element name="WohnsitzSatz" type="WohnsitzSatzType" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:complexType name="WohnsitzSatzType">
+ <xsd:sequence>
+ <xsd:element ref="base:ZMRZahl"/>
+ <xsd:element ref="SummeHWS"/>
+ <xsd:element ref="SummeNWS"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ <xsd:element name="SummeHWS" type="base:IntegerType"/>
+ <xsd:element name="SummeNWS" type="base:IntegerType"/>
+
+
+ <xsd:complexType name="PersonAbgleichErgebnisType">
+ <xsd:annotation>
+ <xsd:documentation>Person-Struktur für Datenabgleich-Ergebnisse aus dem ZMR</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:EntityErgebnisReferenz"/>
+ <xsd:element ref="base:ZMRZahl"/>
+ <xsd:element name="NatuerlichePerson" type="NatuerlichePersonAbgleichErgebnisType"/>
+ <xsd:element ref="base:Titel" minOccurs="0"/>
+ <xsd:element ref="base:StaatZugezogen" minOccurs="0"/>
+ <xsd:element ref="base:StaatVerzogen" minOccurs="0"/>
+ <xsd:element name="ReferenziertePersonen" type="ReferenziertePersonenErgebnisType" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:complexType name="NatuerlichePersonAbgleichErgebnisType">
+ <xsd:annotation>
+ <xsd:documentation>Natuerliche Person (Suchergebnis)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexContent>
+ <xsd:extension base="cio:AbstractPersonType">
+ <xsd:sequence>
+ <xsd:element name="PersonenName">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="cio:Vorname"/>
+ <xsd:element ref="cio:Familienname"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element ref="cio:AlternativName" minOccurs="0"/>
+ <xsd:element ref="cio:Familienstand" minOccurs="0"/>
+ <xsd:element ref="cio:Geschlecht"/>
+ <xsd:element ref="cio:Geburtsdatum"/>
+ <xsd:element ref="cio:Geburtsort"/>
+ <xsd:element ref="cio:Geburtsbundesland" minOccurs="0"/>
+ <xsd:element ref="cio:Geburtsstaat"/>
+ <xsd:element ref="cio:Sterbedatum" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:extension>
+ </xsd:complexContent>
+ </xsd:complexType>
+
+ <xsd:complexType name="MeldungAbgleichErgebnisType">
+ <xsd:annotation>
+ <xsd:documentation>Meldung-Struktur für Suchergebnisse aus dem ZMR</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:EntityErgebnisReferenz"/>
+ <xsd:element name="Wohnsitz" type="WohnsitzErgebnisType"/>
+ <xsd:element ref="base:GemeldetVon"/>
+ <xsd:element ref="base:PeriodeCode"/>
+ <xsd:element ref="base:PeriodeText"/>
+ <xsd:element ref="base:PeriodeFreitext" minOccurs="0"/>
+ <xsd:element ref="base:GemeldetBis" minOccurs="0"/>
+ <xsd:element ref="base:Unterkunftgeber" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="ERnPPersonAbgleich">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="DatenAktiv" type="ERnPPersonAbgleichdaten" minOccurs="0"/>
+ <xsd:element name="DatenGeloescht" type="ERnPPersonAbgleichdaten" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:complexType name="ERnPPersonAbgleichdaten">
+ <xsd:sequence>
+ <xsd:element name="Person" type="ERnPPersonAbgleichErgebnisType" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="Staatsangehoerigkeit" type="StaatsangehoerigkeitErgebnisType" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="Reisedokument" type="ERnPReisedokumentErgebnisType" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="Dokument" type="ERnPDokumentErgebnisType" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="Anschrift" type="ERnPAnschriftErgebnisType" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:complexType name="ERnPPersonAbgleichErgebnisType">
+ <xsd:annotation>
+ <xsd:documentation>Person-Struktur für Datenabgleich-Ergebnisse aus dem ZMR</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:EntityErgebnisReferenz"/>
+ <xsd:element ref="base:OrdnungsZahl"/>
+ <xsd:element name="NatuerlichePerson" type="NatuerlichePersonAbgleichErgebnisType"/>
+ </xsd:sequence>
+ </xsd:complexType>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/ErnpAbfrage.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/ErnpAbfrage.xsd new file mode 100644 index 00000000..12ecd771 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/ErnpAbfrage.xsd @@ -0,0 +1,191 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: ErnpAbfrage.xsd
+Zweck: ersetzt Szr_Einzel und Kombi-Abfrage, wird aus Ernp3 aufgerufen
+Author(s): Richard Mayrhofer xmayrh2
+-->
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified"
+ version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd" />
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd" />
+
+ <xsd:include schemaLocation="Personenabfrage.xsd" />
+
+ <xsd:element name="ErnpRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="ErnpAbfrageInfo"/>
+ <xsd:element name="ErnpSuchPerson" minOccurs="1" maxOccurs="100">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:ZMRZahl" minOccurs="0" />
+ <xsd:element ref="cio:NatuerlichePerson" minOccurs="0" />
+ <xsd:element ref="cio:PostAdresse" minOccurs="0" />
+ <xsd:element ref="DokumentSuchdaten" minOccurs="0" />
+ <xsd:element ref="Pre" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="Pre">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="Vn" type="xsd:string" minOccurs="0" nillable="true"/>
+ <xsd:element name="Fn" type="xsd:string" minOccurs="0" nillable="true"/>
+ <xsd:element name="Nve" type="xsd:string" minOccurs="0"/>
+ <xsd:element ref="Gd" minOccurs="0"/>
+ <xsd:element name="Go" type="xsd:string" minOccurs="0" nillable="true"/>
+ <xsd:element name="Ges" type="xsd:string" minOccurs="0" nillable="true"/>
+ <xsd:element name="Str" type="xsd:string" minOccurs="0" nillable="true"/>
+ <xsd:element name="Plz" type="xsd:string" minOccurs="0" nillable="true"/>
+ <xsd:element name="Ort" type="xsd:string" minOccurs="0" nillable="true"/>
+ <xsd:element name="Eid" type="xsd:long"/>
+ <xsd:element name="Bz" type="base:OrdnungsZahlType" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="Gd">
+ <xsd:simpleType>
+ <xsd:annotation>
+ <xsd:documentation>Geburtsdatum, simple type for dates (union), which may omit day and/or month</xsd:documentation>
+ </xsd:annotation>
+ <xsd:union memberTypes="xsd:date xsd:gYearMonth xsd:gYear"/>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="ErnpAbfrageInfo">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="ErnpRequestId" type="xsd:string" minOccurs="0" />
+ <xsd:element name="TrefferLimit" type="xsd:int"/>
+ <xsd:element ref="base:Bezugsfeld" />
+ <xsd:element name="Suchkriterien" type="SuchkriterienType"/>
+ <xsd:element name="Suchwizard" type="xsd:boolean" minOccurs="0"/>
+ <xsd:element ref="ErgebnisKriterienPerson"/>
+ <xsd:element ref="ErgebnisKriterienMeldung"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="ErgebnisKriterienPerson" >
+ <xsd:complexType>
+ <xsd:sequence>
+ <!-- OhneHistorie: default=true -->
+ <xsd:element name="InklusiveHistorische" type="xsd:boolean"/>
+ <!-- ohneSperren: wenn true, werden Auskunftssperren gefiltert -->
+ <xsd:element name="InklusiveAuskunftsgesperrte" type="xsd:boolean"/>
+ <!-- Kitverfolgung: sollen gekittete Personen bis zur aktuellsten Person verfolgt werden, default: true -->
+ <xsd:element name="Kitverfolgung" type="xsd:boolean"/>
+ <!-- Liste von auszufilternden BeginnCodes -->
+ <xsd:element name="ExklusiveBeginnCodes" type="BeginnCode"/>
+ <!-- Liste der zu liefernden Sub-Entitaeten einer Person -->
+ <xsd:element name="AbhaengigeEntitaeten" type="EntitaetenPerson"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="ErgebnisKriterienMeldung">
+ <xsd:complexType>
+ <xsd:sequence>
+ <!-- OhneHistorie: default=true -->
+ <xsd:element name="InklusiveHistorische" type="xsd:boolean"/>
+ <!-- ohneSperren: wenn true, werden Auskunftssperren gefiltert -->
+ <xsd:element name="InklusiveAuskunftsgesperrte" type="xsd:boolean"/>
+ <!-- wie werden die Wohnsitze gereiht (geliefert wird nur der erste) -->
+ <xsd:element name="WohnsitzPrioritaet" type="WohnsitzPrioritaet"/>
+ <!-- Liste der zu liefernden Sub-Entitaeten einer Meldung -->
+ <xsd:element name="AbhaengigeEntitaeten" type="EntitaetenMeldung"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:simpleType name="WohnsitzPrioritaet">
+ <xsd:restriction base="xsd:string">
+ <!-- nur aktuellster Hauptwohnsitz -->
+ <xsd:enumeration value="juengsterHWS" />
+ <!-- aktuellster Wohnsitz, Reihenfolge Haupt- oder Nebenwohnsitz oder Obdachlos -->
+ <xsd:enumeration value="juengsterHNO" />
+ </xsd:restriction>
+ </xsd:simpleType>
+
+ <xsd:simpleType name="BeginnCode">
+ <xsd:list itemType="xsd:string" />
+ </xsd:simpleType>
+
+ <!-- Liste der gewählten Sub-Entities einer Person -->
+ <xsd:simpleType name="EntitaetenMeldung">
+ <xsd:list itemType="EntitaetMeldung"/>
+ </xsd:simpleType>
+
+ <!-- Liste der moeglichen Sub-Entities einer Meldung -->
+ <xsd:simpleType name="EntitaetMeldung">
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="ORGFELD"/>
+ <xsd:enumeration value="AUSKUNFTSSPERRE"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+
+ <!-- Liste der gewählten Sub-Entities einer Person -->
+ <xsd:simpleType name="EntitaetenPerson">
+ <xsd:list itemType="EntitaetPerson"/>
+ </xsd:simpleType>
+
+ <!-- Liste der moeglichen Sub-Entities einer Person -->
+ <xsd:simpleType name="EntitaetPerson">
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="AKADGRAD" />
+ <xsd:enumeration value="QUALIFIKATIONSKENNZEICHEN" />
+ <xsd:enumeration value="REISEDOKUMENT" />
+ <xsd:enumeration value="STDDOKUMENT" />
+ <xsd:enumeration value="STAATSANGEHOERIGKEIT" />
+ <xsd:enumeration value="AUSKUNFTSSPERRE"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+
+ <xsd:element name="ErnpResponse">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="base:ServerTransaktionNr"/>
+ <xsd:element ref="ErnpPersonResult" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="ErnpPersonResult">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:choice>
+ <xsd:element ref="Ergebnissatz" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="ZMRZahlen" type="xsd:string" minOccurs="0" maxOccurs="unbounded" />
+ </xsd:choice>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="Ergebnissatz">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="StarRating" type="xsd:float" minOccurs="0"/>
+ <xsd:element name="Register" type="xsd:string" minOccurs="0"/>
+ <xsd:element name="PersonErgebnis" type="PersonErgebnisType" minOccurs="0"/>
+ <xsd:element name="AuskunftssperrePerson" type="xsd:boolean" default="false" minOccurs="0"/>
+ <xsd:element name="Meldedaten" type="MeldedatenType" minOccurs="0"/>
+ <xsd:element name="AuskunftssperreMeldung" type="xsd:boolean" default="false" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Fremdenabfrage.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Fremdenabfrage.xsd new file mode 100644 index 00000000..e4a610ae --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Fremdenabfrage.xsd @@ -0,0 +1,108 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Fremdenabfrage.xsd
+Zweck: Definiert Datentypen für die Fremdenabfrage im ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2004-08-16 tsch: Erstellung
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+ <xsd:include schemaLocation="Personenabfrage.xsd"/>
+
+ <xsd:element name="FremdenabfrageRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="FremdenabfrageInfo"/>
+ <xsd:element ref="base:ZMRZahl" minOccurs="0"/>
+ <xsd:element ref="cio:NatuerlichePerson" minOccurs="0"/>
+ <xsd:element ref="base:GemeldetVon" minOccurs="0"/>
+ <xsd:element ref="base:GemeldetBis" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="FremdenabfrageResponse">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="FremdenabfrageAnfrage"/>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="FremdenabfrageErgebnis" minOccurs="0"/>
+ <xsd:element name="PDFDaten" type="xsd:base64Binary" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="FremdenabfrageAnfrage">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="FremdenabfrageInfo"/>
+ <xsd:element ref="base:ZMRZahl" minOccurs="0"/>
+ <xsd:element ref="cio:NatuerlichePerson" minOccurs="0"/>
+ <xsd:element ref="base:GemeldetVon" minOccurs="0"/>
+ <xsd:element ref="base:GemeldetBis" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="FremdenabfrageInfo" type="FremdenabfrageInfoType"/>
+ <xsd:complexType name="FremdenabfrageInfoType">
+ <xsd:annotation>
+ <xsd:documentation>allgemeine Fachliche Informationen für die Fremdenabfrage</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:Bezugsfeld"/>
+ <xsd:element ref="FremdenabfrageAction"/>
+ <xsd:element ref="base:Bezirkskennung"/>
+ <xsd:element ref="base:InclusivHistorie"/>
+ <xsd:element ref="base:Formalisiert"/>
+ <xsd:element name="AlsDruck" type="xsd:boolean"/>
+ <xsd:element ref="base:AnzahlSaetze"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="FremdenabfrageAction">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="NICHT_OESTERREICH"/>
+ <xsd:enumeration value="EU_OHNE_OESTERREICH"/>
+ <xsd:enumeration value="NICHT_EU"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="FremdenabfrageErgebnis" type="FremdenabfrageErgebnisType"/>
+ <xsd:complexType name="FremdenabfrageErgebnisType">
+ <xsd:annotation>
+ <xsd:documentation>Enthält je einen 'PersonErgebnisSatz' pro gefundener Person. Wird keine Person gefunden, befindet sich eine entprechende Text-Message in 'base:Message'</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:GefundeneSaetze">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtanzahl der in der Datenbank gefundenen Personen</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="base:SaetzeVon">
+ <xsd:annotation>
+ <xsd:documentation>Beginn-Index dieser Ergebnisliste im Gesamtergebnis (bei Blaettern); Start mit 0</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="base:SaetzeBis">
+ <xsd:annotation>
+ <xsd:documentation>Ende-Index dieser Ergebnisliste im Gesamtergebnis (bei Blaettern)</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element name="PersonErgebnisSatz" type="PAbfrageErgebnisSatzType" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/GISAdressabfrage.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/GISAdressabfrage.xsd new file mode 100644 index 00000000..3f5bbe7f --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/GISAdressabfrage.xsd @@ -0,0 +1,79 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: GISAdressabfrage.xsd
+Zweck: Definiert Datentypen für die GIS-Adressabfrage aus dem ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2004-08-24 tsch: Erstellung
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+
+ <xsd:element name="GISAdressabfrageRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="cio:PostAdresse" minOccurs="1"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="GISAdressabfrageResponse">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="GISAdressabfrageAnfrage"/>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="base:GefundeneSaetze"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="GISAdressabfrageDetailRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="Bestaetigt" type="xsd:boolean"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="GISAdressabfrageDetailResponse">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="GISAdressabfrageAnfrage"/>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="GISAdressabfrageErgebnis" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="GISAdressabfrageAnfrage">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="cio:PostAdresse" minOccurs="1"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="GISAdressabfrageErgebnis">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:GefundeneSaetze">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtanzahl der in der Datenbank gefundenen Personen</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="cio:PersonenDaten" minOccurs="1" maxOccurs="unbounded"/>
+ <xsd:element name="PDFDaten" type="xsd:base64Binary"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/GISSuche.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/GISSuche.xsd new file mode 100644 index 00000000..4989b13c --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/GISSuche.xsd @@ -0,0 +1,74 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Name: GISSuche.xsd +Zweck: Schnittstelle für die Suche von Personen mittels GIS-Daten +Author(s): Ehrenmüller Oliver + +Aenderungshistorie: +2009-02-06 teo: +GISSucheInfo +2009-01-21 teo: erstellt. +--> + +<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns:gis="http://bmi.gv.at/namespace/zmr-su/gis/20070725#" + xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" + elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + + <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/gis/20070725#" schemaLocation="../eingebunden/gis-schnittstelle.xsd"/> + <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/> + <xsd:include schemaLocation="Personensuche.xsd"/> + + <xsd:element name="GISSucheRequest"> + <xsd:annotation> + <xsd:documentation>Request zum Suchen von Personen mittels GIS-Daten</xsd:documentation> + </xsd:annotation> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="GISSucheInfo"/> + <xsd:element ref="GISSuche"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="GISSuche"> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="gis:GISListe"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="GISSucheInfo"> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="base:AnzahlSaetze"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="GISSucheAnfrage"> + <xsd:annotation> + <xsd:documentation>Request zum Suchen von Personen mittels GIS-Daten</xsd:documentation> + </xsd:annotation> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="GISSucheInfo"/> + <xsd:element ref="GISSuche"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="GISSucheResponse"> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="GISSucheAnfrage"/> + <xsd:element ref="base:Message"/> + <xsd:element ref="Personensuchergebnis" minOccurs="0"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + +</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Gemeindeeinstellungen.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Gemeindeeinstellungen.xsd new file mode 100644 index 00000000..5096e120 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Gemeindeeinstellungen.xsd @@ -0,0 +1,71 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Gemeindeeinstellungen
+Zweck: Definiert Requests/Responses und Datentypen für die Gemeindeeinstellungen und Adress-Sperrlisten.
+Author(s): Richie Mayrhofer, ZMR
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:include schemaLocation="../zmr/entities/Meldung.xsd"/>
+ <xsd:include schemaLocation="../zmr/entities/Person.xsd"/>
+ <xsd:include schemaLocation="../zmr/WohnsitzUmmelden.xsd"/>
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+
+ <xsd:element name="GemeindeeinstellungenRequest">
+ <xsd:annotation>
+ <xsd:documentation>Lesen der Gemeindeeinstellungen</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="cio:Gemeindekennziffer"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="GemeindeeinstellungenResponse">
+ <xsd:annotation>
+ <xsd:documentation>Lesen der Gemeindeeinstellungen</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="cio:Gemeindekennziffer"/>
+ <xsd:element name="inclKlaerung" type="xsd:boolean"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="GemeindeeinstellungenAendernRequest">
+ <xsd:annotation>
+ <xsd:documentation>Aendern der Gemeindeeinstellungen</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="cio:Gemeindekennziffer"/>
+ <xsd:element name="inclKlaerung" type="xsd:boolean"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="GemeindeeinstellungenAendernResponse">
+ <xsd:annotation>
+ <xsd:documentation>Aendern der Gemeindeeinstellungen Ergebnismeldung</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Gerichtskommissaerabfrage.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Gerichtskommissaerabfrage.xsd new file mode 100644 index 00000000..6eacf127 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Gerichtskommissaerabfrage.xsd @@ -0,0 +1,93 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Gerichtskommissaerabfrage.xsd
+Zweck: Definiert Datentypen für die Gerichtskommissaerabfrage des ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2004-11-22 tsch: Erstellung
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+
+ <xsd:include schemaLocation="Behoerdenabfrage.xsd"/>
+
+ <xsd:element name="GerichtskommissaerabfrageRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="GerichtskommissaerabfrageInfo"/>
+ <xsd:element ref="PersonKey" minOccurs="0"/>
+ <xsd:element ref="base:ZMRZahl" minOccurs="0"/>
+ <xsd:element ref="cio:NatuerlichePerson" minOccurs="0"/>
+ <xsd:element ref="cio:PostAdresse" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="GerichtskommissaerabfrageResponse">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="GerichtskommissaerabfrageAnfrage"/>
+ <xsd:element ref="base:Message"/>
+ <xsd:choice minOccurs="0">
+ <xsd:element ref="GerichtskommissaerabfrageUeberblick"/>
+ <xsd:element ref="GerichtskommissaerabfrageDetail"/>
+ </xsd:choice>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="GerichtskommissaerabfrageAnfrage">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="GerichtskommissaerabfrageInfo"/>
+ <xsd:element ref="PersonKey" minOccurs="0"/>
+ <xsd:element ref="base:ZMRZahl" minOccurs="0"/>
+ <xsd:element ref="cio:NatuerlichePerson" minOccurs="0"/>
+ <xsd:element ref="cio:PostAdresse" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="GerichtskommissaerabfrageInfo" type="GerichtskommissaerabfrageInfoType"/>
+ <xsd:complexType name="GerichtskommissaerabfrageInfoType">
+ <xsd:annotation>
+ <xsd:documentation>allgemeine Fachliche Informationen für die Behördenabfrage</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:Bezugsfeld" minOccurs="0"/>
+ <xsd:element ref="base:InclusivHistorie"/>
+ <xsd:element ref="base:Formalisiert"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="GerichtskommissaerabfrageUeberblick">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:AnzahlSaetze"/>
+ <xsd:element ref="PersonUeberblick" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+
+ <xsd:element name="GerichtskommissaerabfrageDetail">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="Personendaten" minOccurs="0"/>
+ <xsd:element ref="Meldedaten" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="PDFDaten" type="xsd:base64Binary"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/GleichsetzungstabelleWarten.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/GleichsetzungstabelleWarten.xsd new file mode 100644 index 00000000..f5cd55cd --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/GleichsetzungstabelleWarten.xsd @@ -0,0 +1,185 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: GleichsetzungstabelleWarten.xsd
+Zweck: Definiert Datentypen für die Wartung der Gleichstzungstabelle im ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2005-01-14 tsch: Erstellung
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+
+ <xsd:element name="GleichsetzungAbfragenRequest">
+ <xsd:annotation>
+ <xsd:documentation>Suchedaten fuer die Suche nach Einträgen in der Gleichsetzungstabelle</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="GleichsetzungAbfragenInfo"/>
+ <xsd:choice>
+ <xsd:element ref="base:ZMRZahl"/>
+ <xsd:element ref="base:SVNummer"/>
+ </xsd:choice>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="GleichsetzungAbfragenResponse">
+ <xsd:annotation>
+ <xsd:documentation>Anfragedaten, sowie Suchergebnis oder Text-Meldung (falls nichts gefunden)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="GleichsetzungAbfragenAnfrage"/>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="Gleichsetzungabfrageergebnis" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="GleichsetzungAnlegenRequest">
+ <xsd:annotation>
+ <xsd:documentation>Suchedaten fuer die Suche nach Einträgen in der Gleichsetzungstabelle</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="GleichsetzungAnlegenInfo"/>
+ <xsd:element ref="base:ZMRZahl"/>
+ <xsd:element ref="base:SVNummer"/>
+ <xsd:element ref="Zuordnungsqualitaet" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="GleichsetzungAnlegenResponse">
+ <xsd:annotation>
+ <xsd:documentation>Daten der angelegeten Gleichsetzung, sowie Erfolgsmeldung</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="GleichsetzungErgebnis"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="GleichsetzungLoeschenRequest">
+ <xsd:annotation>
+ <xsd:documentation>Suchedaten fuer die Suche nach Einträgen in der Gleichsetzungstabelle</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="GleichsetzungLoeschenInfo"/>
+ <xsd:element ref="base:EntityReferenz"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="GleichsetzungLoeschenResponse">
+ <xsd:annotation>
+ <xsd:documentation>Daten der angelegeten Gleichsetzung, sowie Erfolgsmeldung</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="GleichsetzungErgebnis"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="GleichsetzungAbfragenAnfrage">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="GleichsetzungAbfragenInfo"/>
+ <xsd:choice>
+ <xsd:element ref="base:ZMRZahl"/>
+ <xsd:element ref="base:SVNummer"/>
+ </xsd:choice>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="GleichsetzungAbfragenInfo" type="GleichsetzungAbfragenInfoType"/>
+ <xsd:complexType name="GleichsetzungAbfragenInfoType">
+ <xsd:annotation>
+ <xsd:documentation>Fachliche Informationen zur Gleichsetzungstabelle - Abfrage</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:InclusivHistorie"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="Gleichsetzungabfrageergebnis" type="GleichsetzungabfrageergebnisType"/>
+ <xsd:complexType name="GleichsetzungabfrageergebnisType">
+ <xsd:annotation>
+ <xsd:documentation>Gleichsetzungstabelle - Suchereggebnis</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:GefundeneSaetze">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtanzahl der in der Datenbank gefundenen Einträge</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="GleichsetzungErgebnis" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="GleichsetzungErgebnis" type="GleichsetzungErgebnisType"/>
+ <xsd:complexType name="GleichsetzungErgebnisType">
+ <xsd:annotation>
+ <xsd:documentation>Gleichsetzungstabelleneintrag</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:EntityErgebnisReferenz"/>
+ <xsd:element ref="base:ZMRZahl"/>
+ <xsd:element ref="base:SVNummer"/>
+ <xsd:element ref="Zuordnungsqualitaet" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="Zuordnungsqualitaet">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="45"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="GleichsetzungAnlegenInfo" type="GleichsetzungAnlegenInfoType"/>
+ <xsd:complexType name="GleichsetzungAnlegenInfoType">
+ <xsd:annotation>
+ <xsd:documentation>Fachliche Informationen einer Anlage in der Gleichsetzungstabelle</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexContent>
+ <xsd:extension base="base:InfoFachlichType">
+
+ </xsd:extension>
+ </xsd:complexContent>
+
+ </xsd:complexType>
+
+ <xsd:element name="GleichsetzungLoeschenInfo" type="GleichsetzungLoeschenInfoType"/>
+ <xsd:complexType name="GleichsetzungLoeschenInfoType">
+ <xsd:annotation>
+ <xsd:documentation>Fachliche Informationen für das Löschen eines Eintrages der Gleichsetzungstabelle</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexContent>
+ <xsd:extension base="base:InfoFachlichType">
+
+ </xsd:extension>
+ </xsd:complexContent>
+
+ </xsd:complexType>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Hauseigentuemerabfrage.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Hauseigentuemerabfrage.xsd new file mode 100644 index 00000000..b72bea37 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Hauseigentuemerabfrage.xsd @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Hauseigentuemerabfrage.xsd
+Zweck: Definiert Datentypen für die Hauseigentuemerabfrage im ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2006-09-27 tsch: AlleDrucken hinzugefügt
+2004-08-18 tsch: Erstellung
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+ <xsd:include schemaLocation="Personenabfrage.xsd"/>
+
+ <xsd:element name="HauseigentuemerAbfrageRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="HauseigentuemerAbfrageInfo"/>
+ <xsd:element ref="cio:PostAdresse"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="HauseigentuemerAbfrageResponse">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="HauseigentuemerAbfrageAnfrage"/>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="HauseigentuemerAbfrageErgebnis" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="HauseigentuemerAbfrageDruckRequest">
+ <xsd:annotation>
+ <xsd:documentation>Hauseigentuemerabfrage-Druckrequest (muss nach einer Hauseigentuemerabfrage mit derselben ProzessInstanzID aufgerufen werden)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:annotation>
+ <xsd:documentation>Liste der EntityIDs der zu druckenden Meldungen (aus der vorangegangenen Hauseigentuemerabfrage)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:choice>
+ <xsd:element name="AlleDrucken" type="xsd:boolean"/>
+ <xsd:element ref="base:EntityID" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:choice>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="HauseigentuemerAbfrageDruckResponse">
+ <xsd:annotation>
+ <xsd:documentation>In der Response werden die Anfragedaten aus dem Request, und das Suchergebnis bzw. eine Text-Meldung geliefert (Falls keine Person gefunden)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="HauseigentuemerAbfrageAnfrage"/>
+ <xsd:element ref="base:Message"/>
+ <xsd:element name="PDFDaten" type="xsd:base64Binary"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="HauseigentuemerAbfrageAnfrage">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="HauseigentuemerAbfrageInfo"/>
+ <xsd:element ref="cio:PostAdresse"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="HauseigentuemerAbfrageInfo" type="HauseigentuemerAbfrageInfoType"/>
+ <xsd:complexType name="HauseigentuemerAbfrageInfoType">
+ <xsd:annotation>
+ <xsd:documentation>allgemeine Fachliche Informationen für die Hauseigentuemerabfrage</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:Bezugsfeld" minOccurs="0"/>
+ <xsd:element name="InclusiveAuskunftsgesperrt" type="xsd:boolean"/>
+ <xsd:element ref="base:AnzahlSaetze"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="HauseigentuemerAbfrageErgebnis" type="HauseigentuemerAbfrageErgebnisType"/>
+ <xsd:complexType name="HauseigentuemerAbfrageErgebnisType">
+ <xsd:annotation>
+ <xsd:documentation>Enthält je einen 'PersonErgebnisSatz' pro gefundener Person. Wird keine Person gefunden, befindet sich eine entprechende Text-Message in 'base:Message'</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:GefundeneSaetze">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtanzahl der in der Datenbank gefundenen Personen</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="base:SaetzeVon">
+ <xsd:annotation>
+ <xsd:documentation>Beginn-Index dieser Ergebnisliste im Gesamtergebnis (bei Blaettern); Start mit 1</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="base:SaetzeBis">
+ <xsd:annotation>
+ <xsd:documentation>Ende-Index dieser Ergebnisliste im Gesamtergebnis (bei Blaettern)</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element name="PersonErgebnisSatz" type="PAbfrageErgebnisSatzType" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/IAPPersonenabfrage.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/IAPPersonenabfrage.xsd new file mode 100644 index 00000000..26165d66 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/IAPPersonenabfrage.xsd @@ -0,0 +1,120 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: IAPPersonenabfrage.xsd
+Zweck: Erweitert die Datentypen für den Usecase "Personenabfrage" im ZMR
+Author(s): Richard Mayrhofer xmayrh2
+-->
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified"
+ version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd" />
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd" />
+
+ <xsd:include schemaLocation="Personenabfrage.xsd" />
+ <xsd:include schemaLocation="Behoerdenabfrage.xsd" />
+
+ <xsd:element name="IAPPersonenUeberblickRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="PersonenAbfrageInfo" />
+ <xsd:element ref="base:ZMRZahl" minOccurs="0" />
+ <xsd:element ref="cio:NatuerlichePerson" minOccurs="0" />
+ <xsd:element ref="cio:PostAdresse" minOccurs="0" />
+ <xsd:element ref="IAPRequestExtension" />
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="IAPRequestExtension">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="IAPTyp">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="KURZAUSKUNFT" />
+ <xsd:enumeration value="VOLLAUSKUNFT" />
+ <xsd:enumeration value="NEGATIVAUSKUNFT" />
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="IAPFormat" minOccurs="0">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="HTML" />
+ <xsd:enumeration value="PDF" />
+ <xsd:enumeration value="XML" />
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="IAPPersonenUeberblickResponse">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="IAPRequestExtension" />
+ <xsd:element ref="base:Message" />
+ <xsd:element ref="IAPPersonAbfrageUeberblick" minOccurs="0" maxOccurs="1"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="IAPPersonAbfrageUeberblick">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:AnzahlSaetze" />
+ <xsd:element ref="IAPPersonUeberblick" minOccurs="1" maxOccurs="1000"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="IAPPersonUeberblick">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="PersonKey" />
+ <xsd:element ref="cio:Geburtsdatum"/>
+ <xsd:element ref="cio:Familienname"/>
+ <xsd:element ref="cio:Vorname"/>
+ <xsd:element ref="cio:Geschlecht"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="IAPPersonenDetailRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="PersonKey" minOccurs="0" maxOccurs="1"/>
+ <xsd:element ref="IAPRequestExtension" />
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="IAPPersonenDetailResponse">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="IAPRequestExtension" />
+ <xsd:element ref="base:Message" />
+ <xsd:element ref="IAPXmlResponse" minOccurs="0" />
+ <xsd:element ref="IAPHtmlResponse" minOccurs="0" />
+ <xsd:element ref="PDFDaten" minOccurs="0" />
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="IAPXmlResponse">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="PersonenAbfrageResponse" />
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="IAPHtmlResponse" type="xsd:string" />
+ <xsd:element name="PDFDaten" type="xsd:base64Binary" />
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Meldeauskunft.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Meldeauskunft.xsd new file mode 100644 index 00000000..df262baf --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Meldeauskunft.xsd @@ -0,0 +1,102 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Meldeauskunft.xsd
+Zweck: Definiert Datentypen für die Meldeauskunft aus dem ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2010-11-24 mp: ZMR-1513 Aufdruck einer zusätzlichen Zeile auf Meldebestätigung und Meldeauskunft
+2010-04-02 teo: ZMR-1373 CLM-1505 Meldedruck Erweiterungstext
+2004-10-27 tsch: Meldeauskunft aus Mussfeld im Ergebnis, cio:NatuerlichePerson optional
+2004-08-17 tsch: Druckzusatztext aus Base-Namespace referenziert
+2004-05-17 tsch: Organisation entfernt, ZMR-Zahl hinzugefügt
+2004-04-13 tsch: AktHistMeldesatz, GemeldetBis hinzugefügt
+2004-04-01 tsch: Erstellung
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+
+
+ <xsd:element name="MeldeauskunftRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="MeldeauskunftInfo"/>
+ <xsd:sequence minOccurs="0">
+ <xsd:element ref="base:Bereichskennung"/>
+ <xsd:element ref="base:BPK"/>
+ </xsd:sequence>
+ <xsd:element ref="base:ZMRZahl" minOccurs="0"/>
+ <xsd:element ref="cio:NatuerlichePerson"/>
+ <xsd:element ref="cio:PostAdresse" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="MeldeauskunftResponse">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="MeldeauskunftAnfrage"/>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="Meldeauskunft"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="MeldeauskunftAnfrage">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="MeldeauskunftInfo"/>
+ <xsd:sequence minOccurs="0">
+ <xsd:element ref="base:Bereichskennung"/>
+ <xsd:element ref="base:BPK"/>
+ </xsd:sequence>
+ <xsd:element ref="base:ZMRZahl" minOccurs="0"/>
+ <xsd:element ref="cio:NatuerlichePerson"/>
+ <xsd:element ref="cio:PostAdresse" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="MeldeauskunftInfo" type="MeldeauskunftInfoType"/>
+ <xsd:complexType name="MeldeauskunftInfoType">
+ <xsd:annotation>
+ <xsd:documentation>allgemeine Fachliche Informationen für die Meldeauskunft</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:Bezugsfeld"/>
+ <xsd:element ref="Ergebnisdaten"/>
+ <xsd:element ref="base:DruckZusatztext" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element ref="base:Infotext" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="Ergebnisdaten">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="AlleAktuellenWohnsitze" type="xsd:boolean"/>
+ <xsd:element name="OhneGeburtsdatum" type="xsd:boolean"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="Meldeauskunft">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="cio:NatuerlichePerson" minOccurs="0"/>
+ <xsd:element ref="cio:PostAdresse" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="AktMeldesatz" type="xsd:boolean"/>
+ <xsd:element ref="base:GemeldetBis" minOccurs="0"/>
+ <xsd:element name="PDFDaten" type="xsd:base64Binary"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Meldebestaetigung.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Meldebestaetigung.xsd new file mode 100644 index 00000000..4f8b6f93 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Meldebestaetigung.xsd @@ -0,0 +1,127 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Meldebestaetigung.xsd
+Zweck: Definiert Datentypen für Meldebestaetigungen aus dem ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Achtung: Es sollte bedacht werden, dass diese Datei fast 1:1 nach LMR/MeldebestaetigungFamilie.xsd kopiert wurde
+ und Anpassungen in dieser Datei evtl. dort nachgezogen werden müssen! Dies ist vor allem der Fall, wenn
+ es sich um oberflächenrelevante Änderungen handelt.
+
+Aenderungshistorie:
+2010-11-24 mp: ZMR-1513 Aufdruck einer zusätzlichen Zeile auf Meldebestätigung und Meldeauskunft
+2010-04-20 teo: ZMR-1374 CLM-1900 Meldebestätigung für Rechtsanwälte
+2010-04-02 teo: ZMR-1373 CLM-1505 Meldedruck Erweiterungstext
+2009-04-28 teo: +MeldebestaetigungUmmeldeservice
+2008-03-19 teo: CQ#3013: +Druckoption für Ortanzeige
+2004-11-02 tsch: GemeindeNr entfernt
+2004-08-17 tsch: Druckzusatztext aus Base-Namespace referenziert
+2004-05-17 tsch: Organisation entfernt
+2004-04-15 tsch: Erstellung
+-->
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+ <xsd:element name="MeldebestaetigungRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="MeldebestaetigungInfo"/>
+ <xsd:element ref="base:ZMRZahl"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="MeldebestaetigungResponse">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="MeldebestaetigungAnfrage"/>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="Meldebestaetigung" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="MeldebestaetigungAnfrage">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="MeldebestaetigungInfo"/>
+ <xsd:element ref="base:ZMRZahl"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="MeldebestaetigungInfo" type="MeldebestaetigungInfoType"/>
+ <xsd:complexType name="MeldebestaetigungInfoType">
+ <xsd:annotation>
+ <xsd:documentation>allgemeine Fachliche Informationen für die Meldebestaetigung</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:Bezugsfeld" minOccurs="0"/>
+ <xsd:element ref="MeldebestaetigungArt"/>
+ <xsd:element ref="base:DruckZusatztext" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element ref="base:Infotext" minOccurs="0"/>
+ <xsd:element ref="MeldebestaetigungDruckoptionOrt" minOccurs="0"/>
+ <xsd:element ref="MeldebestaetigungUmmeldeservice" minOccurs="0"/>
+ <xsd:element name="ZeitraumVon" type="base:TimestampType" minOccurs="0"/>
+ <xsd:element name="ZeitraumBis" type="base:TimestampType" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ <xsd:element name="MeldebestaetigungArt">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="AKTLETZT"/>
+ <xsd:enumeration value="GEM_AKT"/>
+ <xsd:enumeration value="GEM_AKTHIST"/>
+ <xsd:enumeration value="GEM_ZEITRAUM"/>
+ <xsd:enumeration value="GES_AKT"/>
+ <xsd:enumeration value="GES_BETR"/>
+ <xsd:enumeration value="GES_AKTHIST"/>
+ <xsd:enumeration value="GES_AKTHIST_Z"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="MeldebestaetigungUmmeldeservice">
+ <xsd:complexType>
+ <xsd:annotation>
+ <xsd:documentation>allgemeine Fachliche Informationen für die Meldebestaetigung</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element name="ServiceCode">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="20"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element ref="base:ServerTransaktionNr"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="MeldebestaetigungDruckoptionOrt">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="ORTSNAME"/>
+ <xsd:enumeration value="POSTORT"/>
+ <xsd:enumeration value="ALLE"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="Meldebestaetigung">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:ZMRZahl"/>
+ <xsd:element ref="cio:NatuerlichePerson"/>
+ <xsd:element name="Meldung" type="MeldungMeldebestaetigungType" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="AktMeldesatz" type="xsd:boolean"/>
+ <xsd:element ref="base:GemeldetBis" minOccurs="0"/>
+ <xsd:element name="PDFDaten" type="xsd:base64Binary"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:complexType name="MeldungMeldebestaetigungType">
+ <xsd:sequence>
+ <xsd:element ref="cio:PostAdresse"/>
+ <xsd:element ref="base:GemeldetVon"/>
+ <xsd:element ref="base:GemeldetBis" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+</xsd:schema>
diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/MeldebestaetigungenAnfordern.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/MeldebestaetigungenAnfordern.xsd new file mode 100644 index 00000000..0e08efd2 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/MeldebestaetigungenAnfordern.xsd @@ -0,0 +1,55 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Name: MeldebestaetigungenAnfordern.xsd +Zweck: Definiert Datentypen für das Anfordern von Massen-Meldebestätigungen innerhalb einer Gemeinde +Author(s): Ehrenmüller Oliver, ZMR-SU + +Aenderungshistorie: +2010-02-01 Erstellt +--> + +<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" + targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" + elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + + <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/> + + <xsd:element name="MeldebestaetigungenAnfordernRequest"> + <xsd:annotation> + <xsd:documentation>Meldebestätigungen für alle Personen in der angegebenen Gemeinde.</xsd:documentation> + </xsd:annotation> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="base:GemeindeNr"/> + <xsd:element name="StichtagVon" type="base:TimestampType" minOccurs="0"/> + <xsd:element name="StichtagBis" type="base:TimestampType" minOccurs="0"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="MeldebestaetigungenAnfordernAnfrage"> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="base:GemeindeNr"/> + <xsd:element name="StichtagVon" type="base:TimestampType" minOccurs="0"/> + <xsd:element name="StichtagBis" type="base:TimestampType" minOccurs="0"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="MeldebestaetigungenAnfordernResponse"> + <xsd:annotation> + <xsd:documentation>Server-Antwort zur Anforderung von Massen-Meldebestätigungen</xsd:documentation> + </xsd:annotation> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="MeldebestaetigungenAnfordernAnfrage"/> + <xsd:element ref="base:Message"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> +</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/MeldungHistKorrigieren.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/MeldungHistKorrigieren.xsd new file mode 100644 index 00000000..b322b1b0 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/MeldungHistKorrigieren.xsd @@ -0,0 +1,112 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Name: MeldungHistKorrigieren.xsd.xsd +Zweck: Definiert Datentypen für den Usecase "Historische Meldung korrigieren" im ZMR +Author(s): Ehrenmüller Oliver, ZMR-SU + +Aenderungshistorie: +2011-03-23 mp: ZMR-1568: Zuzugs-/Verzugsstaat vorerst auskommentiert +2011-01-24 mp: Meldungreferenz optional (für hist. Wohnsitzanmeldung) +2011-01-17 mp: Angepasst für hist. Wohnsitzanlage +2010-03-10 mp: Meldung im Response nun optional (notw. für Strang löschen) +2010-03-09 mp: Personreferenz im Response auf Personergebnis geändert +2010-03-09 mp: Umbenannt auf MeldungHistKorrigieren, um Verwechslungen zu vermeiden +2010-03-08 teo: erstellt +--> + +<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" + xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" + xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" + xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + + <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/> + <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/> + <xsd:include schemaLocation="../zmr/entities/Person.xsd"/> + <xsd:include schemaLocation="../zmr/entities/Meldung.xsd"/> + <xsd:include schemaLocation="../zmr/entities/Behoerdenattribute.xsd"/> + <xsd:include schemaLocation="../zmr/entities/Auskunftssperre.xsd"/> + + <xsd:element name="MeldungHistKorrigierenRequest"> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="MeldungHistKorrigierenInfo"/> + <xsd:element ref="PersonReferenz"/> + <xsd:element ref="MeldungReferenz" minOccurs="0"/> + <xsd:element name="Wohnsitz" type="WohnsitzAnlageType" minOccurs="0"/> + <xsd:element ref="base:GemeldetVon" minOccurs="0"/> + <xsd:element ref="base:GemeldetBis" minOccurs="0"/> + <xsd:element ref="base:Unterkunftgeber" minOccurs="0"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="MeldungHistKorrigierenResponse"> + <xsd:complexType> + <xsd:annotation> + <xsd:documentation>Server-Antwort zur Meldungkorrektur</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element ref="MeldungHistKorrigierenAnfrage"/> + <xsd:element ref="base:Message"/> + <xsd:sequence minOccurs="0"> + <xsd:element ref="PersonErgebnis"/> + <xsd:element ref="MeldungErgebnis" minOccurs="0"> + <xsd:annotation> + <xsd:documentation>Gesamtdatensatz der korrigierten Meldung (mit EntityIDs der Meldung und deren abhängigen Entities)</xsd:documentation> + </xsd:annotation> + </xsd:element> + </xsd:sequence> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="MeldungHistKorrigierenAnfrage"> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="MeldungHistKorrigierenInfo"/> + <xsd:element ref="PersonReferenz"/> + <xsd:element ref="MeldungReferenz" minOccurs="0"/> + <xsd:element name="Wohnsitz" type="WohnsitzAnlageType" minOccurs="0"/> + <xsd:element ref="base:GemeldetVon" minOccurs="0"/> + <xsd:element ref="base:GemeldetBis" minOccurs="0"/> + <xsd:element ref="base:Unterkunftgeber" minOccurs="0"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="MeldungHistKorrigierenInfo" type="MeldungHistKorrigierenInfoType"/> + <xsd:complexType name="MeldungHistKorrigierenInfoType"> + <xsd:annotation> + <xsd:documentation>Meta-Informationen zur Meldungkorrektur</xsd:documentation> + </xsd:annotation> + <xsd:complexContent> + <xsd:extension base="base:InfoFachlichType"> + <xsd:sequence> + <xsd:element name="MeldungHistKorrigierenBezug" type="MeldungHistKorrigierenBezugType"/> + <!-- ZMR-1568 + <xsd:element ref="base:StaatZugezogen" minOccurs="0"/> + <xsd:element ref="base:StaatVerzogen" minOccurs="0"/> + --> + </xsd:sequence> + </xsd:extension> + </xsd:complexContent> + </xsd:complexType> + + <xsd:simpleType name="MeldungHistKorrigierenBezugType"> + <xsd:annotation> + <xsd:documentation>mögliche Korrekturen für eine historische Meldung</xsd:documentation> + </xsd:annotation> + <xsd:restriction base="xsd:string"> + <xsd:enumeration value="GemeldetPeriode"/> + <xsd:enumeration value="Unterkunftgeber"/> + <xsd:enumeration value="Adressaenderung"/> + <xsd:enumeration value="StrangLoeschen"/> + <xsd:enumeration value="SatzLoeschen"/> + <xsd:enumeration value="HistWohnsitzanlage"/> + </xsd:restriction> + </xsd:simpleType> + +</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/ORFGISAnforderung.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/ORFGISAnforderung.xsd new file mode 100644 index 00000000..90e6d34a --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/ORFGISAnforderung.xsd @@ -0,0 +1,65 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Name: ORFGISAnforderung.xsd +Zweck: Definiert Datentypen für den ZMR-ORFGISAnforderung +Author(s): Tschurtschenthaler Thomas, ZMR-SU + +Aenderungshistorie: +2006-11-06 tsch: Erstellung +--> + +<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" + xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" + elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + + <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/> + <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/> + + <xsd:element name="ORFGISAnforderungRequest"> + <xsd:annotation> + <xsd:documentation>Anfragedaten der ORFGISAnforderung</xsd:documentation> + </xsd:annotation> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="ORFGISAnforderungInfo"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="ORFGISAnforderungResponse"> + <xsd:annotation> + <xsd:documentation>In der Response werden die Anfragedaten aus dem Request und die Meldung geliefert, dass die Daten bereit gestellt werden.</xsd:documentation> + </xsd:annotation> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="ORFGISAnforderungAnfrage"/> + <xsd:element ref="base:Message"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="ORFGISAnforderungInfo" type="ORFGISAnforderungInfoType"/> + + <xsd:complexType name="ORFGISAnforderungInfoType"> + <xsd:sequence> + <xsd:element name="Gemeindenummern" type="xsd:string" /> + <xsd:element name="DurchfuehrungsZeitpunkt" + type="base:TimestampType" minOccurs="0" /> + <xsd:element name="AnmeldungenAb" type="base:TimestampType" + minOccurs="0" /> + <xsd:element name="Ortskennzeichen" type="xsd:boolean"></xsd:element> + </xsd:sequence> + </xsd:complexType> + + <xsd:element name="ORFGISAnforderungAnfrage"> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="ORFGISAnforderungInfo"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> +</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/ObjektsucheMindestsicherung.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/ObjektsucheMindestsicherung.xsd new file mode 100644 index 00000000..2e91cacf --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/ObjektsucheMindestsicherung.xsd @@ -0,0 +1,88 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: ObjektsucheMindestsicherung.xsd
+Zweck: Definiert Datentypen für die Mindestsicherung - Objektsuche im ZMR
+Author(s): Polster Martin, ZMR-SU
+
+Aenderungshistorie:
+2011-02-09 mp: ObjektsucheMindestsicherungInfo optional
+2010-07-29 mp: Erweitert um Adressstatus
+2010-07-27 mp: Erstellung
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+
+ <xsd:include schemaLocation="Personensuche.xsd"/>
+
+ <xsd:element name="ObjektsucheMindestsicherungRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="ObjektsucheMindestsicherungInfo" minOccurs="0"/>
+ <xsd:element ref="cio:PostAdresse"/>
+ <xsd:element ref="base:Adressstatus"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="ObjektsucheMindestsicherungResponse">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="ObjektsucheMindestsicherungAnfrage"/>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="ObjektsucheMindestsicherungErgebnis" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="ObjektsucheMindestsicherungAnfrage">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="ObjektsucheMindestsicherungInfo" minOccurs="0"/>
+ <xsd:element ref="cio:PostAdresse"/>
+ <xsd:element ref="base:Adressstatus"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="ObjektsucheMindestsicherungInfo">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Stichtag" minOccurs="0"/>
+ <xsd:element ref="base:AnzahlSaetze" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="ObjektsucheMindestsicherungErgebnis">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:GefundeneSaetze">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtanzahl der in der Datenbank gefundenen Personen</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="base:SaetzeVon">
+ <xsd:annotation>
+ <xsd:documentation>Beginn-Index dieser Ergebnisliste im Gesamtergebnis (bei Blaettern); Start mit 0</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="base:SaetzeBis">
+ <xsd:annotation>
+ <xsd:documentation>Ende-Index dieser Ergebnisliste im Gesamtergebnis (bei Blaettern)</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element name="PersonErgebnisSatz" type="PersonErgebnisSatzType" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/ObjektsucheSteuerfahndung.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/ObjektsucheSteuerfahndung.xsd new file mode 100644 index 00000000..0e0e5355 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/ObjektsucheSteuerfahndung.xsd @@ -0,0 +1,91 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: ObjektsucheSteuerfahndung.xsd
+Zweck: Definiert Datentypen für die Steuerfahndungs - Objektsuche im ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2004-11-25 tsch: Erstellung
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+
+ <xsd:element name="ObjektsucheSteuerfahndungRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="ObjektsucheSteuerfahndungInfo"/>
+ <xsd:element ref="cio:PostAdresse" minOccurs="0"/>
+ <xsd:element ref="base:Unterkunftgeber" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="ObjektsucheSteuerfahndungResponse">
+ <xsd:annotation>
+ <xsd:documentation>
+ Es wir entweder das Feld PDFDaten (Anforderung als Druck) mit allen gefundenen Datensätzen,
+ oder ObjektsucheSteuerfahndungErgebnis mit der aktuell geblätterten Seite geliefert.
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="ObjektsucheSteuerfahndungAnfrage"/>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="ObjektsucheSteuerfahndungErgebnis" minOccurs="0"/>
+ <xsd:element name="PDFDaten" type="xsd:base64Binary" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="ObjektsucheSteuerfahndungAnfrage">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="ObjektsucheSteuerfahndungInfo"/>
+ <xsd:element ref="cio:PostAdresse" minOccurs="0"/>
+ <xsd:element ref="base:Unterkunftgeber" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="ObjektsucheSteuerfahndungInfo">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Formalisiert"/>
+ <xsd:element name="AlsDruck" type="xsd:boolean"/>
+ <xsd:element ref="base:AnzahlSaetze" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="ObjektsucheSteuerfahndungErgebnis">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:GefundeneSaetze">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtanzahl der in der Datenbank gefundenen Personen</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="base:SaetzeVon">
+ <xsd:annotation>
+ <xsd:documentation>Beginn-Index dieser Ergebnisliste im Gesamtergebnis (bei Blaettern); Start mit 0</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="base:SaetzeBis">
+ <xsd:annotation>
+ <xsd:documentation>Ende-Index dieser Ergebnisliste im Gesamtergebnis (bei Blaettern)</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="cio:PersonenDaten" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/PersonAendern.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/PersonAendern.xsd new file mode 100644 index 00000000..c29e8e06 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/PersonAendern.xsd @@ -0,0 +1,78 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: PersonAendern.xsd
+Zweck: Definiert Datentypen für Personendaten-Änderungen im ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2004-09-29 tsch: Standarddokumente hinzugefügt
+2004-06-24 tsch: akademische Grade hinzugefügt, PersonAendernMsg entfernt
+2004-06-14 tsch: Behördenattribute hinzugefügt
+2004-01-28 tsch: Gesamtdatensatz der geaenderten Person in der Response-Message
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:include schemaLocation="../zmr/entities/Person.xsd"/>
+
+ <xsd:element name="PersonAendernRequest">
+ <xsd:annotation>
+ <xsd:documentation>Es können die Person und deren abhängige Entities (z.B. Staatsangehoerigkeit) unabhängig geändert werden. Felder, die nicht geschickt werden, bleiben unverändert, leer geschickte Felder werden gelöscht.</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="PersonAendernInfo"/>
+ <xsd:element ref="PersonReferenz"/>
+ <xsd:element ref="PersonAenderung" minOccurs="0"/>
+ <xsd:element ref="StaatsangehoerigkeitAenderung" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element ref="StaatsangehoerigkeitAnlage" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element ref="ReisedokumentAenderung" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element ref="ReisedokumentAnlage" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="BehoerdenattributeSetzen" type="BehoerdenattributeSetzenType" minOccurs="0"/>
+ <xsd:element ref="AuskunftssperreAenderung" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element ref="AuskunftssperreAnlage" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element ref="AkademischerGradAenderung" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element ref="AkademischerGradAnlage" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element ref="StandarddokumentAenderung" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element ref="StandarddokumentAnlage" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element ref="EidasIdentitaetAenderung" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element ref="EidasIdentitaetAnlage" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="PersonAendernResponse">
+ <xsd:annotation>
+ <xsd:documentation>Server-Antwort zur Personenänderung</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="PersonErgebnis">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtdatensatz der geänderten Person (mit EntityIDs der Person und deren abhängigen Entities)</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="PersonAendernInfo" type="PersonAendernInfoType"/>
+ <xsd:complexType name="PersonAendernInfoType">
+ <xsd:annotation>
+ <xsd:documentation>allgemeine Fachliche Informationen zur Personenänderung</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexContent>
+ <xsd:extension base="base:InfoFachlichType">
+
+ </xsd:extension>
+ </xsd:complexContent>
+ </xsd:complexType>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/PersonAnlegen.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/PersonAnlegen.xsd new file mode 100644 index 00000000..e3131165 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/PersonAnlegen.xsd @@ -0,0 +1,67 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: PersonAnlegen.xsd
+Zweck: Definiert Datentypen für den Usecase "Person anlegen" im ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2004-06-24 tsch: PersonAnlegenMsg entfernt
+2004-01-28 tsch: Gesamtdatensatz der neuen Person in der Response-Message
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:include schemaLocation="../zmr/entities/Person.xsd"/>
+ <xsd:include schemaLocation="WohnsitzAnmelden.xsd"/>
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+
+ <xsd:element name="PersonAnlegenRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="PersonAnlegenInfo"/>
+ <xsd:element ref="PersonAnlage"/>
+ <xsd:element ref="MeldungAnlage"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="PersonAnlegenResponse">
+ <xsd:complexType>
+ <xsd:annotation>
+ <xsd:documentation>Server-Antwort zur Personenanlage</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="PersonErgebnis">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtdatensatz der im ZMR angelegten Person (mit EntityIDs der Person und deren abhängigen Entities)</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="MeldungErgebnis">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtdatensatz der angelegten Meldung (mit EntityIDs der Meldung und deren abhängigen Entities)</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="PersonAnlegenInfo" type="PersonAnlegenInfoType"/>
+ <xsd:complexType name="PersonAnlegenInfoType">
+ <xsd:annotation>
+ <xsd:documentation>allgemeine Fachliche Informationen zur Personenanlage</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexContent>
+ <xsd:extension base="base:InfoFachlichType">
+
+ </xsd:extension>
+ </xsd:complexContent>
+ </xsd:complexType>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/PersonExport.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/PersonExport.xsd new file mode 100644 index 00000000..a91e9f5a --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/PersonExport.xsd @@ -0,0 +1,74 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: PersonExport.xsd
+Zweck: Definiert Datentypen für den Usecase "Person export" im LMR
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:include schemaLocation="../zmr/entities/Person.xsd"/>
+ <xsd:include schemaLocation="Personensuche.xsd"/>
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+
+ <xsd:element name="PersonExportRequest">
+ <xsd:complexType>
+ <xsd:annotation>
+ <xsd:documentation>Request für PersonExport</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:EntityID"/>
+ <xsd:element ref="ExportOption"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="PersonExportResponse">
+ <xsd:complexType>
+ <xsd:annotation>
+ <xsd:documentation>Response für PersonExport</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="ExportOption"/>
+ <xsd:element ref="base:PersonExport"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="ExportOption">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="ExportErgebnisOption"/>
+ <xsd:element ref="ExportMeldungOption"/>
+ <xsd:element ref="base:LetzteAenderung" minOccurs="0" maxOccurs="1"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="ExportMeldungOption">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="ALLE" />
+ <xsd:enumeration value="GEMEINDE" />
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="ExportErgebnisOption">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="ALLE" />
+ <xsd:enumeration value="AKTUELL" />
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/PersonKorrigieren.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/PersonKorrigieren.xsd new file mode 100644 index 00000000..3f163231 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/PersonKorrigieren.xsd @@ -0,0 +1,74 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: PersonKorrigieren.xsd
+Zweck: Definiert Datentypen für Korrekturen von Personendaten im ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2004-09-29 tsch: Standarddokumente hinzugefügt
+2004-09-27 tsch: Erstellt
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:include schemaLocation="../zmr/entities/Person.xsd"/>
+
+ <xsd:element name="PersonKorrigierenRequest">
+ <xsd:annotation>
+ <xsd:documentation>Es können die Person und deren abhängige Entities (z.B. Staatsangehoerigkeit) unabhängig geändert werden. Felder, die nicht geschickt werden, bleiben unverändert, leer geschickte Felder werden gelöscht.</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="PersonKorrigierenInfo"/>
+ <xsd:element ref="PersonReferenz"/>
+ <xsd:element ref="PersonAenderung" minOccurs="0"/>
+ <xsd:element ref="StaatsangehoerigkeitAenderung" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element ref="StaatsangehoerigkeitAnlage" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element ref="ReisedokumentAenderung" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element ref="ReisedokumentAnlage" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="BehoerdenattributeSetzen" type="BehoerdenattributeSetzenType" minOccurs="0"/>
+ <xsd:element ref="AuskunftssperreAenderung" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element ref="AuskunftssperreAnlage" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element ref="AkademischerGradAenderung" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element ref="AkademischerGradAnlage" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element ref="StandarddokumentAenderung" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element ref="StandarddokumentAnlage" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="PersonKorrigierenResponse">
+ <xsd:annotation>
+ <xsd:documentation>Server-Antwort zur Personenkorrektur</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="PersonErgebnis">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtdatensatz der korrigierten Person (mit EntityIDs der Person und deren abhängigen Entities)</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="PersonKorrigierenInfo" type="PersonKorrigierenInfoType"/>
+ <xsd:complexType name="PersonKorrigierenInfoType">
+ <xsd:annotation>
+ <xsd:documentation>allgemeine Fachliche Informationen zur Personenkorrektur</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexContent>
+ <xsd:extension base="base:InfoFachlichType">
+
+ </xsd:extension>
+ </xsd:complexContent>
+ </xsd:complexType>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/PersonTrennen.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/PersonTrennen.xsd new file mode 100644 index 00000000..ceba2041 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/PersonTrennen.xsd @@ -0,0 +1,75 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: PersonTrennen.xsd
+Zweck: Definiert Datentypen für den Usecase "Person_Trennen (SPLIT)" im ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2004-09-09 tsch: Erstellung
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+
+ <xsd:include schemaLocation="Personenabfrage.xsd"/>
+
+ <xsd:element name="PersonTrennenSucheRequest">
+ <xsd:annotation>
+ <xsd:documentation>ZMR-Zahl der Person, die gesplittet werden soll</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:ZMRZahl"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="PersonTrennenSucheResponse">
+ <xsd:annotation>
+ <xsd:documentation>Personen- und Medledaten des SPLIT-Kandidaten (es werden nur die zuletzt fachlich gültigen Sätze - sowohl der Person, als auch der Meldungen geliefert)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:element name="PersonTrennenSuchergebnis" type="PAbfrageErgebnisSatzType" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+
+ <xsd:element name="PersonTrennenRequest">
+ <xsd:annotation>
+ <xsd:documentation>
+ Zweiter Schritt der Personentrennung nach der Suche/Anzeige der zu trennenden Person (Trennung durchführen)
+ Enthält die Person-Referenz und die Liste der auf die neue Person zu übertragenden Meldungen
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="PersonReferenz"/>
+ <xsd:element ref="MeldungReferenz" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="PersonTrennenResponse">
+ <xsd:annotation>
+ <xsd:documentation>Personen- und Meldedaten der getrennten Personen, es wird die gesamte fachl. Historie geliefert</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:element name="PersonTrennenErgebnis" type="PAbfrageErgebnisSatzType" minOccurs="2" maxOccurs="2"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/PersonZusammenfuehren.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/PersonZusammenfuehren.xsd new file mode 100644 index 00000000..b44943d7 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/PersonZusammenfuehren.xsd @@ -0,0 +1,75 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: PersonZusammenfuehren.xsd
+Zweck: Definiert Datentypen für den Usecase "Person_Zusammenfuehren (KIT)" im ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2004-09-09 tsch: Erstellung
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+
+ <xsd:include schemaLocation="Personenabfrage.xsd"/>
+
+ <xsd:element name="PersonZusammenfuehrenSucheRequest">
+ <xsd:annotation>
+ <xsd:documentation>ZMR-Zahl der Person, die gesplittet werden soll</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="QuellpersonZMRZahl" type="base:ZMRZahlType"/>
+ <xsd:element name="ZielpersonZMRZahl" type="base:ZMRZahlType"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="PersonZusammenfuehrenSucheResponse">
+ <xsd:annotation>
+ <xsd:documentation>Personen- und Medledaten der KIT-Kandidaten (es werden nur die zuletzt fachlich gültigen Sätze - sowohl der Person, als auch der Meldungen geliefert)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:sequence minOccurs="0">
+ <xsd:element name="PersonZusammenfuehrenSuchergebnis" type="PAbfrageErgebnisSatzType" minOccurs="2" maxOccurs="2"/>
+ </xsd:sequence>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+
+ <xsd:element name="PersonZusammenfuehrenRequest">
+ <xsd:annotation>
+ <xsd:documentation>Zweiter Schritt der Personenzusammenführung nach der Suche/Anzeige der zusammenzuführenden Personen (Zusammenführung durchführen)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="QuellpersonReferenz" type="PersonReferenzType"/>
+ <xsd:element name="ZielpersonReferenz" type="PersonReferenzType"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="PersonZusammenfuehrenResponse">
+ <xsd:annotation>
+ <xsd:documentation>Personen- und Meldedaten zusammengeführten Person, es wird die gesamte fachl. Historie geliefert</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:element name="PersonZusammenfuehrenErgebnis" type="PAbfrageErgebnisSatzType"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/PersonenIndex.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/PersonenIndex.xsd new file mode 100644 index 00000000..72b3d3f2 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/PersonenIndex.xsd @@ -0,0 +1,73 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: PersonenIndex.xsd
+Zweck: Definiert Datentypen für den Personenindex mit verschl. bPKs
+Author(s): Oliver Ehrenmüller, ZMR-SU
+
+Aenderungshistorie:
+2011-09-05 teo Änderungsdienst ZWR (PN126)
+2011-08-05 teo Request/Response vertauscht, +Register-Info
+2011-08-02 teo erstellt.
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+
+ <xsd:element name="PersonenIndexRequest">
+ <xsd:annotation>
+ <xsd:documentation>
+ Im Request werden Meta-Informationen zum Batch und die verschlüsselten BPKs geliefert
+ ECDID steht für "encrypted context dependend id" aus.
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="PersonenIndexInfo"/>
+ <xsd:element name="ECDID" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="PersonenIndexResponse">
+ <xsd:annotation>
+ <xsd:documentation>Es werden keine Responsedaten erwartet.</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence/>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="PersonenIndexInfo" type="PersonenIndexInfoType"/>
+
+ <xsd:complexType name="PersonenIndexInfoType">
+ <xsd:annotation>
+ <xsd:documentation>
+ Meta-Informationen zum ausgelieferten Index:
+ BatchCode/Name, Organisation, Bereich, Zeitraum, etc...
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element name="BatchCode" type="xsd:string"/>
+ <xsd:element name="BatchName" type="xsd:string"/>
+ <xsd:element ref="base:Organisation"/>
+ <xsd:element name="Register" type="xsd:string"/>
+ <xsd:sequence minOccurs="0">
+ <xsd:element name="AbgleichVon" type="base:TimestampType"/>
+ <xsd:element name="AbgleichBis" type="base:TimestampType"/>
+ </xsd:sequence>
+ <xsd:element name="Bereich" type="xsd:string"/>
+ <xsd:element name="PackageID" type="base:ENTITYIDType"/>
+ <xsd:element ref="base:AnzahlSaetze"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Personenabfrage.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Personenabfrage.xsd new file mode 100644 index 00000000..c1b579ce --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Personenabfrage.xsd @@ -0,0 +1,139 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Personenabfrage.xsd
+Zweck: Definiert Datentypen für den Usecase "Personenabfrage" im ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2004-12-09 tsch: Liste der EntityIDs bei Druck optional (für Negativauskunft)
+2004-08-17 tsch: Erstellung
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+ <xsd:include schemaLocation="Personensuche.xsd"/>
+
+ <xsd:element name="PersonenAbfrageRequest">
+ <xsd:annotation>
+ <xsd:documentation>Suchkriterien für die Personensuche im ZMR(Personendaten + Adressdaten)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="PersonenAbfrageInfo"/>
+ <xsd:element ref="base:ZMRZahl" minOccurs="0"/>
+ <xsd:element ref="cio:NatuerlichePerson" minOccurs="0"/>
+ <xsd:element ref="cio:PostAdresse" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="PersonenAbfrageResponse">
+ <xsd:annotation>
+ <xsd:documentation>In der Response werden die Anfragedaten aus dem Request, und das Suchergebnis bzw. eine Text-Meldung geliefert (Falls keine Person gefunden)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="PersonenAbfrageAnfrage"/>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="PersonenAbfrageErgebnis" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="PersonenAbfrageDruckRequest">
+ <xsd:annotation>
+ <xsd:documentation>Suchkriterien für die Personensuche im ZMR (Personendaten + Adressdaten)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:annotation>
+ <xsd:documentation>Liste der EntityIDs der zu druckenden Personen</xsd:documentation>
+ </xsd:annotation>
+ <xsd:element ref="base:EntityID" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="PersonenAbfrageDruckResponse">
+ <xsd:annotation>
+ <xsd:documentation>In der Response werden die Anfragedaten aus dem Request, und das Suchergebnis bzw. eine Text-Meldung geliefert (Falls keine Person gefunden)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="PersonenAbfrageAnfrage"/>
+ <xsd:element ref="base:Message"/>
+ <xsd:element name="PDFDaten" type="xsd:base64Binary"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="PersonenAbfrageInfo" type="PersonenAbfrageInfoType"/>
+ <xsd:element name="PersonenAbfrageErgebnis" type="PersonenAbfrageErgebnisType"/>
+
+ <xsd:element name="PersonenAbfrageAnfrage">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="PersonenAbfrageInfo"/>
+ <xsd:element ref="base:ZMRZahl" minOccurs="0"/>
+ <xsd:element ref="cio:NatuerlichePerson" minOccurs="0"/>
+ <xsd:element ref="cio:PostAdresse" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:complexType name="PersonenAbfrageInfoType">
+ <xsd:annotation>
+ <xsd:documentation>Fachliche Informationen zur Personensuche</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:Bezugsfeld"/>
+ <xsd:element name="Suchkriterien" type="SuchkriterienType"/>
+ <xsd:element name="Ergebniskriterien" type="ErgebniskriterienType"/>
+ <xsd:element name="berechneBpk" type="xsd:boolean" default="false" minOccurs="0"/>
+ <xsd:element ref="base:AnzahlSaetze"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:complexType name="PersonenAbfrageErgebnisType">
+ <xsd:annotation>
+ <xsd:documentation>Enthält je einen 'PersonErgebnisSatz' pro gefundener Person. Wird keine Person gefunden, befindet sich eine entprechende Text-Message in 'PersonensucheMsg'</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:GefundeneSaetze">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtanzahl der in der Datenbank gefundenen Personen</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="base:SaetzeVon">
+ <xsd:annotation>
+ <xsd:documentation>Beginn-Index dieser Ergebnisliste im Gesamtergebnis (bei Blaettern); Start mit 1</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="base:SaetzeBis">
+ <xsd:annotation>
+ <xsd:documentation>Ende-Index dieser Ergebnisliste im Gesamtergebnis (bei Blaettern)</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element name="PersonErgebnisSatz" type="PAbfrageErgebnisSatzType" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:complexType name="PAbfrageErgebnisSatzType">
+ <xsd:annotation>
+ <xsd:documentation>Enthält die Ergebnisdaten zu einer gefundenen Person.</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="Personendaten"/>
+ <xsd:element ref="Meldedaten" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Personenlisten.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Personenlisten.xsd new file mode 100644 index 00000000..e7f18752 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Personenlisten.xsd @@ -0,0 +1,131 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Name: Personenlisten.xsd +Zweck: Definiert Datentypen für den Usecase "Personenlisten" im ZMR. Soll ein generischer Ansatz für +Suche nach aktuellen Personendaten mit v-bPKs sein. Erstnutzer der Schnittstelle ist der VVO (mit VVOAbfrage) +Author(s): Ehrenmüller Oliver, ZMR-SU + +Aenderungshistorie: +2009-11-16 teo: +Flag für Suchwizard +2008-02-26 teo: erstellt. +--> + +<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" + xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" + elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + + <xsd:include schemaLocation="../zmr/Personensuche.xsd"/> + <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/> + <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/> + + <xsd:element name="PersonenListenRequest"> + <xsd:annotation> + <xsd:documentation>Suchkriterien für den PersonenListen-Request im ZMR (Personendaten + Adressdaten)</xsd:documentation> + </xsd:annotation> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="PersonenListenInfo"/> + <xsd:element ref="base:ZMRZahl" minOccurs="0"/> + <xsd:element ref="cio:NatuerlichePerson" minOccurs="0"/> + <xsd:element ref="cio:PostAdresse" minOccurs="0"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="PersonenListenResponse"> + <xsd:annotation> + <xsd:documentation>In der Response werden die Anfragedaten aus dem Request, und das + Suchergebnis bzw. eine Text-Meldung geliefert (Falls keine Person gefunden)</xsd:documentation> + </xsd:annotation> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="PersonenListenAnfrage"/> + <xsd:element ref="base:Message"/> + <xsd:element ref="PersonenListenErgebnis" minOccurs="0"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="PersonenListenInfo" type="PersonenListenInfoType"/> + <xsd:element name="PersonenListenErgebnis" type="PersonenListenErgebnisType"/> + + <xsd:element name="PersonenListenAnfrage"> + <xsd:annotation> + <xsd:documentation>Anfragedaten, entsprechen den Suchdaten des Requests</xsd:documentation> + </xsd:annotation> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="PersonenListenInfo"/> + <xsd:element ref="base:ZMRZahl" minOccurs="0"/> + <xsd:element ref="cio:NatuerlichePerson" minOccurs="0"/> + <xsd:element ref="cio:PostAdresse" minOccurs="0"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:complexType name="PersonenListenInfoType"> + <xsd:annotation> + <xsd:documentation>Fachliche Informationen zur PersonenListen</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element ref="base:Bezugsfeld"/> + <xsd:element name="Suchkriterien" type="PersonenListenSuchkriterienType"/> + <xsd:element name="Ergebniskriterien" type="PersonenListenErgebniskriterienType"/> + </xsd:sequence> + </xsd:complexType> + + <xsd:complexType name="PersonenListenSuchkriterienType"> + <xsd:annotation> + <xsd:documentation>Suchkriterien</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element ref="base:InclusivHistorie"/> + <xsd:element ref="base:Formalisiert"/> + <xsd:element name="Suchwizard" type="xsd:boolean" minOccurs="0"/> + </xsd:sequence> + </xsd:complexType> + + <xsd:complexType name="PersonenListenErgebniskriterienType"> + <xsd:annotation> + <xsd:documentation>Ergebniskriterien</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element name="vbPKAnfrage" minOccurs="0" maxOccurs="10"> + <xsd:annotation> + <xsd:documentation>v-bPKs die miterzeugt werden sollen. (zb. urn:publicid:gv.at:ecdid+BMI+ZP)</xsd:documentation> + </xsd:annotation> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:whiteSpace value="collapse"/> + <xsd:minLength value="28"/> + <xsd:maxLength value="50"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + </xsd:sequence> + </xsd:complexType> + + <xsd:complexType name="PersonenListenErgebnisType"> + <xsd:annotation> + <xsd:documentation>PersonenListenErgebnisType beinhaltet die Liste der gefundenen Personen. + Derzeit wird die Liste auf 50 Sätze begrenzt.</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element name="PersonenListenSatz" type="PersonenListenSatzType" maxOccurs="unbounded"/> + </xsd:sequence> + </xsd:complexType> + + <xsd:complexType name="PersonenListenSatzType"> + <xsd:annotation> + <xsd:documentation>Beinhaltet als einen Ergebnissatz eine Personen und ihre aktuellen Meldungen</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:group ref="ZMRPersonErgebnissatzGroup"/> + </xsd:sequence> + </xsd:complexType> + +</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Personensuche.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Personensuche.xsd new file mode 100644 index 00000000..a501ba1f --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Personensuche.xsd @@ -0,0 +1,255 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Personensuche.xsd
+Zweck: Definiert Datentypen für den Usecase "Person suchen Meldevorgang" im ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2010-10-15 mp: ZMR-1473: Personensuche erweitert um Dokumentsuche
+2010-04-02 teo: ZMR-1356: ZMR-Suchergebnis: die Aufteilung in ZMR- und ERnP-Treffer fehlt
+2010-01-26 teo: ZMR-1334: Umbau der Suche mit Namensteilen auf eigene Suchoption
+2009-12-15 teo: LMR-712 Übernahme LMR Auslandsösterreicher ins ERnP
+2009-07-02 rp: LMR-660: +Sortierung
+2008-03-20 teo: CQ#2960 rückgängig gemacht.
+2008-02-25 teo: CQ#2960: +Dummy-Attribut für .Net-Umgebungen
+2006-08-08 tsch: Feld EingeschraenkteHistorie hinzugefügt
+2005-10-06 tsch: Suchkriterium InclusivERnP hinzugefügt, Umbenennung EGR->ERnP
+2004-06-22 tsch: Akademische Grade hinzugefügt; SaetzeVon und SaetzeBis im Ergebnis
+2004-06-18 tsch: Stichtag hinzugefügt
+2004-06-08 tsch: Message immer im Ergebnis
+2004-05-17 tsch: Organisation entfernt
+2004-05-04 tsch: InclusivAusgeblendeteSaetze entfernt
+2004-04-15 tsch: ZMR-Zahl bei Suchanfrage dazu (ZMR-Zahl-Suche nicht über NatuerlichePerson.Identification)
+2004-01-27 tsch: Personen- und Kontaktadressdaten aus dem Ergänzungsregister im Suchergebnis definiert
+2004-01-26 tsch: Integration der CIO-Personendaten Struktur (http://reference.e-government.gv.at/namespace/persondata/de/20040201#)
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:include schemaLocation="../zmr/entities/Meldung.xsd"/>
+ <xsd:include schemaLocation="../zmr/entities/Person.xsd"/>
+ <xsd:include schemaLocation="../zmr/entities/ERnPPerson.xsd"/>
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+
+ <xsd:element name="PersonSuchenRequest">
+ <xsd:annotation>
+ <xsd:documentation>Suchkriterien für die Personensuche im ZMR/ERnP (Personendaten + Adressdaten)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="PersonensucheInfo"/>
+ <xsd:element ref="base:ZMRZahl" minOccurs="0"/>
+ <xsd:element ref="cio:NatuerlichePerson" minOccurs="0"/>
+ <xsd:element ref="cio:PostAdresse" minOccurs="0"/>
+ <xsd:element ref="DokumentSuchdaten" minOccurs="0"/>
+ <xsd:element ref="EidasSuchdaten" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="PersonSuchenResponse">
+ <xsd:annotation>
+ <xsd:documentation>In der Response werden die Anfragedaten aus dem Request, und das Suchergebnis bzw. eine Text-Meldung geliefert (Falls keine Person gefunden)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="PersonensucheAnfrage"/>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="Personensuchergebnis" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="PersonensucheInfo" type="PersonensucheInfoType"/>
+ <xsd:element name="Personensuchergebnis" type="PersonensuchergebnisType"/>
+
+ <xsd:element name="PersonensucheAnfrage">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="PersonensucheInfo"/>
+ <xsd:element ref="base:ZMRZahl" minOccurs="0"/>
+ <xsd:element ref="cio:NatuerlichePerson" minOccurs="0"/>
+ <xsd:element ref="cio:PostAdresse" minOccurs="0"/>
+ <xsd:element ref="DokumentSuchdaten" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:complexType name="PersonensucheInfoType">
+ <xsd:annotation>
+ <xsd:documentation>Fachliche Informationen zur Personensuche</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:Bezugsfeld"/>
+ <xsd:element name="Suchkriterien" type="SuchkriterienType"/>
+ <xsd:element name="Ergebniskriterien" type="ErgebniskriterienType"/>
+ <xsd:element ref="base:AnzahlSaetze"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:complexType name="SuchkriterienType">
+ <xsd:annotation>
+ <xsd:documentation>Datenbank-Suchkriterien für Personen- und Meldedaten der Personensuche</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:Stichtag" minOccurs="0"/>
+ <xsd:element ref="base:InclusivHistorie"/>
+ <xsd:element ref="base:Formalisiert"/>
+ <xsd:element name="ErweitereSuchoptionen" minOccurs="0">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="Teilnamen"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="InclusivERnP" type="xsd:boolean" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:complexType name="ErgebniskriterienType">
+ <xsd:annotation>
+ <xsd:documentation>Anzeigekriterien für Personen- und Meldedaten im Personensuchergebnis</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:choice>
+ <xsd:element ref="base:InclusivHistorie"/>
+ <xsd:element ref="base:EingeschraenkteHistorie"/>
+ </xsd:choice>
+ <xsd:element ref="Sortierung" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="Sortierung">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="Person">
+ <xsd:annotation>
+ <xsd:documentation>Sortierung nach Familienname, Vorname, Geburtsdatum (Default)</xsd:documentation>
+ </xsd:annotation>
+ </xsd:enumeration>
+ <xsd:enumeration value="Adresse">
+ <xsd:annotation>
+ <xsd:documentation>
+ Sortierung nach PLZ, Straße, Hausnummer, Stiege, Tür, Familienname, Vorname,
+ Geburtsdatum.
+ Die Sortierung wirkt auf die Adresse, nach der gesucht wurde, d.h. es sollte
+ auf eine eingeschränkt werden (z.B. Suche in Objekt).
+ </xsd:documentation>
+ </xsd:annotation>
+ </xsd:enumeration>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:complexType name="PersonensuchergebnisType">
+ <xsd:annotation>
+ <xsd:documentation>Enthält je einen 'PersonErgebnisSatz' pro gefundener Person. Wird keine Person gefunden, befindet sich eine entprechende Text-Message in 'PersonensucheMsg'</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:GefundeneSaetze">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtanzahl der in der Datenbank gefundenen Personen</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element name="GefundeneSaetzeERnP" type="base:IntegerType" minOccurs="0">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtanzahl der in der ERnP-Datenbank gefundenen Personen</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="base:SaetzeVon">
+ <xsd:annotation>
+ <xsd:documentation>Beginn-Index dieser Ergebnisliste im Gesamtergebnis (bei Blaettern); Start mit 1</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="base:SaetzeBis">
+ <xsd:annotation>
+ <xsd:documentation>Ende-Index dieser Ergebnisliste im Gesamtergebnis (bei Blaettern)</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element name="PersonErgebnisSatz" type="PersonErgebnisSatzType" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:complexType name="PersonErgebnisSatzType">
+ <xsd:annotation>
+ <xsd:documentation>Enthält die Ergebnisdaten zu einer gefundenen Person.</xsd:documentation>
+ </xsd:annotation>
+ <xsd:choice>
+ <xsd:group ref="ZMRPersonErgebnissatzGroup"/>
+ <xsd:group ref="ERnPPersonErgebnissatzGroup"/>
+ </xsd:choice>
+ </xsd:complexType>
+
+ <xsd:group name="ZMRPersonErgebnissatzGroup">
+ <xsd:annotation>
+ <xsd:documentation>Fasst die gefundenen Daten einer Person aus dem Melderegister (aktuelle und historische Personendaten, sowie aktuelle und historische Meldedaten)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="Personendaten"/>
+ <xsd:element ref="Meldedaten" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:group>
+
+ <xsd:element name="Personendaten">
+ <xsd:annotation>
+ <xsd:documentation>Historienliste der Personendaten (Erklärung Historienliste siehe Dokument ZMR2Schnittstellen-Richtlinien.doc</xsd:documentation>
+ </xsd:annotation>
+
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="PersonErgebnis" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="Meldedaten" type="MeldedatenType">
+ <xsd:annotation>
+ <xsd:documentation>gelieferte Meldungen der Person (ein Strang = ein Element 'Meldedaten')</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+
+ <xsd:complexType name="MeldedatenType">
+ <xsd:annotation>
+ <xsd:documentation>Historienliste der Meldedaten einer Meldung</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="MeldungErgebnis" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:group name="ERnPPersonErgebnissatzGroup">
+ <xsd:annotation>
+ <xsd:documentation>Fasst die gefundenen Daten einer Person aus dem Ergänzungsregister (ERnP) (aktuelle und historische Personendaten, sowie aktuelle und historische Kontaktadressen)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element name="ERnPPersonendaten">
+ <xsd:annotation>
+ <xsd:documentation>Historienliste der Personendaten (Erklärung Historienliste siehe Dokument ZMR2Schnittstellen-Richtlinien.doc</xsd:documentation>
+ </xsd:annotation>
+
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="ERnPPersonErgebnis" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="ERnPHistLMRMeldungen" type="MeldedatenType" minOccurs="0" maxOccurs="unbounded">
+ <xsd:annotation>
+ <xsd:documentation>
+ LMR-Histmeldungen für ERnP-Personen werden bei der LMR-Suche benötigt.
+ Sonst nicht verwenden, ausbauen, wenn Schnittstelle an externe Partner
+ geliefert wird!!!
+ </xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ </xsd:sequence>
+ </xsd:group>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/QKZAuswertung.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/QKZAuswertung.xsd new file mode 100644 index 00000000..e6dafecd --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/QKZAuswertung.xsd @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: QKZAuswertung.xsd
+Zweck: Definiert Datentypen für das Anfordern einer QKZ-Auswertung innerhalb einer Gemeinde (Die Auswertung steht in PDF-Form in den Auswertungen bereit)
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2010-06-15 ZMR-171 XML-Schnittstelle für Qualifikationskennzeichenliste
+2005-02-02 Erstellt
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+ <xsd:include schemaLocation="../zmr/entities/Qualifikationskennzeichen.xsd"/>
+
+ <xsd:element name="QKZAuswertungRequest">
+ <xsd:annotation>
+ <xsd:documentation>Die Auswertung läuft über alle Personen mit den angegebene QKZ in der angegebenen Gemeinde.</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:GemeindeNr"/>
+ <xsd:element ref="QualifikationskennzeichenCode" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="QKZAuswertungAnfrage">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:GemeindeNr"/>
+ <xsd:element ref="QualifikationskennzeichenCode" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="QKZAuswertungResponse">
+ <xsd:annotation>
+ <xsd:documentation>Server-Antwort zur Anforderung einer QKZ-Auswertung</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="QKZAuswertungAnfrage"/>
+ <xsd:element ref="base:Message"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="QKZAuswertung">
+ <xsd:annotation>
+ <xsd:documentation>Auswertungs-XML für QKZs laut ZMR-171</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:element name="Qualifikationskennzeichen" type="QualifikationskennzeichenAnlageType" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element ref="QKZZuordnung" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="QKZZuordnung">
+ <xsd:annotation>
+ <xsd:documentation>Definiert eine Zuordnung zwischen einer Person und einem QKZ für die XML-Auswertung laut ZMR-171</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="QualifikationskennzeichenCode"/>
+ <xsd:element ref="base:GemeindeNr"/>
+ <xsd:element ref="cio:NatuerlichePerson"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/QKZBearbeiten.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/QKZBearbeiten.xsd new file mode 100644 index 00000000..2f97c8b8 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/QKZBearbeiten.xsd @@ -0,0 +1,71 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: QKZWarten.xsd
+Zweck: Definiert Datentypen für Wartung von Qualifikationskennzeichen im ZMR/ZPR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2005-05-10 Löschen und Anlegen von mehreren QKZ in einem Request
+2005-02-02 Erstellt
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:include schemaLocation="../zmr/entities/Person.xsd"/>
+ <xsd:include schemaLocation="../zmr/entities/Meldung.xsd"/>
+ <xsd:include schemaLocation="../zmr/entities/Qualifikationskennzeichen.xsd"/>
+
+ <xsd:element name="QKZBearbeitenRequest">
+ <xsd:annotation>
+ <xsd:documentation>Mit einem Request können Qualifikationskennzeichen angelegt oder gelöscht werden.</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="QKZBearbeitenInfo"/>
+ <xsd:choice>
+ <xsd:annotation>
+ <xsd:documentation>Referenz auf das Objekt, für das die QKZ-Wartung durchgeführt wird (Person oder Meldung)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:element ref="PersonReferenz"/>
+ <xsd:element ref="MeldungReferenz"/>
+ </xsd:choice>
+ <xsd:element ref="QualifikationskennzeichenAnlage" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element ref="QualifikationskennzeichenLoeschen" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="QKZBearbeitenResponse">
+ <xsd:annotation>
+ <xsd:documentation>Server-Antwort zur QKZ-Wartung</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:element name="Qualifikationskennzeichen" type="QualifikationskennzeichenErgebnisType" minOccurs="1" maxOccurs="unbounded">
+ <xsd:annotation>
+ <xsd:documentation>Datensatz der angelegten/gelöschten Qualifikationskennzeichen</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="QKZBearbeitenInfo" type="QKZBearbeitenInfoType"/>
+ <xsd:complexType name="QKZBearbeitenInfoType">
+ <xsd:annotation>
+ <xsd:documentation>allgemeine Fachliche Informationen zur QKZ-Wartung</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexContent>
+ <xsd:extension base="base:InfoFachlichType">
+ </xsd:extension>
+ </xsd:complexContent>
+ </xsd:complexType>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/SZREinzelabfrage.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/SZREinzelabfrage.xsd new file mode 100644 index 00000000..f0cc9d26 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/SZREinzelabfrage.xsd @@ -0,0 +1,85 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: SZREinzelabfrage.xsd
+Zweck: Definiert Datentypen für die Einzalabfrage des Stammzahlenregisters im ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2009-10-27 teo: SZR-Verordnung 2009
+2006-03-21 tsch: Ordnungszahl hinzugefügt
+2004-09-09 tsch: Erstellung
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+ <xsd:include schemaLocation="SZRPersonenbindung.xsd"/>
+
+ <xsd:element name="SZREinzelabfrageRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="SZREinzelabfrageInfo"/>
+ <xsd:element ref="base:OrdnungsZahl" minOccurs="0"/>
+ <xsd:element ref="cio:NatuerlichePerson" minOccurs="0"/>
+ <xsd:element ref="cio:PostAdresse" minOccurs="0"/>
+ <xsd:element ref="DokumentSuchdaten" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="SZREinzelabfrageResponse">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="SZREinzelabfrageAnfrage"/>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="SZREinzelabfrageErgebnis" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="SZREinzelabfrageAnfrage">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="SZREinzelabfrageInfo"/>
+ <xsd:element ref="cio:NatuerlichePerson" minOccurs="0"/>
+ <xsd:element ref="cio:PostAdresse" minOccurs="0"/>
+ <xsd:element ref="DokumentSuchdaten" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="SZREinzelabfrageInfo" type="SZREinzelabfrageInfoType"/>
+ <xsd:complexType name="SZREinzelabfrageInfoType">
+ <xsd:annotation>
+ <xsd:documentation>allgemeine Fachliche Informationen für die SZR - Einzelabfrage</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:Bezugsfeld"/>
+ <xsd:element ref="base:Behoerdenschluessel" minOccurs="0"/>
+ <xsd:element name="ListePersonenWennNichtEindeutig" type="xsd:boolean" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="SZREinzelabfrageErgebnis">
+ <xsd:complexType>
+ <xsd:choice>
+ <xsd:sequence>
+ <xsd:element ref="base:OrdnungsZahl"/>
+ <xsd:element ref="base:Register"/>
+ <xsd:element name="PersonHistorisch" type="xsd:boolean"/>
+ </xsd:sequence>
+ <xsd:sequence>
+ <xsd:element ref="SZRPersonenbindungErgebnis" maxOccurs="10"/>
+ </xsd:sequence>
+ </xsd:choice>
+ </xsd:complexType>
+ </xsd:element>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/SZRPersonenbindung.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/SZRPersonenbindung.xsd new file mode 100644 index 00000000..81a836d6 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/SZRPersonenbindung.xsd @@ -0,0 +1,84 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: SZRPersonenbindung.xsd
+Zweck: Definiert Datentypen für die Personenbindungs-Suche Anfrage des Stammzahlenregisters ins ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2009-10-27 teo: SZR-Verordnung 2009
+2008-11-12 teo: +ERnPEintragWennNotwendig, SZRPersonenbindungErgebnis als Array für Ergebnisliste
+2006-03-21 tsch: Ordnungszahl hinzugefügt
+2004-09-09 tsch: Erstellung
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+ <xsd:include schemaLocation="../zmr/entities/Reisedokument.xsd"/>
+
+ <xsd:element name="SZRPersonenbindungRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="SZRPersonenbindungInfo"/>
+ <xsd:element ref="base:OrdnungsZahl" minOccurs="0"/>
+ <xsd:element ref="cio:NatuerlichePerson" minOccurs="0"/>
+ <xsd:element ref="cio:PostAdresse" minOccurs="0"/>
+ <xsd:element ref="DokumentSuchdaten" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="SZRPersonenbindungResponse">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="SZRPersonenbindungAnfrage"/>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="SZRPersonenbindungErgebnis" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="SZRPersonenbindungAnfrage">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="SZRPersonenbindungInfo"/>
+ <xsd:element ref="cio:NatuerlichePerson" minOccurs="0"/>
+ <xsd:element ref="cio:PostAdresse" minOccurs="0"/>
+ <xsd:element ref="DokumentSuchdaten" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="SZRPersonenbindungInfo" type="SZRPersonenbindungInfoType"/>
+ <xsd:complexType name="SZRPersonenbindungInfoType">
+ <xsd:annotation>
+ <xsd:documentation>allgemeine Fachliche Informationen für die Personenbindungsanfrage</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:Bezugsfeld"/>
+ <xsd:element ref="base:Behoerdenschluessel" minOccurs="0"/>
+ <xsd:element name="ERnPEintragBeiBedarf" type="xsd:boolean" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="SZRPersonenbindungErgebnis">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="cio:PersonenDaten"/>
+ <xsd:element ref="base:Register"/>
+ <xsd:element ref="base:Adressschluessel" minOccurs="0"/>
+ <xsd:element name="WohnsitzHistorisch" type="xsd:boolean"/>
+ <xsd:element name="AuskunftssperreGesetzt" type="xsd:boolean"/>
+ <xsd:element name="ERnPEintragAngelegt" type="xsd:boolean" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/SZRPersonensuche.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/SZRPersonensuche.xsd new file mode 100644 index 00000000..7e1050e5 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/SZRPersonensuche.xsd @@ -0,0 +1,75 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: SZRPersonensuche.xsd
+Zweck: Definiert Datentypen für die Personensuche - Abfrage des Stammzahlenregisters ins ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2006-03-21 tsch: Ordnungszahl hinzugefügt
+2004-09-09 tsch: Erstellung
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+ <xsd:include schemaLocation="SZRPersonenbindung.xsd"/>
+
+ <xsd:element name="SZRPersonensucheRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="SZRPersonensucheInfo"/>
+ <xsd:element ref="base:OrdnungsZahl" minOccurs="0"/>
+ <xsd:element ref="cio:NatuerlichePerson" minOccurs="0"/>
+ <xsd:element ref="cio:PostAdresse" minOccurs="0"/>
+ <xsd:element ref="DokumentSuchdaten" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="SZRPersonensucheResponse">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="SZRPersonensucheAnfrage"/>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="SZRPersonensucheErgebnis" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="SZRPersonensucheAnfrage">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="SZRPersonensucheInfo"/>
+ <xsd:element ref="cio:NatuerlichePerson" minOccurs="0"/>
+ <xsd:element ref="cio:PostAdresse" minOccurs="0"/>
+ <xsd:element ref="DokumentSuchdaten" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="SZRPersonensucheInfo" type="SZRPersonensucheInfoType"/>
+ <xsd:complexType name="SZRPersonensucheInfoType">
+ <xsd:annotation>
+ <xsd:documentation>allgemeine Fachliche Informationen für die SZR - Personensuche</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:Bezugsfeld"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="SZRPersonensucheErgebnis">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:GefundeneSaetze"/>
+ <xsd:element ref="base:OrdnungsZahl" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/SZRSammelabfrage.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/SZRSammelabfrage.xsd new file mode 100644 index 00000000..0608fa38 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/SZRSammelabfrage.xsd @@ -0,0 +1,54 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: SZRSammelabfrage.xsd
+Zweck: Definiert Datentypen für Sammelrequests des Stammzahlenregisters ins ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2006-03-21 tsch: Erstellung
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:include schemaLocation="../zmr/SZRPersonenbindung.xsd"/>
+ <xsd:include schemaLocation="../zmr/SZREinzelabfrage.xsd"/>
+ <xsd:include schemaLocation="../zmr/SZRPersonensuche.xsd"/>
+
+ <xsd:element name="SZRSammelRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="Item" minOccurs="0" maxOccurs="unbounded">
+ <xsd:complexType>
+ <xsd:choice>
+ <xsd:element ref="SZRPersonenbindungRequest"/>
+ <xsd:element ref="SZREinzelabfrageRequest"/>
+ <xsd:element ref="SZRPersonensucheRequest"/>
+ </xsd:choice>
+ </xsd:complexType>
+ </xsd:element>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="SZRSammelResponse">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="Item" minOccurs="0" maxOccurs="unbounded">
+ <xsd:complexType>
+ <xsd:choice>
+ <xsd:element ref="SZRPersonenbindungResponse"/>
+ <xsd:element ref="SZREinzelabfrageResponse"/>
+ <xsd:element ref="SZRPersonensucheResponse"/>
+ </xsd:choice>
+ </xsd:complexType>
+ </xsd:element>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Sperrliste.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Sperrliste.xsd new file mode 100644 index 00000000..624919ff --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Sperrliste.xsd @@ -0,0 +1,129 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Adresssperrliste
+Zweck: Definiert Requests/Responses zum Lesen/Erfassen/Löschen von Adressen, an denen eine
+ Wohnsitzanmeldung nicht erlaubt ist.
+Author(s): Richie Mayrhofer, ZMR
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:include schemaLocation="../zmr/entities/Meldung.xsd"/>
+ <xsd:include schemaLocation="../zmr/entities/Person.xsd"/>
+ <xsd:include schemaLocation="../zmr/WohnsitzUmmelden.xsd"/>
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+
+ <xsd:element name="SperrlisteRequest">
+ <xsd:annotation>
+ <xsd:documentation>Auflisten der gesperrten Adressen für die angegebene Gemeinde</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="cio:Gemeindekennziffer"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="SperrlisteResponse">
+ <xsd:annotation>
+ <xsd:documentation>Response der Personensuche im ZMR. Geliefert werden die ID-Daten sowie alle Staatsangehoerigkeiten</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="SperradresseErgebnis" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="SperrlisteAnlegenRequest">
+ <xsd:annotation>
+ <xsd:documentation>Anlegen einer neuen Adressen für die angegebene Gemeinde</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="Sperradresse" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="SperrlisteUpdateResponse">
+ <xsd:annotation>
+ <xsd:documentation>Message fuer das Update einer Sperradresse</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="SperrlisteLoeschenRequest">
+ <xsd:annotation>
+ <xsd:documentation>Loeschen von Sperradressen</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence minOccurs="1" maxOccurs="unbounded">
+ <xsd:element ref="SperradresseId"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="SperradresseId">
+ <xsd:annotation>
+ <xsd:documentation>Id der Sperradresse</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="EntityId" type="xsd:long"/>
+ <xsd:element ref="base:LetzteAenderung"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="SperradresseErgebnis">
+ <xsd:annotation>
+ <xsd:documentation>gespeicherte Sperradresse</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="EntityId" type="xsd:long"/>
+ <xsd:element ref="base:LetzteAenderung"/>
+ <xsd:element ref="Sperradresse"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="Sperradresse">
+ <xsd:annotation>
+ <xsd:documentation>Adresse</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="cio:Postleitzahl"/>
+ <xsd:element ref="cio:Gemeinde"/>
+ <xsd:element ref="cio:Gemeindekennziffer"/>
+ <xsd:element ref="cio:Ortschaft" minOccurs="0"/>
+ <xsd:element ref="cio:Strassenname"/>
+ <xsd:element name="Hausnummer" type="xsd:string" minOccurs="0"/>
+ <xsd:element name="Stiege" type="xsd:string" minOccurs="0"/>
+ <xsd:element name="Tuer" type="xsd:string" minOccurs="0"/>
+ <xsd:element ref="AdressRegisterEintrag" minOccurs="1"/>
+ <xsd:element ref="cio:Nutzungseinheitlaufnummer" minOccurs="0"/>
+ <xsd:element ref="base:OKZ" minOccurs="0"/>
+ <xsd:element ref="base:SKZ" minOccurs="0"/>
+ <xsd:element ref="base:Gebaeudeunterscheidung" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Storno.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Storno.xsd new file mode 100644 index 00000000..50b6f1f4 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Storno.xsd @@ -0,0 +1,146 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Storno.xsd
+Zweck: Definiert Datentypen für den Usecase "Person und/oder Wohnsitz Stornieren" im ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2010-04-16 teo: ZMR-1397: Anzeige von Details in der Storno Voransicht (Personenstorno)
+2009-07-23 teo: Mehrfachstorno / Undo
+2004-09-27 tsch: Erstellt
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:include schemaLocation="Personensuche.xsd"/>
+
+ <xsd:element name="StornoDarstellenRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="StornoModus" minOccurs="0">
+ <xsd:annotation>
+ <xsd:documentation>
+ Ãœber den Storno-Modus kann gesteuert werden, ob
+ der Storno normal durchgeführt werden soll, oder
+ zb. ob der letzte Storno rückgängig gemacht werden soll.
+ Fehlt der Storno-Modus wird das Storno normal
+ durchgeführt.
+ </xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="PersonReferenz"/>
+ <xsd:element ref="MeldungReferenz" minOccurs="0">
+ <xsd:annotation>
+ <xsd:documentation>
+ Falls eine bestimmte Meldung storniert werden soll,
+ müssen hier ihre Referenzdaten geschickt werden.
+ Wird nur die Personreferenz geschickt, wird die Person storniert
+ </xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="StornoDarstellenResponse">
+ <xsd:complexType>
+ <xsd:annotation>
+ <xsd:documentation>Stellt den Stornovorgang für den User dar</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:sequence minOccurs="0">
+ <xsd:annotation>
+ <xsd:documentation>
+ Für jede in den Storno involvierte Person wird ein Element StornoVergleich geliefert.
+ Hier wird der Person-Gesamtdatensatz vor und nach dem Storno dargestellt.
+ Auch wenn aussschließlich Meldedaten vom Storno betroffen sind, wird die gesamte Person geliefert.
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:element name="StornoVergleich" type="StornoVergleichType" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:complexType name="StornoVergleichType">
+ <xsd:sequence>
+ <xsd:element name="PersonSatzVorStorno" type="PersonErgebnisSatzType"/>
+ <xsd:element name="PersonSatzNachStorno" type="PersonErgebnisSatzType" minOccurs="0"/>
+ <xsd:element name="WeitereBetroffenePerson" type="base:ZMRZahlType" minOccurs="0" maxOccurs="unbounded">
+ <xsd:annotation>
+ <xsd:documentation>
+ Bei einem Storno kann vorkommen, dass mehrere Personen involviert sind.
+ Zum Beispiel bei einem Kit-Fall. Um davor zu warnen, wird hier explizit
+ eine Liste von ZMR-Zahlen geliefert, die Personen anzeigen, bei denen das
+ Storno ebenfalls eine Änderung bewirken würde.
+ </xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="StornoRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="StornoModus" minOccurs="0">
+ <xsd:annotation>
+ <xsd:documentation>
+ Ãœber den Storno-Modus kann gesteuert werden, ob
+ der Storno normal durchgeführt werden soll, oder
+ zb. ob der letzte Storno rückgängig gemacht werden soll.
+ Fehlt der Storno-Modus wird das Storno normal
+ durchgeführt.
+ </xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="PersonReferenz"/>
+ <xsd:element ref="MeldungReferenz" minOccurs="0">
+ <xsd:annotation>
+ <xsd:documentation>
+ Falls eine bestimmte Meldung storniert werden soll,
+ müssen hier ihre Referenzdaten geschickt werden.
+ Wird nur die Personreferenz geschickt, wird die Person storniert
+ </xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="StornoResponse">
+ <xsd:complexType>
+ <xsd:annotation>
+ <xsd:documentation>Server-Antwort des Storno-Vorgangs</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:element name="PersonSatzNachStorno" type="PersonErgebnisSatzType" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="StornoModus">
+ <xsd:annotation>
+ <xsd:documentation>
+ Stellt Steuerungsmöglichkeiten für den Storno zur Verfügung.
+ zb. normales Storno, letztes Storno rückgängig machen (Storno vom Storno)
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="NORMAL"/>
+ <xsd:enumeration value="RUECKGAENGIG"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/SzrAbfrage.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/SzrAbfrage.xsd new file mode 100644 index 00000000..1e8261ab --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/SzrAbfrage.xsd @@ -0,0 +1,59 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified"
+ version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd" />
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd" />
+ <xsd:include schemaLocation="../zmr/entities/Reisedokument.xsd" />
+
+ <xsd:element name="SzrAbfrageRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="Art" type="AbfrageArt" />
+ <xsd:element name="SzrTransactionId" type="xsd:string" />
+ <xsd:element ref="cio:NatuerlichePerson" minOccurs="0" />
+ <xsd:element ref="cio:PostAdresse" minOccurs="0" />
+ <xsd:element ref="DokumentSuchdaten" minOccurs="0" />
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:simpleType name="AbfrageArt">
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="EinzelMitList" />
+ <xsd:enumeration value="EinzelOhneList" />
+ <xsd:enumeration value="Kombi" />
+ <xsd:enumeration value="Persbin" />
+ <xsd:enumeration value="Suche" />
+ </xsd:restriction>
+ </xsd:simpleType>
+
+ <xsd:element name="SzrAbfrageResponse">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Message" />
+ <xsd:element ref="SzrAbfrageErgebnis" minOccurs="0" maxOccurs="unbounded" />
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="SzrAbfrageErgebnis">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="cio:PersonenDaten" />
+ <xsd:element ref="base:Register" />
+ <xsd:element name="Basiszahl" type="xsd:string" />
+ <xsd:element ref="base:Adressschluessel" minOccurs="0" />
+ <xsd:element name="WohnsitzHistorisch" type="xsd:boolean" minOccurs="0" />
+ <xsd:element name="AuskunftssperreGesetzt" type="xsd:boolean" minOccurs="0" />
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/TechnischeAnsicht.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/TechnischeAnsicht.xsd new file mode 100644 index 00000000..a8d09153 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/TechnischeAnsicht.xsd @@ -0,0 +1,132 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Name: TechnischeAnsicht.xsd +Zweck: Definiert Datentypen für die technische Ansicht eines Personensatzes mit Meldungen +Author(s): Ehrenmüller Oliver, ZMR-SU + +Aenderungshistorie: +2009-10-27 mp: Schnittstelle überarbeitet, Person und Meldung getrennt +2009-08-24 mp: Bei TechnischeAnsichtInfo minOccurs=0 gesetzt +2009-08-19 teo: Erstellung +--> + +<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" + targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" + elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + + <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/> + <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/> + <xsd:include schemaLocation="../zmr/entities/Person.xsd"/> + <xsd:include schemaLocation="../zmr/entities/Meldung.xsd"/> + + <xsd:element name="TechnischeAnsichtRequest"> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="TechnischeAnsichtInfo" minOccurs="0"/> + <xsd:element ref="PersonReferenz"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="TechnischeAnsichtResponse"> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="TechnischeAnsichtAnfrage"/> + <xsd:element ref="base:Message"/> + <xsd:element ref="TechnischeAnsichtErgebnisPerson"/> + <xsd:element ref="TechnischeAnsichtErgebnisMeldung"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="TechnischeAnsichtAnfrage"> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="TechnischeAnsichtInfo" minOccurs="0"/> + <xsd:element ref="PersonReferenz"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="TechnischeAnsichtInfo" type="TechnischeAnsichtInfoType"/> + <xsd:complexType name="TechnischeAnsichtInfoType"> + <xsd:annotation> + <xsd:documentation>allgemeine Fachliche Informationen für die Abfrage zur technischen Ansicht</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + </xsd:sequence> + </xsd:complexType> + + <xsd:element name="TechnischeAnsichtErgebnisPerson"> + <xsd:complexType> + <xsd:annotation> + <xsd:documentation>Enthält alle Personenzustände (für eine Person) zu einem bestimmten techn. Änderungszeitpunkt.</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element ref="TechnischeAnsichtPerson" maxOccurs="unbounded"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="TechnischeAnsichtErgebnisMeldung"> + <xsd:complexType> + <xsd:annotation> + <xsd:documentation>Enthält alle Meldungszustände (für eine Meldung) zu einem bestimmten techn. Änderungszeitpunkt.</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element ref="TechnischeAnsichtMeldung" minOccurs="0" maxOccurs="unbounded"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="TechnischeAnsichtPerson"> + <xsd:complexType> + <xsd:annotation> + <xsd:documentation>Liste der technischen Zustände einer Person zu einem Zeitpunkt.</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element name="TechnischerZeitpunkt" type="base:TimestampType"/> + <xsd:element ref="PersonErgebnisTechnisch" maxOccurs="unbounded"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="TechnischeAnsichtMeldung"> + <xsd:complexType> + <xsd:annotation> + <xsd:documentation>Liste der technischen Zustände einer Meldung</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element name="TechnischerZeitpunkt" type="base:TimestampType"/> + <xsd:element ref="MeldungErgebnisTechnisch" maxOccurs="unbounded"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="PersonErgebnisTechnisch"> + <xsd:complexType> + <xsd:annotation> + <xsd:documentation>komplette Personendaten mit Information für den technischen Stichzeitpunkt</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element ref="PersonErgebnis"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="MeldungErgebnisTechnisch"> + <xsd:complexType> + <xsd:annotation> + <xsd:documentation>komplette Meldung mit Information für den technischen Stichzeitpunkt</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element ref="MeldungErgebnis"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + +</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Ummeldeserviceabfrage.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Ummeldeserviceabfrage.xsd new file mode 100644 index 00000000..8f459931 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Ummeldeserviceabfrage.xsd @@ -0,0 +1,79 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Name: Ummeldeserviceabfrage.xsd +Zweck: Definiert Datentypen für die Abfrage für Ummeldeservices im ZMR +Author(s): Ehrenmüller Oliver, ZMR-SU + +Aenderungshistorie: +2009-05-07 teo: Erstellung +--> + +<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" + targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" + elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + + <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/> + <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/> + + + <xsd:element name="UmmSrvAbfrageRequest"> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="UmmSrvAbfrageInfo"/> + <xsd:element ref="cio:NatuerlichePerson"/> + <xsd:element ref="cio:PostAdresse" minOccurs="0"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="UmmSrvAbfrageResponse"> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="UmmSrvAbfrageAnfrage"/> + <xsd:element ref="base:Message"/> + <xsd:element ref="UmmSrvAbfrageErgebnis" minOccurs="0"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="UmmSrvAbfrageAnfrage"> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="UmmSrvAbfrageInfo"/> + <xsd:element ref="cio:NatuerlichePerson"/> + <xsd:element ref="cio:PostAdresse" minOccurs="0"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + + <xsd:element name="UmmSrvAbfrageInfo" type="UmmSrvAbfrageInfoType"/> + <xsd:complexType name="UmmSrvAbfrageInfoType"> + <xsd:annotation> + <xsd:documentation>allgemeine Fachliche Informationen für die BP-Abfrage</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element name="Pin"> + <xsd:simpleType> + <xsd:restriction base="xsd:string"> + <xsd:minLength value="6"/> + <xsd:maxLength value="6"/> + </xsd:restriction> + </xsd:simpleType> + </xsd:element> + </xsd:sequence> + </xsd:complexType> + + + <xsd:element name="UmmSrvAbfrageErgebnis"> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="cio:NatuerlichePerson" minOccurs="0"/> + <xsd:element ref="cio:PostAdresse" minOccurs="0" maxOccurs="unbounded"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> +</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/WehrpflichtigeAbfragen.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/WehrpflichtigeAbfragen.xsd new file mode 100644 index 00000000..9a5e6e1a --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/WehrpflichtigeAbfragen.xsd @@ -0,0 +1,99 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: WehrpflichtigeAbfragen.xsd
+Zweck: Definiert Datentypen für die Wehrpflichtigenabfrage im ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2004-09-28 tsch: Erstellung
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+ <xsd:include schemaLocation="Personenabfrage.xsd"/>
+
+ <xsd:element name="WehrpflichtigeAbfragenRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="WehrpflichtigeAbfragenInfo"/>
+ <xsd:element ref="cio:Bundesland"/>
+ <xsd:element name="GeburtsdatumVon" type="base:TimestampType"/>
+ <xsd:element name="GeburtsdatumBis" type="base:TimestampType"/>
+ <xsd:element ref="cio:Familienname"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="WehrpflichtigeAbfragenResponse">
+ <xsd:annotation>
+ <xsd:documentation>
+ Es wir entweder das Feld PDFDaten (Anforderung als Druck) mit allen gefundenen Datensätzen,
+ oder WehrpflichtigeAbfragenErgebnis mit der aktuell geblätterten Seite geliefert.
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="WehrpflichtigeAbfragenAnfrage"/>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="WehrpflichtigeAbfragenErgebnis" minOccurs="0"/>
+ <xsd:element name="PDFDaten" type="xsd:base64Binary" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="WehrpflichtigeAbfragenAnfrage">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="WehrpflichtigeAbfragenInfo"/>
+ <xsd:element ref="cio:Bundesland"/>
+ <xsd:element name="GeburtsdatumVon" type="base:TimestampType"/>
+ <xsd:element name="GeburtsdatumBis" type="base:TimestampType"/>
+ <xsd:element ref="cio:Familienname"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="WehrpflichtigeAbfragenInfo" type="WehrpflichtigeAbfragenInfoType"/>
+ <xsd:complexType name="WehrpflichtigeAbfragenInfoType">
+ <xsd:annotation>
+ <xsd:documentation>allgemeine Fachliche Informationen für die Wehrpflichtigenabfrage</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element name="AlsDruck" type="xsd:boolean"/>
+ <xsd:element ref="base:AnzahlSaetze" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="WehrpflichtigeAbfragenErgebnis" type="WehrpflichtigeAbfragenErgebnisType"/>
+ <xsd:complexType name="WehrpflichtigeAbfragenErgebnisType">
+ <xsd:annotation>
+ <xsd:documentation>Enthält je einen 'PersonErgebnisSatz' pro gefundener Person. Wird keine Person gefunden, befindet sich eine entprechende Text-Message in 'base:Message'</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:GefundeneSaetze">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtanzahl der in der Datenbank gefundenen Personen</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="base:SaetzeVon">
+ <xsd:annotation>
+ <xsd:documentation>Beginn-Index dieser Ergebnisliste im Gesamtergebnis (bei Blaettern); Start mit 0</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="base:SaetzeBis">
+ <xsd:annotation>
+ <xsd:documentation>Ende-Index dieser Ergebnisliste im Gesamtergebnis (bei Blaettern)</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element name="PersonErgebnisSatz" type="PAbfrageErgebnisSatzType" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/WohnsitzAbmelden.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/WohnsitzAbmelden.xsd new file mode 100644 index 00000000..5d3b7cc2 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/WohnsitzAbmelden.xsd @@ -0,0 +1,68 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: WohnsitzAbmelden.xsd
+Zweck: Definiert Datentypen für den Usecase "Wohnsitz abmelden" im ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2004-06-24 tsch: WohnsitzAbmeldenMsg entfernt
+2004-01-28 tsch: Gesamtdatensatz der neuen Meldung in der Response-Message
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:include schemaLocation="../zmr/entities/Person.xsd"/>
+ <xsd:include schemaLocation="../zmr/entities/Meldung.xsd"/>
+ <xsd:include schemaLocation="../zmr/entities/Behoerdenattribute.xsd"/>
+
+ <xsd:element name="WohnsitzAbmeldenRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="WohnsitzAbmeldenInfo"/>
+ <xsd:element ref="PersonReferenz"/>
+ <xsd:element ref="MeldungReferenz"/>
+ <xsd:element name="BehoerdenattributeSetzen" type="BehoerdenattributeSetzenType" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="WohnsitzAbmeldenResponse">
+ <xsd:complexType>
+ <xsd:annotation>
+ <xsd:documentation>Server-Antwort zur Wohnsitzabmeldung</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:sequence minOccurs="0">
+ <xsd:element ref="PersonReferenz"/>
+ <xsd:element ref="MeldungErgebnis">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtdatensatz der abgemeldeten Meldung (mit EntityIDs der Meldung und deren abhängigen Entities)</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ </xsd:sequence>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="WohnsitzAbmeldenInfo" type="WohnsitzAbmeldenInfoType"/>
+ <xsd:complexType name="WohnsitzAbmeldenInfoType">
+ <xsd:annotation>
+ <xsd:documentation>Fachliche Informationen zur Wohnsitzabmeldung</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexContent>
+ <xsd:extension base="base:InfoFachlichType">
+ <xsd:sequence>
+ <xsd:element ref="base:StaatVerzogen" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:extension>
+ </xsd:complexContent>
+ </xsd:complexType>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/WohnsitzAnmelden.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/WohnsitzAnmelden.xsd new file mode 100644 index 00000000..75670c47 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/WohnsitzAnmelden.xsd @@ -0,0 +1,68 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: WohnsitzAnmelden.xsd
+Zweck: Definiert Datentypen für den Usecase "Wohnsitz anmelden" im ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2004-06-24 tsch: WohnsitzAnmeldenMsg entfernt
+2004-01-28 tsch: Gesamtdatensatz der abgemeldeten Meldung in der Response-Message
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:include schemaLocation="../zmr/entities/Person.xsd"/>
+ <xsd:include schemaLocation="../zmr/entities/Meldung.xsd"/>
+
+ <xsd:element name="WohnsitzAnmeldenRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="WohnsitzAnmeldenInfo"/>
+ <xsd:element ref="PersonReferenz"/>
+ <xsd:element ref="MeldungAnlage"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="WohnsitzAnmeldenResponse">
+ <xsd:complexType>
+ <xsd:annotation>
+ <xsd:documentation>Server-Antwort zur Wohnsitzanmeldung</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:sequence minOccurs="0">
+ <xsd:element ref="PersonReferenz"/>
+ <xsd:element ref="MeldungErgebnis">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtdatensatz der angelegten Meldung (mit EntityIDs der Meldung und deren abhängigen Entities)</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ </xsd:sequence>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="WohnsitzAnmeldenInfo" type="WohnsitzAnmeldenInfoType"/>
+
+ <xsd:complexType name="WohnsitzAnmeldenInfoType">
+ <xsd:annotation>
+ <xsd:documentation>allgemeine Fachliche Informationen zur Wohnsitzanmeldung</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexContent>
+ <xsd:extension base="base:InfoFachlichType">
+ <xsd:sequence>
+ <xsd:element ref="base:StaatZugezogen" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:extension>
+ </xsd:complexContent>
+ </xsd:complexType>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/WohnsitzKorrigieren.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/WohnsitzKorrigieren.xsd new file mode 100644 index 00000000..90153232 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/WohnsitzKorrigieren.xsd @@ -0,0 +1,73 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: WohnsitzKorrigieren.xsd
+Zweck: Definiert Datentypen für den Usecase "Wohnsitz korrigieren" im ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2004-09-27 tsch: Erstellt
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+ <xsd:include schemaLocation="../zmr/entities/Person.xsd"/>
+ <xsd:include schemaLocation="../zmr/entities/Meldung.xsd"/>
+ <xsd:include schemaLocation="../zmr/entities/Behoerdenattribute.xsd"/>
+ <xsd:include schemaLocation="../zmr/entities/Auskunftssperre.xsd"/>
+
+ <xsd:element name="WohnsitzKorrigierenRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="WohnsitzKorrigierenInfo"/>
+ <xsd:element ref="PersonReferenz"/>
+ <xsd:element ref="MeldungReferenz"/>
+ <xsd:element name="BehoerdenattributeSetzen" type="BehoerdenattributeSetzenType" minOccurs="0"/>
+ <xsd:element ref="AuskunftssperreAenderung" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element ref="AuskunftssperreAnlage" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="WohnsitzKorrigierenResponse">
+ <xsd:complexType>
+ <xsd:annotation>
+ <xsd:documentation>Server-Antwort zur Wohnsitzkorrektur</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:sequence minOccurs="0">
+ <xsd:element ref="PersonReferenz"/>
+ <xsd:element ref="MeldungErgebnis">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtdatensatz der korrigierten Meldung (mit EntityIDs der Meldung und deren abhängigen Entities)</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ </xsd:sequence>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="WohnsitzKorrigierenInfo" type="WohnsitzKorrigierenInfoType"/>
+ <xsd:complexType name="WohnsitzKorrigierenInfoType">
+ <xsd:annotation>
+ <xsd:documentation>Fachliche Informationen zur Wohnsitzkorrektur</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexContent>
+ <xsd:extension base="base:InfoFachlichType">
+ <xsd:sequence>
+ <xsd:element ref="base:Unterkunftgeber" minOccurs="0"/>
+ <xsd:element ref="cio:Abgabestelle" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:extension>
+ </xsd:complexContent>
+ </xsd:complexType>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/WohnsitzUmmelden.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/WohnsitzUmmelden.xsd new file mode 100644 index 00000000..48128ade --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/WohnsitzUmmelden.xsd @@ -0,0 +1,126 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: WohnsitzUmmelden.xsd
+Zweck: Definiert Datentypen für den Usecase "Wohnsitz ummelden" im ZMR (siehe Messages.xsd)
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2009-12-10 mp: Änderungsmöglichkeit d. Unterkunftgebers bei Ummeldung
+2009-08-06 teo: Auskunftssperre auf Meldung
+2004-07-06 tsch: WohnsitzUmmeldenInfo.Von optional
+2004-06-24 tsch: WohnsitzUmmeldenMsg entfernt
+2004-01-28 tsch: Gesamtdatensaetze der involvierten Meldungen in der Response-Message
+2004-01-25 tsch: BehoerdenattributeAendern wird BehoerdenattributeSetzen
+-->
+
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:include schemaLocation="../zmr/entities/Person.xsd"/>
+ <xsd:include schemaLocation="../zmr/entities/Meldung.xsd"/>
+ <xsd:include schemaLocation="../zmr/entities/Behoerdenattribute.xsd"/>
+ <xsd:include schemaLocation="../zmr/entities/Auskunftssperre.xsd"/>
+
+ <xsd:element name="WohnsitzUmmeldenRequest">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="WohnsitzUmmeldenInfo"/>
+ <xsd:element ref="PersonReferenz"/>
+ <xsd:element name="UMMVorgang1">
+ <xsd:annotation>
+ <xsd:documentation>Referenz auf die erste in den Ummeldevorgang involvierte Meldung (wird entweder umgemeldet, oder abgemeldet), sowie deren evtl. geänderten Behördenattribute</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="MeldungReferenz"/>
+ <xsd:element name="BehoerdenattributeSetzen" type="BehoerdenattributeSetzenType" minOccurs="0"/>
+ <xsd:element ref="AuskunftssperreAenderung" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element ref="AuskunftssperreAnlage" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element ref="base:Unterkunftgeber" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element name="UMMVorgang2" minOccurs="0">
+ <xsd:annotation>
+ <xsd:documentation>Zweite in den Ummeldevorgang involvierte Meldung (wird entweder umgemeldet, oder angemeldet - entsprechend entweder Referenz oder MeldungAnlage), sowie deren Behördenattribute (bei Ummeldung)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:choice>
+ <xsd:element ref="MeldungAnlage"/>
+ <xsd:sequence>
+ <xsd:element ref="MeldungReferenz"/>
+ <xsd:element name="BehoerdenattributeSetzen" type="BehoerdenattributeSetzenType" minOccurs="0"/>
+ <xsd:element ref="AuskunftssperreAenderung" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element ref="AuskunftssperreAnlage" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element ref="base:Unterkunftgeber" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:choice>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="WohnsitzUmmeldenResponse">
+ <xsd:annotation>
+ <xsd:documentation>Server-Antwort zur Wohnsitzummeldung</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:sequence minOccurs="0">
+ <xsd:element ref="PersonReferenz"/>
+ <xsd:element name="UMMErgebnis1" type="MeldungErgebnisType">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtdatensatz der umgemeldeten Meldung (mit EntityIDs der Meldung und deren abhängigen Entities)</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element name="UMMErgebnis2" type="MeldungErgebnisType" minOccurs="0">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtdatensatz der umgemeldeten oder neuen Meldung (mit EntityIDs der Meldung und deren abhängigen Entities)</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ </xsd:sequence>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="WohnsitzUmmeldenInfo" type="WohnsitzUmmeldenInfoType"/>
+ <xsd:complexType name="WohnsitzUmmeldenInfoType">
+ <xsd:annotation>
+ <xsd:documentation>Fachliche Informationen zur Wohnsitzummeldung</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:Von" minOccurs="0"/>
+ <xsd:element ref="base:GrundFreitext" minOccurs="0"/>
+ <xsd:element ref="UmmeldungAktion"/>
+ <xsd:choice>
+ <xsd:element ref="base:StaatZugezogen" minOccurs="0"/>
+ <xsd:element ref="base:StaatVerzogen" minOccurs="0"/>
+ </xsd:choice>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="UmmeldungAktion">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="HWS_NWS_HWS"/>
+ <xsd:enumeration value="HWS_NWS"/>
+ <xsd:enumeration value="HWS_ABM_HWS"/>
+ <xsd:enumeration value="NWS_HWS"/>
+ <xsd:enumeration value="HWS_ABM_NWS_HWS"/>
+ <xsd:enumeration value="HWS_NWS_NWS_HWS"/>
+ <xsd:enumeration value="NWS_ABM_NWS"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/ZMRDatenauszug.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/ZMRDatenauszug.xsd new file mode 100644 index 00000000..cdab5654 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/ZMRDatenauszug.xsd @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Name: ZMRDatenauszug.xsd +Zweck: Definiert Datentypen für den Datenabgleich externer Partner mit dem ZMR. + Die Partner übermitteln eine csv-Datei mit Suchbegriffen, diese xsd definiert die Struktur des Antwort-XML. +Author(s): Richard Mayrhofer + +--> + +<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" + xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" + elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + + <xsd:include schemaLocation="../zmr/Personensuche.xsd"/> + <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/> + <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/> + + <xsd:element name="ZMRDatenauszug"> + <xsd:complexType> + <xsd:sequence> + <xsd:element ref="cio:Identification" minOccurs="0" maxOccurs="unbounded"/> + <xsd:element ref="Personendaten" minOccurs="1"/> + <xsd:element ref="Meldedaten" minOccurs="0" maxOccurs="unbounded"/> + </xsd:sequence> + </xsd:complexType> + </xsd:element> + +</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/ZMRProxy.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/ZMRProxy.xsd new file mode 100644 index 00000000..bb0583ef --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/ZMRProxy.xsd @@ -0,0 +1,96 @@ +<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Name: ZMRProxy.xsd
+Zweck: Fasst alle ZMR-Vorgangs XSD-Files zusammen
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2011-09-05 teo: Änderungsdienst ZWR (PN126)
+2010-03-08 teo: Historische Meldungskorrektur
+2010-02-01 teo: MeldebestätigungenAnforderung hinzugefügt
+2009-08-24 mp: TechnischeAnsicht hinzugefügt
+2009-08-06 teo: Auskunftssperre ändern hinzugefügt
+2009-05-07 teo: Ummeldeserviceabfrage hinzugefügt
+2009-01-23 teo: GISSuche hinzugefügt
+2006-11-06 tsch: ORFGISAnforderung hinzugefügt
+2006-03-21 tsch: SZRSammelabfrage hinzugefügt
+2005-01-14 tsch: Aviso aktivieren entfernt, Gleichstzungtabelle Warten hinzugefügt
+2004-11-22 tsch: Gerichtskommissaerabfrage hinzugefügt
+2004-09-28 tsch: Wehrfplichtigenanfrage, ablaufende Auskunfssperren-Suche hinzugefügt
+2004-09-27 tsch: Storno/Korrektur hinzugefügt
+2004-09-09 tsch: SZR-Vorgänge sowie Person trennen/zusammenführen hinzugefügt
+2004-08-24 tsch: GISAdressabfrage hinzugefügt
+2004-08-17 tsch: Erstellung
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:include schemaLocation="../zmr/Personensuche.xsd"/>
+ <xsd:include schemaLocation="../zmr/PersonAnlegen.xsd"/>
+ <xsd:include schemaLocation="../zmr/PersonAendern.xsd"/>
+ <xsd:include schemaLocation="../zmr/WohnsitzAnmelden.xsd"/>
+ <xsd:include schemaLocation="../zmr/WohnsitzAbmelden.xsd"/>
+ <xsd:include schemaLocation="../zmr/WohnsitzUmmelden.xsd"/>
+ <xsd:include schemaLocation="../zmr/Adresssuche.xsd"/>
+ <xsd:include schemaLocation="../zmr/Meldeauskunft.xsd"/>
+ <xsd:include schemaLocation="../zmr/BKMeldeauskunft.xsd"/>
+ <xsd:include schemaLocation="../zmr/Meldebestaetigung.xsd"/>
+ <xsd:include schemaLocation="../zmr/Avisosuche.xsd"/>
+ <xsd:include schemaLocation="../zmr/AvisoAnlegen.xsd"/>
+ <xsd:include schemaLocation="../zmr/AvisoAendern.xsd"/>
+ <xsd:include schemaLocation="../zmr/AvisoFreigeben.xsd"/>
+ <xsd:include schemaLocation="../zmr/Datenabgleich.xsd"/>
+ <xsd:include schemaLocation="../zmr/Behoerdenabfrage.xsd"/>
+ <xsd:include schemaLocation="../zmr/Businesspartnerabfrage.xsd"/>
+ <xsd:include schemaLocation="../zmr/BusinesspartnerabfrageErweitert.xsd"/>
+ <xsd:include schemaLocation="../zmr/BusinesspartnerAnfrage.xsd"/>
+ <xsd:include schemaLocation="../zmr/Bestandsaenderungen.xsd"/>
+ <xsd:include schemaLocation="../zmr/Fremdenabfrage.xsd"/>
+ <xsd:include schemaLocation="../zmr/Hauseigentuemerabfrage.xsd"/>
+ <xsd:include schemaLocation="../zmr/IAPPersonenabfrage.xsd"/>
+ <xsd:include schemaLocation="../zmr/Personenabfrage.xsd"/>
+ <xsd:include schemaLocation="../zmr/Zuzugsbestaetigung.xsd"/>
+ <xsd:include schemaLocation="../zmr/GISAdressabfrage.xsd"/>
+ <xsd:include schemaLocation="../zmr/PersonZusammenfuehren.xsd"/>
+ <xsd:include schemaLocation="../zmr/PersonTrennen.xsd"/>
+ <xsd:include schemaLocation="../zmr/SZREinzelabfrage.xsd"/>
+ <xsd:include schemaLocation="../zmr/SZRPersonenbindung.xsd"/>
+ <xsd:include schemaLocation="../zmr/SzrAbfrage.xsd"/>
+ <xsd:include schemaLocation="../zmr/SZRPersonensuche.xsd"/>
+ <xsd:include schemaLocation="../zmr/SZRSammelabfrage.xsd"/>
+ <xsd:include schemaLocation="../zmr/BehoerdenattributeAendern.xsd"/>
+ <xsd:include schemaLocation="../zmr/Storno.xsd"/>
+ <xsd:include schemaLocation="../zmr/PersonKorrigieren.xsd"/>
+ <xsd:include schemaLocation="../zmr/WohnsitzKorrigieren.xsd"/>
+ <xsd:include schemaLocation="../zmr/WehrpflichtigeAbfragen.xsd"/>
+ <xsd:include schemaLocation="../zmr/AblaufendeAuskunftssperrenSuche.xsd"/>
+ <xsd:include schemaLocation="../zmr/Gerichtskommissaerabfrage.xsd"/>
+ <xsd:include schemaLocation="../zmr/ObjektsucheSteuerfahndung.xsd"/>
+ <xsd:include schemaLocation="../zmr/Adoption.xsd"/>
+ <xsd:include schemaLocation="../zmr/GleichsetzungstabelleWarten.xsd"/>
+ <xsd:include schemaLocation="../zmr/QKZBearbeiten.xsd"/>
+ <xsd:include schemaLocation="../zmr/QKZAuswertung.xsd"/>
+ <xsd:include schemaLocation="../zmr/BPKPruefung.xsd"/>
+ <xsd:include schemaLocation="../zmr/ORFGISAnforderung.xsd"/>
+ <xsd:include schemaLocation="../zmr/Anwendungsintegration.xsd"/>
+ <xsd:include schemaLocation="../zmr/AnwendungsintegrationWiederholung.xsd"/>
+ <xsd:include schemaLocation="../zmr/Personenlisten.xsd"/>
+ <xsd:include schemaLocation="../zmr/GISSuche.xsd"/>
+ <xsd:include schemaLocation="../zmr/Ummeldeserviceabfrage.xsd"/>
+ <xsd:include schemaLocation="../zmr/AuskunftssperreAendern.xsd"/>
+ <xsd:include schemaLocation="../zmr/TechnischeAnsicht.xsd"/>
+ <xsd:include schemaLocation="../zmr/MeldebestaetigungenAnfordern.xsd"/>
+ <xsd:include schemaLocation="../zmr/MeldungHistKorrigieren.xsd"/>
+ <xsd:include schemaLocation="../zmr/ObjektsucheMindestsicherung.xsd"/>
+ <xsd:include schemaLocation="../zmr/PersonenIndex.xsd"/>
+ <xsd:include schemaLocation="../zmr/PersonExport.xsd"/>
+ <xsd:include schemaLocation="../zmr/ErnpAbfrage.xsd"/>
+ <xsd:include schemaLocation="../zmr/ZMRDatenauszug.xsd"/>
+ <xsd:include schemaLocation="../zmr/ZmrBuergerService.xsd"/>
+ <xsd:include schemaLocation="../zmr/Gemeindeeinstellungen.xsd"/>
+ <xsd:include schemaLocation="../zmr/Sperrliste.xsd"/>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/ZmrBuergerService.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/ZmrBuergerService.xsd new file mode 100644 index 00000000..9732778d --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/ZmrBuergerService.xsd @@ -0,0 +1,373 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: ZmrBuergerService.xsd
+Zweck: Definiert Requests/Responses und Datentypen für die Usecases des ZMR-Buergerservice mit Buergerkarte.
+Author(s): Richie Mayrhofer, ZMR
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:include schemaLocation="../zmr/entities/Meldung.xsd"/>
+ <xsd:include schemaLocation="../zmr/entities/Person.xsd"/>
+ <xsd:include schemaLocation="../zmr/WohnsitzUmmelden.xsd"/>
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+
+ <xsd:element name="BuergerPersonensucheRequest">
+ <xsd:annotation>
+ <xsd:documentation>Suchkriterien für die Personensuche im ZMR</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="TrackingInfo" minOccurs="0"/>
+ <xsd:element ref="cio:Familienname" minOccurs="1"/>
+ <xsd:element ref="cio:Vorname" minOccurs="1"/>
+ <xsd:element ref="cio:Geburtsdatum" minOccurs="1"/>
+ <xsd:element ref="bpkZP" minOccurs="1"/>
+ <xsd:element ref="base:Stichtag" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BuergerPersonensucheResponse">
+ <xsd:annotation>
+ <xsd:documentation>Response der Personensuche im ZMR. Geliefert werden die ID-Daten sowie alle Staatsangehoerigkeiten</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="PersonendatenBuerger" minOccurs="0" maxOccurs="1"/>
+ <xsd:element ref="MeldedatenBuerger" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BuergerMitbewohnersucheRequest">
+ <xsd:annotation>
+ <xsd:documentation>Suchkriterien für die Mitbewohnersuche im ZMR</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="TrackingInfo" minOccurs="0"/>
+ <xsd:element ref="bpkZP"/>
+ <xsd:element ref="EntityIdPerson"/>
+ <xsd:element ref="EntityIdMeldung"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BuergerMitbewohnersucheResponse">
+ <xsd:annotation>
+ <xsd:documentation>Response der Mitbewohnersuche im ZMR. Geliefert wird die angefragte Adresse sowie die ID-Daten aller Personen an der Adresse</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="Suchperson" minOccurs="1" maxOccurs="1"/>
+ <xsd:element ref="MinderjaehrigePerson" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BuergerWohnsitzAnmeldenRequest">
+ <xsd:annotation>
+ <xsd:documentation>Suchkriterien für die Wohnsitzanmeldung im ZMR. bPK/ZP der </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="TrackingInfo" minOccurs="0"/>
+ <xsd:element name="Signatur" type="xsd:base64Binary"/>
+ <xsd:element ref="bpkZP"/>
+ <xsd:element ref="cio:Wohnsitzqualitaet"/>
+ <xsd:element ref="Adressinfo"/>
+ <xsd:element ref="AnmeldedatenPerson" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BuergerWohnsitzAbmeldenRequest">
+ <xsd:annotation>
+ <xsd:documentation>Suchkriterien für die Wohnsitzanmeldung im ZMR</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="TrackingInfo" minOccurs="0"/>
+ <xsd:element name="Signatur" type="xsd:base64Binary"/>
+ <xsd:element ref="bpkZP"/>
+ <xsd:element ref="Abmeldedaten" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BuergerWohnsitzUmmeldenRequest">
+ <xsd:annotation>
+ <xsd:documentation>Suchkriterien für die Wohnsitzanmeldung im ZMR</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="TrackingInfo" minOccurs="0"/>
+ <xsd:element name="Signatur" type="xsd:base64Binary"/>
+ <xsd:element ref="bpkZP"/>
+ <xsd:element ref="UmmeldungAktion" />
+ <!-- neue Adresse, leer UmmeldeAktion wenn nicht HWS_ABM_NWS_HWS oder HWS_NWS_NWS_HWS -->
+ <xsd:element ref="AnmeldeAdresse" minOccurs="0" maxOccurs="1"/>
+ <xsd:element ref="Ummeldedaten" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="TrackingInfo">
+ <xsd:annotation>
+ <xsd:documentation>Transaction- und UUID des Service Clients</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element name="TransactionId" type="xsd:string"/>
+ <xsd:element name="UUID" type="xsd:string"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AnmeldeAdresse">
+ <xsd:annotation>
+ <xsd:documentation>neue Meldung bei HWS_ABM_NWS_HWS und HWS_NWS_NWS_HWS</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="Adressinfo"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="BuergerWohnsitzserviceResponse">
+ <xsd:annotation>
+ <xsd:documentation>Response der Wohnsitzabmeldung im ZMR. Geliefert wird der MessageCode, die Anzahl der an/ab/umgemeldeten Personen und die Meldebestaetigungen</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="base:AnzahlSaetze"/>
+ <xsd:element name="PDF" type="xsd:base64Binary" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="bpkZP" type="xsd:string"/>
+ <xsd:element name="EntityIdPerson" type="xsd:long"/>
+ <xsd:element name="EntityIdMeldung" type="xsd:long"/>
+
+ <xsd:element name="PersonendatenBuerger">
+ <xsd:annotation>
+ <xsd:documentation>aktuelle Personendaten</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="EntityIdPerson"/>
+ <xsd:element ref="base:LetzteAenderung"/>
+ <xsd:element ref="cio:Familienname"/>
+ <xsd:element ref="cio:Vorname"/>
+ <xsd:element ref="cio:Geburtsdatum"/>
+ <xsd:element ref="cio:Geburtsort"/>
+ <xsd:element ref="cio:Geschlecht"/>
+ <xsd:element ref="Staatsangehoerigkeit" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element ref="bpkZP" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="Staatsangehoerigkeit">
+ <xsd:annotation>
+ <xsd:documentation>Staatsangehoerigkeiten der Person, mindestens eine (ISO-Code3 + Name)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="cio:Staatscode"/>
+ <xsd:element ref="cio:Staatsname"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="MeldedatenBuerger">
+ <xsd:annotation>
+ <xsd:documentation>aktuelle Meldungen zur Person</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="MeldungKurzinfo"/>
+ <xsd:element ref="Adressinfo"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="MeldungKurzinfo">
+ <xsd:annotation>
+ <xsd:documentation>aktuelle Meldungen zur Person</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="EntityIdMeldung"/>
+ <xsd:element ref="base:LetzteAenderung"/>
+ <xsd:element ref="cio:Wohnsitzqualitaet"/>
+ <xsd:element ref="base:GemeldetVon"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="Adressinfo">
+ <xsd:annotation>
+ <xsd:documentation>Adresse</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="cio:Postleitzahl"/>
+ <xsd:element ref="cio:Gemeinde"/>
+ <xsd:element ref="cio:Gemeindekennziffer"/>
+ <xsd:element ref="cio:Ortschaft" minOccurs="0"/>
+ <xsd:element ref="cio:Strassenname"/>
+ <xsd:element name="Hausnummer" type="xsd:string" minOccurs="0"/>
+ <xsd:element name="Stiege" type="xsd:string" minOccurs="0"/>
+ <xsd:element name="Tuer" type="xsd:string" minOccurs="0"/>
+ <xsd:element ref="AdressRegisterEintrag" minOccurs="0"/>
+ <xsd:element ref="cio:Nutzungseinheitlaufnummer" minOccurs="0"/>
+ <xsd:element ref="base:Unterkunftgeber" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="Suchperson">
+ <xsd:annotation>
+ <xsd:documentation>Personen- und Meldedaten der abfragenden Person</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="PersonendatenBuerger"/>
+ <xsd:element ref="MeldedatenBuerger"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="MinderjaehrigePerson">
+ <xsd:annotation>
+ <xsd:documentation>Personen- und Meldedaten der minderjaehrigen Kinder</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="PersonendatenBuerger"/>
+ <xsd:element ref="MeldungKurzinfo"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="Abmeldedaten">
+ <xsd:annotation>
+ <xsd:documentation>Personen- und Meldedaten fuer eine abzumeldende Person </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <!-- Id der abzumeldenden Meldung -->
+ <xsd:element ref="Wohnsitz"/>
+ <!-- Id der abzumeldenden Person -->
+ <xsd:element ref="EntityIdPerson"/>
+ <!-- Timestamp letzte Aenderung Person -->
+ <xsd:element ref="base:LetzteAenderung"/>
+ <xsd:element ref="VerzugsstaatIso3" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="Ummeldedaten">
+ <xsd:annotation>
+ <xsd:documentation>Personen- und Meldedaten fuer eine umzumeldende Person </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <!-- Id der umzumeldenden Person -->
+ <xsd:element ref="UmmeldedatenPerson"/>
+ <!-- Zuzugs- oder Verzugsstaat -->
+ <xsd:choice>
+ <xsd:element ref="ZuzugsstaatIso3" minOccurs="0"/>
+ <xsd:element ref="VerzugsstaatIso3" minOccurs="0"/>
+ </xsd:choice>
+ <!-- alte/bisherige Meldung -->
+ <xsd:element ref="Abmeldung" minOccurs="1"/>
+ <!-- neue/Ziel-Meldung bei Wechsel der WohnsitzQualitaet -->
+ <xsd:element ref="Anmeldung" minOccurs="0" maxOccurs="1"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="Abmeldung">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="Wohnsitz"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="Anmeldung">
+ <xsd:annotation>
+ <xsd:documentation>neue Meldung bei HWS_ABM_NWS_HWS und HWS_NWS_NWS_HWS</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="Wohnsitz"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="Wohnsitz">
+ <xsd:annotation>
+ <xsd:documentation>Id der zu aendernden Meldung sowie Datum der letzten Aenderung </xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="EntityIdMeldung"/>
+ <xsd:element ref="base:LetzteAenderung"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="ZuzugsstaatIso3" type="StaatscodeType"/>
+ <xsd:element name="VerzugsstaatIso3" type="StaatscodeType"/>
+
+ <xsd:simpleType name="StaatscodeType">
+ <xsd:restriction base="xsd:string">
+ <xsd:pattern value="[A-Z]{3}"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+
+ <xsd:element name="AnmeldedatenPerson">
+ <xsd:annotation>
+ <xsd:documentation>Zuzugsstaat und Ummeldedaten</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="ZuzugsstaatIso3" minOccurs="0" />
+ <xsd:element ref="UmmeldedatenPerson"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+
+ <xsd:element name="UmmeldedatenPerson">
+ <xsd:annotation>
+ <xsd:documentation>Id der Person und Religionsbekenntnis</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="EntityIdPerson"/>
+ <xsd:element name="Religionsbekenntnis" type="xsd:string"/>
+ <xsd:element ref="base:LetzteAenderung"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Zuzugsbestaetigung.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Zuzugsbestaetigung.xsd new file mode 100644 index 00000000..d557ae50 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/Zuzugsbestaetigung.xsd @@ -0,0 +1,105 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Zuzugsbestaetigung.xsd
+Zweck: Definiert Datentypen für die Zuzugsbetätigungen aus dem ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2011-09-13 teo: ZMR-1656 Zuzugsbestätigung aufgrund Wahlrechtsänderung anpassen
+2004-08-20 tsch: Kapselung der Zuzugssätze im Element Zuzugsbestaetigung
+2004-08-17 tsch: Erstellung
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../eingebunden/PersonDataZMR.xsd"/>
+
+ <xsd:element name="ZuzugsbestaetigungRequest">
+ <xsd:annotation>
+ <xsd:documentation>Anfragedaten der Zuzugsbestaetigung</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="ZuzugsbestaetigungInfo"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="ZuzugsbestaetigungResponse">
+ <xsd:annotation>
+ <xsd:documentation>In der Response werden die Anfragedaten aus dem Request und das Abgleichergebnis geliefert.</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="ZuzugsbestaetigungAnfrage"/>
+ <xsd:element ref="base:Message"/>
+ <xsd:element ref="Zuzugsbestaetigung" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="ZuzugsbestaetigungInfo" type="ZuzugsbestaetigungInfoType"/>
+
+ <xsd:complexType name="ZuzugsbestaetigungInfoType">
+ <xsd:sequence>
+ <xsd:element ref="base:GemeindeNr"/>
+ <xsd:element name="ZuzugsbestaetigungVon" type="base:TimestampType"/>
+ <xsd:element name="ZuzugsbestaetigungBis" type="base:TimestampType"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="ZuzugsbestaetigungAnfrage">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="ZuzugsbestaetigungInfo"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="Zuzugsbestaetigung" type="ZuzugsbestaetigungType"/>
+
+ <xsd:complexType name="ZuzugsbestaetigungType">
+ <xsd:sequence>
+ <xsd:element ref="base:GefundeneSaetze">
+ <xsd:annotation>
+ <xsd:documentation>Gesamtanzahl der Zuzugs-Saetze für diese Anfrage</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="base:AnzahlSaetze">
+ <xsd:annotation>
+ <xsd:documentation>Anzahl der im File gelieferten Zuzugs-Saetze</xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="ZuzugsbestaetigungSatz" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="ZuzugsbestaetigungSatz" type="ZuzugsbestaetigungSatzType"/>
+ <xsd:complexType name="ZuzugsbestaetigungSatzType">
+ <xsd:sequence>
+ <xsd:element name="ZugezogenPerson" type="ZugezogenPersonType"/>
+ <xsd:element name="ZugezogenAm" type="base:TimestampType"/>
+ <xsd:element name="ZugezogenGemeindeNr" type="base:GemeindeNrType"/>
+ <xsd:element name="ZugezogenGemeinde" type="base:GemeindenameType"/>
+ <xsd:element name="HaftAnschrift" type="cio:PostAdresseTyp" minOccurs="0"/>
+ <xsd:element name="ZuLoeschenAm" type="base:TimestampType" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:complexType name="ZugezogenPersonType">
+ <xsd:sequence>
+ <xsd:element ref="base:ZMRZahl"/>
+ <xsd:element ref="cio:Familienname"/>
+ <xsd:element ref="cio:Vorname"/>
+ <xsd:element ref="cio:Geburtsdatum"/>
+ </xsd:sequence>
+ </xsd:complexType>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/AkademischerGrad.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/AkademischerGrad.xsd new file mode 100644 index 00000000..3ebf0c0a --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/AkademischerGrad.xsd @@ -0,0 +1,84 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- +Name: AkademischerGrad.xsd +Zweck: Definiert Datentypen für die akademischen Grade einer Person im ZMR +Author(s): Tschurtschenthaler Thomas, ZMR-SU + +Aenderungshistorie: +2005-03-01 tsch: Feld AusstellBehoerde optional +2004-06-20 tsch: Erstellt +--> + +<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#" + targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#" + elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0"> + <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../../eingebunden/EingebundenProxy.xsd"/> + + <xsd:complexType name="AkademischerGradErgebnisType"> + <xsd:annotation> + <xsd:documentation>Suchergebnisse-Struktur akademischer Grade einer Person</xsd:documentation> + </xsd:annotation> + + <xsd:sequence> + <xsd:element ref="base:EntityErgebnisReferenz"/> + <xsd:element ref="base:AkadGradKey"/> + <xsd:element ref="base:AkadGradStellung"/> + <xsd:element ref="base:AkadGradReihung"/> + <xsd:element ref="base:AkadGradLang"/> + <xsd:element ref="base:AkadGradKurz"/> + <xsd:element ref="base:AusstellDatum" minOccurs="0"/> + <xsd:element ref="base:AusstellBehoerde" minOccurs="0"/> + <xsd:element ref="base:Ausstellungsstaat"/> + </xsd:sequence> + </xsd:complexType> + + <xsd:element name="AkademischerGradAnlage" type="AkademischerGradAnlageType"/> + <xsd:complexType name="AkademischerGradAnlageType"> + <xsd:annotation> + <xsd:documentation>Struktur für Anlagen von akademischen Graden im ZMR</xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:choice> + <xsd:annotation> + <xsd:documentation> + Bei Anlage eines offiziellen akademischer Grades muss der AkadGradKey des Grades geschickt werden, + die einzelnen Felder (ohne AkadGradKey) sind nur bei Anlage eines "händischen", nicht offiziellen + Grades zu befüllen. + </xsd:documentation> + </xsd:annotation> + <xsd:element ref="base:AkadGradKey"/> + <xsd:sequence> + <xsd:element ref="base:AkadGradStellung"/> + <xsd:element ref="base:AkadGradReihung"/> + <xsd:element ref="base:AkadGradLang"/> + <xsd:element ref="base:AkadGradKurz"/> + </xsd:sequence> + </xsd:choice> + <xsd:element ref="base:AusstellDatum" minOccurs="0"/> + <xsd:element ref="base:AusstellBehoerde" minOccurs="0"/> + <xsd:element ref="base:Ausstellungsstaat"/> + </xsd:sequence> + </xsd:complexType> + + <xsd:element name="AkademischerGradAenderung" type="AkademischerGradAenderungType"/> + <xsd:complexType name="AkademischerGradAenderungType"> + <xsd:annotation> + <xsd:documentation> + Struktur für Änderungen von akademischen Graden im ZMR. + Die Felder AkadGradLang und AkadGradKurz lassen sich nur bei nicht-offiziellen Graden (kein AkadGradKey) ändern. + </xsd:documentation> + </xsd:annotation> + <xsd:sequence> + <xsd:element ref="base:EntityReferenz"/> + <xsd:element ref="base:AkadGradLang" minOccurs="0"/> + <xsd:element ref="base:AkadGradKurz" minOccurs="0"/> + <xsd:element ref="base:AusstellDatum" minOccurs="0"/> + <xsd:element ref="base:AusstellBehoerde" minOccurs="0"/> + <xsd:element ref="base:Beendigung"/> + </xsd:sequence> + </xsd:complexType> + +</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/Auskunftssperre.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/Auskunftssperre.xsd new file mode 100644 index 00000000..30dafed3 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/Auskunftssperre.xsd @@ -0,0 +1,95 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Auskunftssperre.xsd
+Zweck: Definiert Auskunftssperren für ZMR-Entities (Person und Meldung)
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2004-10-27 tsch: Felder bei Änderung optional, Beendigung hinzugefügt
+2004-08-06 tsch: SperrText in AuskunftssperreErgebnisType hinzugefügt
+2004-06-14 tsch: Handling mehrerer Auskunftssperren
+2004-01-22 tsch: Auskunftssperre->AuskunftssperreErgebnisType
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../../eingebunden/EingebundenProxy.xsd"/>
+
+ <xsd:complexType name="AuskunftssperreErgebnisType">
+ <xsd:annotation>
+ <xsd:documentation>Auskunftssperre-Struktur für Suchergebnisse</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:EntityErgebnisReferenz"/>
+ <xsd:element ref="SperreVon"/>
+ <xsd:element ref="SperreBis"/>
+ <xsd:element ref="SperrCode"/>
+ <xsd:element ref="SperrText"/>
+ <xsd:element ref="SperrFreitext" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="AuskunftssperreAnlage" type="AuskunftssperreAnlageType"/>
+ <xsd:complexType name="AuskunftssperreAnlageType">
+ <xsd:annotation>
+ <xsd:documentation>Struktur für Anlagen von Auskunftssperren</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="SperreVon"/>
+ <xsd:element ref="SperreBis"/>
+ <xsd:element ref="SperrCode"/>
+ <xsd:element ref="SperrFreitext" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="AuskunftssperreAenderung" type="AuskunftssperreAenderungType"/>
+ <xsd:complexType name="AuskunftssperreAenderungType">
+ <xsd:annotation>
+ <xsd:documentation>Struktur für Änderungen von Auskunftssperren</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:EntityReferenz"/>
+ <xsd:element ref="SperreVon" minOccurs="0"/>
+ <xsd:element ref="SperreBis" minOccurs="0"/>
+ <xsd:element ref="SperrCode" minOccurs="0"/>
+ <xsd:element ref="SperrFreitext" minOccurs="0"/>
+ <xsd:element ref="base:Beendigung"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="SperreVon" type="base:TimestampType"/>
+ <xsd:element name="SperreBis" type="base:TimestampType"/>
+
+ <xsd:element name="SperrCode">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="15"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="SperrFreitext">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="240"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="SperrText">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="50"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/Aviso.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/Aviso.xsd new file mode 100644 index 00000000..dff1d5eb --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/Aviso.xsd @@ -0,0 +1,176 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Aviso.xsd
+Zweck: Definiert Datentypen für die Anlage, Aenderung und Suche von Avisi
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2010-06-02 mp: ZMR-1142: AvisoAktenzahl für case-insensitive Suche auf bestimmte Zeichen begrenzt
+2005-01-14 tsch: Adaptionen bei Änderung; Abfragerhythmus entfernt
+2004-11-26 tsch: Erweiterung um Avisotreffer
+2004-04-06 tsch: Erstellung
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:include schemaLocation="../Personenabfrage.xsd"/>
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../../eingebunden/PersonDataZMR.xsd"/>
+
+ <xsd:element name="AvisoReferenz" type="AvisoReferenzType"/>
+ <xsd:complexType name="AvisoReferenzType">
+ <xsd:annotation>
+ <xsd:documentation>Typ für Referenzdaten eines Aviso (immer das aktuellste, das heisst jüngstes 'Von'), mit Avisozahl zur Kontrolle</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:Technisch"/>
+ <xsd:element ref="AvisoZahl"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="AvisoErgebnis" type="AvisoErgebnisType"/>
+
+
+ <xsd:complexType name="AvisoErgebnisType">
+ <xsd:annotation>
+ <xsd:documentation>Aviso-Struktur für Suchergebnisse der Avisosuchen</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:EntityErgebnisReferenz"/>
+ <xsd:element ref="AvisoZahl"/>
+ <xsd:element ref="AvisoAktenzahl" minOccurs="0"/>
+ <xsd:element ref="base:Behoerdenschluessel"/>
+ <xsd:element ref="base:BehoerdenBezeichnung" minOccurs="0"/>
+
+ <xsd:element ref="ZustaendigeMeldebehoerde"/>
+
+ <xsd:element ref="AvisoStart"/>
+ <xsd:element ref="AvisoEnde"/>
+ <xsd:element ref="AvisoStatus"/>
+
+ <xsd:element ref="AvisoSuchkriterien"/>
+ <xsd:element ref="AvisoSuchdaten"/>
+
+ <xsd:element ref="AvisoTreffer" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="AvisoTreffer" type="AvisoTrefferType"/>
+ <xsd:complexType name="AvisoTrefferType">
+ <xsd:annotation>
+ <xsd:documentation>Struktur für gefundenen Treffer des Aviso im ZMR (ein Treffer repräsentiert eine gefundene Person)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="AvisoTrefferStatus"/>
+ <xsd:element name="AvisoTrefferAusgeschlossen" type="xsd:boolean"/>
+ <xsd:element name="AvisoTrefferPersonendaten" type="PAbfrageErgebnisSatzType"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="AvisoAnlage" type="AvisoAnlageType"/>
+ <xsd:complexType name="AvisoAnlageType">
+ <xsd:annotation>
+ <xsd:documentation>Aviso-Struktur für Neuanlagen von Avisi im ZMR</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:BehoerdenNr" minOccurs="0"/>
+ <xsd:element ref="AvisoAktenzahl" minOccurs="0"/>
+ <xsd:element ref="ZustaendigeMeldebehoerde"/>
+
+ <xsd:element ref="AvisoStart"/>
+ <xsd:element ref="AvisoEnde"/>
+
+ <xsd:element ref="AvisoSuchkriterien"/>
+ <xsd:element ref="AvisoSuchdaten"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="AvisoAenderung" type="AvisoAenderungType"/>
+ <xsd:complexType name="AvisoAenderungType">
+ <xsd:annotation>
+ <xsd:documentation>Aviso-Struktur für Aenderungen von Avisdaten</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="AvisoStart" minOccurs="0"/>
+ <xsd:element ref="AvisoEnde" minOccurs="0"/>
+ <xsd:element ref="base:Beendigung"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="AvisoTrefferAenderung" type="AvisoTrefferAenderungType"/>
+ <xsd:complexType name="AvisoTrefferAenderungType">
+ <xsd:annotation>
+ <xsd:documentation>Struktur zum Ein/Ausschliessen von Avisotreffern eines Aviso</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="PersonReferenz"/>
+ <xsd:element ref="base:Bezugsfeld" minOccurs="0"/>
+ <xsd:element name="AvisoTrefferAusschliessen" type="xsd:boolean"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="AvisoSuchkriterien">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:Formalisiert"/>
+ <xsd:element ref="base:InclusivNameVorErsterEhe"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AvisoSuchdaten">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="base:ZMRZahl" minOccurs="0"/>
+ <xsd:element ref="cio:NatuerlichePerson" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ <xsd:element name="AvisoZahl">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:pattern value="[0-9]{9}"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="AvisoAktenzahl">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="72"/>
+ <xsd:pattern value="[a-zA-Z0-9ÄÖÜäöüß^°!"§$&/(){}\[\]=?\\´`*+~#',;.:\-_@ ]*"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:element name="AvisoStart" type="base:TimestampType"/>
+ <xsd:element name="AvisoEnde" type="base:TimestampType"/>
+
+ <xsd:element name="AvisoStatus">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="N"/>
+ <xsd:enumeration value="A"/>
+ <xsd:enumeration value="D"/>
+ <xsd:enumeration value="H"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="AvisoTrefferStatus">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:enumeration value="A"/>
+ <xsd:enumeration value="H"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="ZustaendigeMeldebehoerde" type="base:GemeindeNrType"/>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/Behoerdenattribute.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/Behoerdenattribute.xsd new file mode 100644 index 00000000..0b2cc6b8 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/Behoerdenattribute.xsd @@ -0,0 +1,67 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Behoerdenattribute.xsd
+Zweck: Definiert die Struktur von Behördenattributen für Meldungen
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2004-12-01 tsch: Attribut6 hinzugefügt
+2004-01-22 tsch: Erstellt
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../../eingebunden/EingebundenProxy.xsd"/>
+
+ <xsd:complexType name="BehoerdenattributeErgebnisType">
+ <xsd:annotation>
+ <xsd:documentation>Behördenattribute-Struktur für Suchergebnisse</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:EntityErgebnisReferenz"/>
+ <xsd:sequence>
+ <xsd:element ref="Attribut1" minOccurs="0"/>
+ <xsd:element ref="Attribut2" minOccurs="0"/>
+ <xsd:element ref="Attribut3" minOccurs="0"/>
+ <xsd:element ref="Attribut4" minOccurs="0"/>
+ <xsd:element ref="Attribut5" minOccurs="0"/>
+ <xsd:element ref="Attribut6" minOccurs="0"/>
+ <xsd:element ref="OMRNummer" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:complexType name="BehoerdenattributeSetzenType">
+ <xsd:annotation>
+ <xsd:documentation>Behördenattribute-Struktur zum Setzen der Behördenattribute einer Meldung</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="Attribut1" minOccurs="0"/>
+ <xsd:element ref="Attribut2" minOccurs="0"/>
+ <xsd:element ref="Attribut3" minOccurs="0"/>
+ <xsd:element ref="Attribut4" minOccurs="0"/>
+ <xsd:element ref="Attribut5" minOccurs="0"/>
+ <xsd:element ref="Attribut6" minOccurs="0"/>
+ <xsd:element ref="OMRNummer" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="Attribut1" type="AttributType"/>
+ <xsd:element name="Attribut2" type="AttributType"/>
+ <xsd:element name="Attribut3" type="AttributType"/>
+ <xsd:element name="Attribut4" type="AttributType"/>
+ <xsd:element name="Attribut5" type="AttributType"/>
+ <xsd:element name="Attribut6" type="AttributType"/>
+ <xsd:element name="OMRNummer" type="AttributType"/>
+
+ <xsd:simpleType name="AttributType">
+ <xsd:restriction base="xsd:string">
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="240"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/ERnPAnschrift.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/ERnPAnschrift.xsd new file mode 100644 index 00000000..0fb07b9b --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/ERnPAnschrift.xsd @@ -0,0 +1,73 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: ERnPAnschrift.xsd
+Zweck: Definiert Anschriftntypen für Suchergebnisse aus dem ERnP der übergreifenden ZMR-Suche
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2005-11-29 tsch: Firmenname, Ansprechpartner hinzugefügt
+2005-10-11 tsch: Umbenennung Anschrift->Anschrift
+2005-10-06 tsch: Umbenennung EGR->ERnP
+2005-08-30 tsch: Anpassungen an neu erstellte Schnittstelle des ERnP
+2004-01-27 tsch: Erstellung (Diese Struktur der EGR-Anschrift ist vorläufig, und wird noch angepasst!)
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../../eingebunden/PersonDataZMR.xsd"/>
+
+ <xsd:element name="ERnPAnschriftErgebnis" type="ERnPAnschriftErgebnisType"/>
+ <xsd:complexType name="ERnPAnschriftErgebnisType">
+ <xsd:annotation>
+ <xsd:documentation>Anschrift-Struktur für Suchergebnisse aus dem ERnP</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:EntityErgebnisReferenz"/>
+ <xsd:element ref="cio:PostAdresse" minOccurs="0"/>
+ <xsd:element ref="PostleitzahlStaat" minOccurs="0"/>
+ <xsd:element ref="base:Adressstatus" minOccurs="0"/>
+ <xsd:element ref="base:Adressschluessel" minOccurs="0"/>
+ <xsd:element ref="base:HauptIdent" minOccurs="0"/>
+ <xsd:element ref="base:StrasseZweisprachig" minOccurs="0"/>
+ <xsd:element ref="base:Postleitzahlgebiet" minOccurs="0"/>
+ <xsd:element ref="cio:TelefonAdresse" minOccurs="0" maxOccurs="3"/>
+ <xsd:element ref="cio:InternetAdresse" minOccurs="0"/>
+ <xsd:element name="Firmenname1" type="FirmennameType" minOccurs="0"/>
+ <xsd:element name="Firmenname2" type="FirmennameType" minOccurs="0"/>
+ <xsd:element ref="Ansprechpartner" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="PostleitzahlStaat">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:pattern value="[A-Z]{3}"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+
+ <xsd:simpleType name="FirmennameType">
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="54"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+
+ <xsd:element name="Ansprechpartner">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="54"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/ERnPPerson.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/ERnPPerson.xsd new file mode 100644 index 00000000..d4b83b63 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/ERnPPerson.xsd @@ -0,0 +1,114 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: ERnPPerson.xsd
+Zweck: Definiert Persondatentypen für Suchergebnisse aus dem ERnP der übergreifenden ZMR-Suche
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2010-04-02 teo: +Kit-Informationen
+2010-02-25 mp: +Akad. Grad
+2006-01-12 tsch: Anschrift optional
+2005-10-06 tsch: Umbenennung EGR->ERnP
+2005-08-30 tsch: Anpassungen an neu erstellte Schnittstelle des ERnP
+2004-01-27 tsch: Erstellung (Diese Struktur der EGR-Person ist vorläufig, und wird noch angepasst!)
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../../eingebunden/PersonDataZMR.xsd"/>
+ <xsd:include schemaLocation="ERnPAnschrift.xsd"/>
+
+ <xsd:element name="ERnPPersonErgebnis" type="ERnPPersonErgebnisType"/>
+
+ <xsd:complexType name="ERnPPersonErgebnisType">
+ <xsd:annotation>
+ <xsd:documentation>Person-Struktur für Suchergebnisse aus dem ERnP</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:ErgebnissatzInfo"/>
+ <xsd:element ref="base:EntityErgebnisReferenz"/>
+ <xsd:element ref="base:OrdnungsZahl" minOccurs="0"/>
+ <xsd:element ref="cio:NatuerlichePerson"/>
+ <xsd:element name="ReferenziertePersonen" type="ERnPReferenziertePersonenErgebnisType" minOccurs="0"/>
+ <xsd:element name="Reisedokument" type="ERnPReisedokumentErgebnisType" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="Dokument" type="ERnPDokumentErgebnisType" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="PersonGeprueft" type="xsd:boolean"/>
+ <xsd:element name="Anschrift" type="ERnPAnschriftErgebnisType" minOccurs="0"/>
+ <xsd:element name="AkadGrad" type="ERnPAkademischerGradErgebnisType" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:complexType name="ERnPDokumentErgebnisType">
+ <xsd:annotation>
+ <xsd:documentation>Dokument-Struktur für Suchergebnisse</xsd:documentation>
+ </xsd:annotation>
+
+ <xsd:sequence>
+ <xsd:element ref="base:EntityErgebnisReferenz"/>
+ <xsd:element ref="base:DokumentArt"/>
+ <xsd:element ref="base:DokumentNummer"/>
+ <xsd:element ref="base:AusstellDatum"/>
+ <xsd:element ref="base:AusstellBehoerde"/>
+ <xsd:element ref="base:Ausstellungsstaat" minOccurs="0"/>
+ <xsd:element ref="base:SterbeDatum" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:complexType name="ERnPReisedokumentErgebnisType">
+ <xsd:annotation>
+ <xsd:documentation>Reisedokument-Struktur für Suchergebnisse</xsd:documentation>
+ </xsd:annotation>
+
+ <xsd:sequence>
+ <xsd:element ref="base:EntityErgebnisReferenz"/>
+ <xsd:element ref="base:DokumentArt"/>
+ <xsd:element ref="base:DokumentNummer" minOccurs="0"/>
+ <xsd:element ref="base:AusstellDatum" minOccurs="0"/>
+ <xsd:element ref="base:AusstellBehoerde" minOccurs="0"/>
+ <xsd:element ref="base:Ausstellungsstaat" minOccurs="0"/>
+ <xsd:element ref="base:DokumentGiltBis" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:complexType name="ERnPAkademischerGradErgebnisType">
+ <xsd:annotation>
+ <xsd:documentation>Akademischer-Grad-Struktur für Suchergebnisse</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:EntityErgebnisReferenz"/>
+ <xsd:element ref="base:AkadGradKey"/>
+ <xsd:element ref="base:AkadGradStellung"/>
+ <xsd:element ref="base:AkadGradReihung"/>
+ <xsd:element ref="base:AkadGradLang"/>
+ <xsd:element ref="base:AkadGradKurz"/>
+ <xsd:element ref="base:AusstellDatum" minOccurs="0"/>
+ <xsd:element ref="base:AusstellBehoerde" minOccurs="0"/>
+ <xsd:element ref="base:Ausstellungsstaat"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:complexType name="ERnPReferenziertePersonenErgebnisType">
+ <xsd:annotation>
+ <xsd:documentation>
+ Hier befinden sich Referenzan auf Personen, die mit der Person in technischer Beziehung stehen.
+ - KITQuelle, KITZiel, SPLITQuelle, SPLITZiel1 und SPLITZiel2 sind Referenzen auf geKITete
+ bzw. geSPLITete Quellpersonen- bzw. Zielpersonen und entsprechend befüllt (siehe Beschreibung KIT/SPLIT)
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element name="KitQuelle" type="base:OrdnungsZahlType" minOccurs="0"/>
+ <xsd:element name="KitZiel" type="base:OrdnungsZahlType" minOccurs="0"/>
+ <xsd:element name="SplitQuelle" type="base:OrdnungsZahlType" minOccurs="0"/>
+ <xsd:element name="SplitZiel1" type="base:OrdnungsZahlType" minOccurs="0"/>
+ <xsd:element name="SplitZiel2" type="base:OrdnungsZahlType" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/EidasIdentitaet.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/EidasIdentitaet.xsd new file mode 100644 index 00000000..361c0c95 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/EidasIdentitaet.xsd @@ -0,0 +1,107 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: EidasIdentitaet.xsd
+Zweck: Definiert Datentypen für die EidasIdentitaeten einer Person im ZMR
+Author(s): Richard Mayrhofer
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-iEidasce"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../../eingebunden/EingebundenProxy.xsd"/>
+
+ <xsd:complexType name="EidasIdentitaetErgebnisType">
+ <xsd:annotation>
+ <xsd:documentation>EIDAS-Identitaet-Struktur für Suchergebnisse</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:EntityErgebnisReferenz"/>
+ <xsd:element ref="EidasArt"/>
+ <xsd:element ref="Staatscode2" minOccurs="0"/>
+ <xsd:element ref="base:AusstellBehoerde" minOccurs="0"/>
+ <xsd:element ref="EidasWert" minOccurs="0"/>
+ <xsd:element ref="base:AusstellDatum" minOccurs="0"/>
+ <xsd:element ref="base:AblaufDatum" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="EidasIdentitaetAnlage" type="EidasIdentitaetAnlageType"/>
+ <xsd:complexType name="EidasIdentitaetAnlageType">
+ <xsd:annotation>
+ <xsd:documentation>EIDAS-Identitaet-Struktur für Identitaetanlagen im ZMR</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="EidasArt"/>
+ <xsd:element ref="Staatscode2"/>
+ <xsd:element ref="base:AusstellBehoerde" minOccurs="0"/>
+ <xsd:element ref="EidasWert" minOccurs="0"/>
+ <xsd:element ref="base:AusstellDatum" minOccurs="0"/>
+ <xsd:element ref="base:AblaufDatum" minOccurs="0"/>
+ <xsd:element ref="image" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="EidasIdentitaetAenderung" type="EidasIdentitaetAenderungType"/>
+ <xsd:complexType name="EidasIdentitaetAenderungType">
+ <xsd:annotation>
+ <xsd:documentation>EidasIdentitaet-Struktur für Änderungen von Identitaeten im ZMR</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:Technisch"/>
+ <xsd:element ref="EidasArt" minOccurs="0"/>
+ <xsd:element ref="Staatscode2" minOccurs="0"/>
+ <xsd:element ref="base:AusstellBehoerde" minOccurs="0"/>
+ <xsd:element ref="EidasWert" minOccurs="0"/>
+ <xsd:element ref="base:AusstellDatum" minOccurs="0"/>
+ <xsd:element ref="base:AblaufDatum" minOccurs="0"/>
+ <xsd:element ref="image" minOccurs="0"/>
+ <xsd:element ref="base:Beendigung"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="EidasSuchdaten" type="EidasSuchdatenType"/>
+ <xsd:complexType name="EidasSuchdatenType">
+ <xsd:annotation>
+ <xsd:documentation>EidasIdentitaet-Struktur für EidasIdentitensuche im ZMR</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="EidasArt" minOccurs="0"/>
+ <xsd:element ref="Staatscode2" minOccurs="0"/>
+ <xsd:element ref="EidasWert" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="Staatscode2">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="2"/>
+ <xsd:maxLength value="2"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="EidasArt">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="255"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="EidasWert">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="255"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="image" type="xsd:base64Binary"/>
+
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/EidasIdentitaet.xsd.svntmp b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/EidasIdentitaet.xsd.svntmp new file mode 100644 index 00000000..cd07bd8a --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/EidasIdentitaet.xsd.svntmp @@ -0,0 +1,106 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: EidasIdentitaet.xsd
+Zweck: Definiert Datentypen für die EidasIdentitaeten einer Person im ZMR
+Author(s): Richard Mayrhofer
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-iEidasce"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../../eingebunden/EingebundenProxy.xsd"/>
+
+ <xsd:complexType name="EidasIdentitaetErgebnisType">
+ <xsd:annotation>
+ <xsd:documentation>EIDAS-Identitaet-Struktur für Suchergebnisse</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:EntityErgebnisReferenz"/>
+ <xsd:element ref="EidasArt"/>
+ <xsd:element ref="Staatscode3" minOccurs="0"/>
+ <xsd:element ref="base:AusstellBehoerde" minOccurs="0"/>
+ <xsd:element ref="base:DokumentNummer" minOccurs="0"/>
+ <xsd:element ref="base:AusstellDatum" minOccurs="0"/>
+ <xsd:element ref="base:AblaufDatum" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="EidasIdentitaetAnlage" type="EidasIdentitaetAnlageType"/>
+ <xsd:complexType name="EidasIdentitaetAnlageType">
+ <xsd:annotation>
+ <xsd:documentation>EIDAS-Identitaet-Struktur für Identitaetanlagen im ZMR</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="EidasArt"/>
+ <xsd:element ref="Staatscode3"/>
+ <xsd:element ref="base:AusstellBehoerde" minOccurs="0"/>
+ <xsd:element ref="EidasNummer" minOccurs="0"/>
+ <xsd:element ref="base:AusstellDatum" minOccurs="0"/>
+ <xsd:element ref="base:AblaufDatum" minOccurs="0"/>
+ <xsd:element ref="image" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="EidasIdentitaetAenderung" type="EidasIdentitaetAenderungType"/>
+ <xsd:complexType name="EidasIdentitaetAenderungType">
+ <xsd:annotation>
+ <xsd:documentation>EidasIdentitaet-Struktur für Änderungen von Identitaeten im ZMR</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:Technisch"/>
+ <xsd:element ref="EidasArt" minOccurs="0"/>
+ <xsd:element ref="Staatscode3" minOccurs="0"/>
+ <xsd:element ref="base:AusstellBehoerde" minOccurs="0"/>
+ <xsd:element ref="EidasNummer" minOccurs="0"/>
+ <xsd:element ref="base:AusstellDatum" minOccurs="0"/>
+ <xsd:element ref="base:AblaufDatum" minOccurs="0"/>
+ <xsd:element ref="image" minOccurs="0"/>
+ <xsd:element ref="base:Beendigung"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="EidasSuchdaten" type="EidasSuchdatenType"/>
+ <xsd:complexType name="EidasSuchdatenType">
+ <xsd:annotation>
+ <xsd:documentation>EidasIdentitaet-Struktur für EidasIdentitensuche im ZMR</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="EidasArt" minOccurs="0"/>
+ <xsd:element ref="EidasNummer" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="Staatscode3">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="3"/>
+ <xsd:maxLength value="3"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="EidasArt">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="55"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="EidasNummer">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="0"/>
+ <xsd:maxLength value="54"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="image" type="xsd:base64Binary"/>
+
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/Meldung.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/Meldung.xsd new file mode 100644 index 00000000..0ea75355 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/Meldung.xsd @@ -0,0 +1,189 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Meldung.xsd
+Zweck: Definiert Meldedatentypen für das ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2004-08-18 tsch: Qualifikationskennzeichen hinzugefügt
+2004-08-02 tsch: Adressschluessel hinzugefügt; StrasseZweisprachig, Postleitzahlgebiet, weitere optionale Adresssfelder bei MeldungErgebnis hinzugefügt
+2004-08-02 tsch: Adressdaten in Struktur-Feld 'Wohnsitz' gekapselt
+2004-07-30 tsch: PostAdresseAnlageKlaerung entfernt, Keys und Adressfelde in PostadresseAnlage optional, Felder an neue Personrecord angepasst
+2004-07-14 tsch: Postleitzahl in Klärungsadresse optional
+2004-07-08 tsch: Felder Adresszusatz, HauptIdentadresse hinzugefügt
+2004-06-24 tsch: Bezeichung Beharrungsadresse->Klaerungsadresse
+2004-06-18 tsch: ErgebnissatzInfo hinzugefügt
+2004-06-14 tsch: Handling mehrerer Auskunftssperren
+2004-04-14 tsch: MeldungAnlageType: Korrekturen bei Beharrungsadresse/offizielle Adresse
+2004-01-27 tsch: ZMRAdresse wird PostAdresse
+2004-01-22 tsch: Integration der CIO-Personendaten Struktur (http://reference.e-government.gv.at/namespace/persondata/de/20040201#)
+-->
+
+<xsd:schema targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../../eingebunden/PersonDataZMR.xsd"/>
+ <xsd:include schemaLocation="Behoerdenattribute.xsd"/>
+ <xsd:include schemaLocation="Auskunftssperre.xsd"/>
+ <xsd:include schemaLocation="Qualifikationskennzeichen.xsd"/>
+
+ <xsd:element name="MeldungReferenz" type="MeldungReferenzType"/>
+ <xsd:complexType name="MeldungReferenzType">
+ <xsd:annotation>
+ <xsd:documentation>Typ für Referenzdaten einer Meldung, (immer die aktuellste, das heisst jüngstes 'Von') mit WS-Qualität zur Kontrolle)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:Technisch">
+ <xsd:annotation>
+ <xsd:documentation>
+ Bei einer Änderung von Meldedaten müssen hier die EntityID der Meldung, sowie der
+ Zeitpunkt der letzten Änderung am Meldungssatz (Meldung-Entity und abhängige Entities wie Behördenattribute)
+ geschickt werden.
+ Der LetzteAenderung-Timestamp muss mit dem LetzteAenderung-Timestamp im Feld ErgebnissatzInfo
+ aus dem Suchergebnissatz übereinstimmen
+ </xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element ref="cio:Wohnsitzqualitaet">
+ <xsd:annotation>
+ <xsd:documentation>
+ Die Wohnsitzqualität der Meldung muss zur Kontrolle unverändert
+ mitgeschickt werden.
+ </xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="MeldungErgebnis" type="MeldungErgebnisType"/>
+ <xsd:complexType name="MeldungErgebnisType">
+ <xsd:annotation>
+ <xsd:documentation>Meldung-Struktur für Suchergebnisse aus dem ZMR</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:ErgebnissatzInfo"/>
+ <xsd:element ref="base:EntityErgebnisReferenz"/>
+ <xsd:element name="Wohnsitz" type="WohnsitzErgebnisType"/>
+ <xsd:element ref="base:GemeldetVon"/>
+ <xsd:element ref="base:PeriodeCode"/>
+ <xsd:element ref="base:PeriodeText"/>
+ <xsd:element ref="base:PeriodeFreitext" minOccurs="0"/>
+ <xsd:element ref="base:GemeldetBis" minOccurs="0"/>
+ <xsd:element ref="base:Unterkunftgeber" minOccurs="0"/>
+ <xsd:element name="Behoerdenattribute" type="BehoerdenattributeErgebnisType" minOccurs="0"/>
+ <xsd:element name="Auskunftssperre" type="AuskunftssperreErgebnisType" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="Qualifikationskennzeichen" type="QualifikationskennzeichenErgebnisType" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:complexType name="PostAdresseErgebnisType">
+ <xsd:annotation>
+ <xsd:documentation>ZMR-Adresse (Suchergebnis)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexContent>
+ <xsd:extension base="cio:AbstractAddressType">
+ <xsd:sequence>
+ <xsd:element ref="cio:Postleitzahl"/>
+ <xsd:element ref="cio:Gemeinde"/>
+ <xsd:element ref="cio:Gemeindekennziffer"/>
+ <xsd:element ref="cio:Ortschaft" minOccurs="0"/>
+ <xsd:element ref="cio:OrtschaftZweisprachig" minOccurs="0"/>
+ <xsd:element name="Zustelladresse">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="cio:Adresszeile" minOccurs="0"/>
+ <xsd:element ref="cio:Strassenname"/>
+ <xsd:element ref="cio:Orientierungsnummer"/>
+ <xsd:element ref="cio:Gebaeude" minOccurs="0"/>
+ <xsd:element ref="cio:Nutzungseinheit" minOccurs="0"/>
+ <xsd:element ref="cio:Wohnsitzqualitaet"/>
+ <xsd:element ref="cio:Abgabestelle" minOccurs="0"/>
+ <xsd:element ref="cio:Nutzungseinheitlaufnummer" minOccurs="0"/>
+ <xsd:element ref="AdressRegisterEintrag" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ </xsd:sequence>
+ </xsd:extension>
+ </xsd:complexContent>
+ </xsd:complexType>
+
+ <xsd:complexType name="WohnsitzErgebnisType">
+ <xsd:sequence>
+ <xsd:element name="PostAdresse" type="PostAdresseErgebnisType"/>
+ <xsd:element ref="base:Adressstatus"/>
+ <xsd:element ref="base:Adressschluessel" minOccurs="0"/>
+ <xsd:element ref="base:HauptIdent" minOccurs="0"/>
+ <xsd:element ref="base:StrasseZweisprachig" minOccurs="0"/>
+ <xsd:element ref="base:Postleitzahlgebiet" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="MeldungAnlage" type="MeldungAnlageType"/>
+ <xsd:complexType name="MeldungAnlageType">
+ <xsd:annotation>
+ <xsd:documentation>Meldung-Struktur zur Wohnsitzanmeldung im ZMR</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element name="Wohnsitz" type="WohnsitzAnlageType"/>
+ <xsd:element ref="base:Unterkunftgeber" minOccurs="0"/>
+ <xsd:element name="Behoerdenattribute" type="BehoerdenattributeSetzenType" minOccurs="0"/>
+ <xsd:element name="Auskunftssperre" type="AuskunftssperreAnlageType" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:complexType name="WohnsitzAnlageType">
+ <xsd:sequence>
+ <xsd:element name="PostAdresse" type="PostAdresseAnlageType"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:complexType name="PostAdresseAnlageType">
+ <xsd:annotation>
+ <xsd:documentation>ZMR-Adresse (für Wohnsitzanlage)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexContent>
+ <xsd:extension base="cio:AbstractAddressType">
+ <xsd:sequence>
+ <xsd:element ref="cio:Postleitzahl" minOccurs="0"/>
+ <xsd:element ref="cio:Gemeindekennziffer" minOccurs="0"/>
+ <xsd:element ref="cio:Ortschaft" minOccurs="0"/>
+ <xsd:element ref="cio:OrtschaftZweisprachig" minOccurs="0"/>
+ <xsd:element name="Zustelladresse">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="cio:Adresszeile" minOccurs="0"/>
+ <xsd:element ref="cio:Strassenname" minOccurs="0"/>
+ <xsd:element ref="cio:Orientierungsnummer" minOccurs="0"/>
+ <xsd:element ref="cio:Gebaeude" minOccurs="0"/>
+ <xsd:element ref="cio:Nutzungseinheit" minOccurs="0"/>
+ <xsd:element ref="cio:Wohnsitzqualitaet"/>
+ <xsd:element ref="cio:Abgabestelle" minOccurs="0"/>
+ <xsd:element ref="cio:Nutzungseinheitlaufnummer" minOccurs="0"/>
+ <xsd:element ref="AdressRegisterEintrag" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+
+ </xsd:sequence>
+ </xsd:extension>
+ </xsd:complexContent>
+ </xsd:complexType>
+
+ <xsd:element name="AdressRegisterEintrag">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="cio:Adresscode" minOccurs="1"/>
+ <xsd:element ref="cio:Subcode" minOccurs="0"/>
+ <xsd:element ref="cio:Objektnummer" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+</xsd:schema>
diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/Person.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/Person.xsd new file mode 100644 index 00000000..8e3e55ee --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/Person.xsd @@ -0,0 +1,233 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Person.xsd
+Zweck: Definiert Persondatentypen für das Personenregister
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2006-04-18 woeg: +optionales Feld Familienstand
+2004-12-17 tsch: optionales Feld Affix in NatuerlichePersonErgebnisType hinzugefügt
+2004-09-29 tsch: Standarddokumente hinzugefügt
+2004-06-22 tsch: StaatZugezogen bei PersonAenderung hinzugefügt, akademische Grade hinzugefügt, Titel hinzugefügt
+2004-06-18 tsch: ErgebnissatzInfo hinzugefügt
+2004-06-14 tsch: Behördenattribute hinzugefügt
+2004-06-14 tsch: Handling mehrerer Auskunftssperren
+2004-01-22 tsch: Integration der CIO-Personendaten Struktur (http://reference.e-government.gv.at/namespace/persondata/de/20040201#)
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../../eingebunden/PersonDataZMR.xsd"/>
+ <xsd:include schemaLocation="Reisedokument.xsd"/>
+ <xsd:include schemaLocation="Behoerdenattribute.xsd"/>
+ <xsd:include schemaLocation="Auskunftssperre.xsd"/>
+ <xsd:include schemaLocation="Qualifikationskennzeichen.xsd"/>
+ <xsd:include schemaLocation="Staatsangehoerigkeit.xsd"/>
+ <xsd:include schemaLocation="AkademischerGrad.xsd"/>
+ <xsd:include schemaLocation="Standarddokument.xsd"/>
+ <xsd:include schemaLocation="EidasIdentitaet.xsd"/>
+
+ <xsd:element name="PersonReferenz" type="PersonReferenzType"/>
+ <xsd:complexType name="PersonReferenzType">
+ <xsd:annotation>
+ <xsd:documentation>Typ für Referenzdaten einer Person (immer die aktuellste, das heisst jüngstes 'Von'), mit ZMR-Zahl zur Kontrolle</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:Technisch">
+ <xsd:annotation>
+ <xsd:documentation>
+ Bei einer Änderung von Personendaten müssen hier die EntityID der Person, sowie der
+ Zeitpunkt der letzten Änderung am Personensatz (Person-Entity und abhängige Entities wie Reisedokumente)
+ geschickt werden.
+ Der LetzteAenderung-Timestamp muss mit dem LetzteAenderung-Timestamp im Feld ErgebnissatzInfo
+ aus dem Suchergebnissatz übereinstimmen
+ </xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+
+ <xsd:element ref="base:ZMRZahl">
+ <xsd:annotation>
+ <xsd:documentation>
+ Die ZMR-Zahl der Person muss zur Kontrolle unverändert
+ mitgeschickt werden.
+ </xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="PersonErgebnis" type="PersonErgebnisType"/>
+
+
+ <xsd:complexType name="PersonErgebnisType">
+ <xsd:annotation>
+ <xsd:documentation>Person-Struktur für Suchergebnisse aus dem ZMR</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:ErgebnissatzInfo"/>
+ <xsd:element ref="base:EntityErgebnisReferenz"/>
+ <xsd:element ref="base:ZMRZahl" minOccurs="0"/>
+ <xsd:element name="NatuerlichePerson" type="NatuerlichePersonErgebnisType"/>
+ <xsd:element ref="base:Titel" minOccurs="0"/>
+ <xsd:element ref="base:StaatZugezogen" minOccurs="0"/>
+ <xsd:element ref="base:StaatVerzogen" minOccurs="0"/>
+ <xsd:element name="ReferenziertePersonen" type="ReferenziertePersonenErgebnisType" minOccurs="0"/>
+ <xsd:element name="Reisedokument" type="ReisedokumentErgebnisType" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="Behoerdenattribute" type="BehoerdenattributeErgebnisType" minOccurs="0"/>
+ <xsd:element name="Auskunftssperre" type="AuskunftssperreErgebnisType" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="Qualifikationskennzeichen" type="QualifikationskennzeichenErgebnisType" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="AkademischerGrad" type="AkademischerGradErgebnisType" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="Standarddokument" type="StandarddokumentErgebnisType" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="EidasIdentitaet" type="EidasIdentitaetErgebnisType" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:complexType name="NatuerlichePersonErgebnisType">
+ <xsd:annotation>
+ <xsd:documentation>Natuerliche Person (Suchergebnis)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexContent>
+ <xsd:extension base="cio:AbstractPersonType">
+ <xsd:sequence>
+ <xsd:element name="PersonenName">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="cio:Vorname"/>
+ <xsd:element ref="cio:Familienname"/>
+ <xsd:element ref="cio:Affix" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element ref="cio:AlternativName" minOccurs="0"/>
+ <xsd:element ref="cio:Familienstand" minOccurs="0"/>
+ <xsd:element ref="cio:Geschlecht"/>
+ <xsd:element ref="cio:Geburtsdatum"/>
+ <xsd:element ref="cio:Geburtsort"/>
+ <xsd:element ref="cio:Geburtsbundesland" minOccurs="0"/>
+ <xsd:element ref="cio:Geburtsstaat"/>
+ <xsd:element ref="cio:Sterbedatum" minOccurs="0"/>
+ <xsd:element name="Staatsangehoerigkeit" type="StaatsangehoerigkeitErgebnisType" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:extension>
+ </xsd:complexContent>
+ </xsd:complexType>
+
+ <xsd:complexType name="ReferenziertePersonenErgebnisType">
+ <xsd:annotation>
+ <xsd:documentation>
+ Hier befinden sich Referenzan auf Personen, die mit der Person in technischer Beziehung stehen.
+ - Die Ordnungszahl verweist auf den Personenzatz im Ergänzungsregister, falls die Person vom
+ vom EGR ins ZMR übernommen wurde.
+ - KITQuelle, KITZiel, SPLITQuelle, SPLITZiel1 und SPLITZiel2 sind Referenzen auf geKITete
+ bzw. geSPLITete Quellpersonen- bzw. Zielpersonen und entsprechend befüllt (siehe Beschreibung KIT/SPLIT)
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:OrdnungsZahl" minOccurs="0"/>
+ <xsd:element name="KitQuelle" type="base:ZMRZahlType" minOccurs="0"/>
+ <xsd:element name="KitQuelleBpk" type="cio:IdentificationType" minOccurs="0"/>
+ <xsd:element name="KitZiel" type="base:ZMRZahlType" minOccurs="0"/>
+ <xsd:element name="KitZielBpk" type="cio:IdentificationType" minOccurs="0"/>
+ <xsd:element name="SplitQuelle" type="base:ZMRZahlType" minOccurs="0"/>
+ <xsd:element name="SplitZiel1" type="base:ZMRZahlType" minOccurs="0"/>
+ <xsd:element name="SplitZiel2" type="base:ZMRZahlType" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="PersonAnlage" type="PersonAnlageType"/>
+ <xsd:complexType name="PersonAnlageType">
+ <xsd:annotation>
+ <xsd:documentation>Person-Struktur für Personenanlagen im ZMR</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element name="NatuerlichePerson" type="NatuerlichePersonAnlageType"/>
+ <xsd:element ref="base:Titel" minOccurs="0"/>
+ <xsd:element ref="base:StaatZugezogen" minOccurs="0"/>
+ <xsd:element name="Reisedokument" type="ReisedokumentAnlageType" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="Behoerdenattribute" type="BehoerdenattributeSetzenType" minOccurs="0"/>
+ <xsd:element name="Auskunftssperre" type="AuskunftssperreAnlageType" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="AkademischerGrad" type="AkademischerGradAnlageType" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="Standarddokument" type="StandarddokumentAnlageType" minOccurs="0" maxOccurs="unbounded"/>
+ <xsd:element name="EidasIdentitaet" type="EidasIdentitaetAnlageType" minOccurs="0" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:complexType name="NatuerlichePersonAnlageType">
+ <xsd:annotation>
+ <xsd:documentation>Natuerliche Person (Personenanlage)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexContent>
+ <xsd:extension base="cio:AbstractPersonType">
+ <xsd:sequence>
+ <xsd:element name="PersonenName">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="cio:Vorname"/>
+ <xsd:element ref="cio:Familienname"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element ref="cio:AlternativName" minOccurs="0"/>
+ <xsd:element ref="cio:Familienstand" minOccurs="0"/>
+ <xsd:element ref="cio:Geschlecht"/>
+ <xsd:element ref="cio:Geburtsdatum"/>
+ <xsd:element ref="cio:Geburtsort"/>
+ <xsd:element ref="cio:Geburtsbundesland" minOccurs="0"/>
+ <xsd:element ref="cio:Geburtsstaat"/>
+ <xsd:element name="Staatsangehoerigkeit" type="StaatsangehoerigkeitAnlageType" minOccurs="1" maxOccurs="unbounded"/>
+ </xsd:sequence>
+ </xsd:extension>
+ </xsd:complexContent>
+ </xsd:complexType>
+
+ <xsd:element name="PersonAenderung" type="PersonAenderungType"/>
+ <xsd:complexType name="PersonAenderungType">
+ <xsd:annotation>
+ <xsd:documentation>Person-Struktur für Personendatenänderungen im ZMR</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element name="NatuerlichePerson" type="NatuerlichePersonAenderungTyp" minOccurs="0"/>
+ <xsd:element ref="base:Titel" minOccurs="0"/>
+ <xsd:choice>
+ <xsd:element ref="base:StaatZugezogen" minOccurs="0"/>
+ <xsd:element ref="base:StaatVerzogen" minOccurs="0"/>
+ </xsd:choice>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:complexType name="NatuerlichePersonAenderungTyp">
+ <xsd:annotation>
+ <xsd:documentation>Natuerliche Person (Änderung)</xsd:documentation>
+ </xsd:annotation>
+ <xsd:complexContent>
+ <xsd:extension base="cio:AbstractPersonType">
+ <xsd:sequence>
+ <xsd:element name="PersonenName" minOccurs="0">
+ <xsd:complexType>
+ <xsd:sequence>
+ <xsd:element ref="cio:Vorname" minOccurs="0"/>
+ <xsd:element ref="cio:Familienname" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+ </xsd:element>
+ <xsd:element ref="cio:AlternativName" minOccurs="0"/>
+ <xsd:element ref="cio:Familienstand" minOccurs="0"/>
+ <xsd:element ref="cio:Geschlecht" minOccurs="0"/>
+ <xsd:element ref="cio:Geburtsdatum" minOccurs="0"/>
+ <xsd:element ref="cio:Geburtsort" minOccurs="0"/>
+ <xsd:element ref="cio:Geburtsbundesland" minOccurs="0"/>
+ <xsd:element ref="cio:Geburtsstaat" minOccurs="0"/>
+ <xsd:element ref="cio:Sterbedatum" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:extension>
+ </xsd:complexContent>
+ </xsd:complexType>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/Qualifikationskennzeichen.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/Qualifikationskennzeichen.xsd new file mode 100644 index 00000000..044452c6 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/Qualifikationskennzeichen.xsd @@ -0,0 +1,75 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Qualifikationskennzeichen.xsd
+Zweck: Definiert Datentypen für die Qualifikationskennzeichen einer Person im ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2004-02-02 tsch: Umbennenung auf QualifikationskennzeichenCode, QualifikationskennzeichenText, Adaptionen
+2004-01-22 tsch: Erstellung
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../../eingebunden/EingebundenProxy.xsd"/>
+
+ <xsd:complexType name="QualifikationskennzeichenErgebnisType">
+ <xsd:annotation>
+ <xsd:documentation>Qualifikationskennzeichen-Struktur für Suchergebnisse</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:EntityErgebnisReferenz"/>
+ <xsd:sequence>
+ <xsd:element ref="QualifikationskennzeichenCode"/>
+ <xsd:element ref="QualifikationskennzeichenText" minOccurs="0"/>
+ <xsd:element ref="QualifikationskennzeichenGiltAb" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="QualifikationskennzeichenAnlage" type="QualifikationskennzeichenAnlageType"/>
+ <xsd:complexType name="QualifikationskennzeichenAnlageType">
+ <xsd:annotation>
+ <xsd:documentation>Struktur für Anlagen von Qualifikationskennzeichen</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="QualifikationskennzeichenCode" minOccurs="1"/>
+ <xsd:element ref="QualifikationskennzeichenText" minOccurs="0"/>
+ <xsd:element ref="QualifikationskennzeichenGiltAb" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="QualifikationskennzeichenLoeschen" type="QualifikationskennzeichenLoeschenType"/>
+ <xsd:complexType name="QualifikationskennzeichenLoeschenType">
+ <xsd:annotation>
+ <xsd:documentation>Struktur für Änderungen von Qualifikationskennzeichen</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:EntityReferenz"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="QualifikationskennzeichenCode">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="35"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="QualifikationskennzeichenText">
+ <xsd:simpleType>
+ <xsd:restriction base="xsd:string">
+ <xsd:whiteSpace value="collapse"/>
+ <xsd:minLength value="1"/>
+ <xsd:maxLength value="55"/>
+ </xsd:restriction>
+ </xsd:simpleType>
+ </xsd:element>
+ <xsd:element name="QualifikationskennzeichenGiltAb" type="xsd:date"/>
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/Reisedokument.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/Reisedokument.xsd new file mode 100644 index 00000000..edbbcc8c --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/Reisedokument.xsd @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Reisedokument.xsd
+Zweck: Definiert Datentypen für die Reisedokumente einer Person im ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2010-03-16 teo: LMR-756/CLM-1504 Reisedokument gültig bis erfassen
+2004-01-22 tsch: Reisedokument->ReisedokumentErgebnisType
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../../eingebunden/EingebundenProxy.xsd"/>
+
+ <xsd:complexType name="ReisedokumentErgebnisType">
+ <xsd:annotation>
+ <xsd:documentation>Reisedokument-Struktur für Suchergebnisse</xsd:documentation>
+ </xsd:annotation>
+
+ <xsd:sequence>
+ <xsd:element ref="base:EntityErgebnisReferenz"/>
+ <xsd:element ref="base:DokumentArt"/>
+ <xsd:element ref="base:DokumentNummer" minOccurs="0"/>
+ <xsd:element ref="base:AusstellDatum" minOccurs="0"/>
+ <xsd:element ref="base:AusstellBehoerde" minOccurs="0"/>
+ <xsd:element ref="base:Ausstellungsstaat" minOccurs="0"/>
+ <xsd:element ref="base:DokumentGiltBis" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="ReisedokumentAnlage" type="ReisedokumentAnlageType"/>
+ <xsd:complexType name="ReisedokumentAnlageType">
+ <xsd:annotation>
+ <xsd:documentation>Reisedokument-Struktur für Reisedokumentanlagen im ZMR</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:DokumentArt"/>
+ <xsd:element ref="base:DokumentNummer" minOccurs="0"/>
+ <xsd:element ref="base:AusstellDatum" minOccurs="0"/>
+ <xsd:element ref="base:AusstellBehoerde" minOccurs="0"/>
+ <xsd:element ref="base:Ausstellungsstaat" minOccurs="0"/>
+ <xsd:element ref="base:DokumentGiltBis" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="ReisedokumentAenderung" type="ReisedokumentAenderungType"/>
+ <xsd:complexType name="ReisedokumentAenderungType">
+ <xsd:annotation>
+ <xsd:documentation>Reisedokument-Struktur für Änderungen von Reisedokumenten im ZMR</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:EntityReferenz"/>
+ <xsd:element ref="base:DokumentArt" minOccurs="0"/>
+ <xsd:element ref="base:DokumentNummer" minOccurs="0"/>
+ <xsd:element ref="base:AusstellDatum" minOccurs="0"/>
+ <xsd:element ref="base:AusstellBehoerde" minOccurs="0"/>
+ <xsd:element ref="base:Ausstellungsstaat" minOccurs="0"/>
+ <xsd:element ref="base:DokumentGiltBis" minOccurs="0"/>
+ <xsd:element ref="base:Beendigung"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="DokumentSuchdaten" type="DokumentSuchdatenType"/>
+ <xsd:complexType name="DokumentSuchdatenType">
+ <xsd:annotation>
+ <xsd:documentation>Reisedokument-Struktur für Reisedokumentanlagen im ZMR</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:DokumentArt" minOccurs="0"/>
+ <xsd:element ref="base:DokumentNummer" minOccurs="0"/>
+ <xsd:element ref="base:AusstellDatum" minOccurs="0"/>
+ <xsd:element ref="base:AusstellBehoerde" minOccurs="0"/>
+ <xsd:element ref="base:Ausstellungsstaat" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/Staatsangehoerigkeit.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/Staatsangehoerigkeit.xsd new file mode 100644 index 00000000..2dcdee66 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/Staatsangehoerigkeit.xsd @@ -0,0 +1,73 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Staatsangehoerigkeit.xsd
+Zweck: Definiert Datentypen für die Staatsangehoerigkeiten einer Person im ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2010-03-15 teo: +GueltigVon, +GueltigBis: Gültigkeitsdatum für Staatsangehörigkeiten
+2004-12-20 tsch: ISOCode3 in StaatsangehoerigkeitErgebnisType optional (für historische Staaten)
+2004-08-04 tsch: StaatsangehoerigkeitAenderungType: EntityReferenz optional (Staatsangeh. kann auch uber ISOCode3 identifiziert werden)
+2004-01-26 tsch: Erstellung
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ xmlns:cio="http://reference.e-government.gv.at/namespace/persondata/de/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../../eingebunden/EingebundenProxy.xsd"/>
+ <xsd:import namespace="http://reference.e-government.gv.at/namespace/persondata/de/20040201#" schemaLocation="../../eingebunden/PersonDataZMR.xsd"/>
+
+ <xsd:complexType name="StaatsangehoerigkeitErgebnisType">
+ <xsd:annotation>
+ <xsd:documentation>Staatsangehoerigkeit-Struktur für Suchergebnisse</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="cio:ISOCode3" minOccurs="0"/>
+ <xsd:element ref="cio:StaatsnameDE" minOccurs="1"/>
+ <xsd:element ref="cio:StaatsnameEN" minOccurs="0"/>
+ <xsd:element ref="cio:StaatsnameFR" minOccurs="0"/>
+ <xsd:element name="GueltigVon" type="xsd:date" minOccurs="0"/>
+ <xsd:element name="GueltigBis" type="xsd:date" minOccurs="0"/>
+ <xsd:element ref="base:EntityErgebnisReferenz"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="StaatsangehoerigkeitAnlage" type="StaatsangehoerigkeitAnlageType"/>
+ <xsd:complexType name="StaatsangehoerigkeitAnlageType">
+ <xsd:annotation>
+ <xsd:documentation>Staatsangehoerigkeit-Struktur für Anlagen im ZMR</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="cio:ISOCode3"/>
+ <xsd:element name="GueltigVon" type="xsd:date" minOccurs="0"/>
+ <xsd:element name="GueltigBis" type="xsd:date" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="StaatsangehoerigkeitAenderung" type="StaatsangehoerigkeitAenderungType"/>
+ <xsd:complexType name="StaatsangehoerigkeitAenderungType">
+ <xsd:annotation>
+ <xsd:documentation>Staatsangehoerigkeit-Struktur für Änderungen im ZMR</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:choice>
+ <xsd:annotation>
+ <xsd:documentation>
+ Wenn der Schlüssel (EntityID) der Staatsbürgerschaft nicht bekannt ist,
+ kann alternativ der ISO-Code geschickt werden.
+ </xsd:documentation>
+ </xsd:annotation>
+ <xsd:element ref="base:EntityReferenz"/>
+ <xsd:element ref="cio:ISOCode3"/>
+ </xsd:choice>
+ <xsd:element name="GueltigVon" type="xsd:date" minOccurs="0"/>
+ <xsd:element name="GueltigBis" type="xsd:date" minOccurs="0"/>
+ <xsd:element ref="base:Beendigung"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+</xsd:schema>
\ No newline at end of file diff --git a/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/Standarddokument.xsd b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/Standarddokument.xsd new file mode 100644 index 00000000..5b14bcc4 --- /dev/null +++ b/eidas_modules/authmodule-eIDAS-v2/src/main/resources/wsdl/zmr_client/xsd/zmr/entities/Standarddokument.xsd @@ -0,0 +1,74 @@ +<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Name: Standarddokument.xsd
+Zweck: Definiert Datentypen für die Standarddokumente einer Person im ZMR
+Author(s): Tschurtschenthaler Thomas, ZMR-SU
+
+Aenderungshistorie:
+2004-11-03 tsch: Ausstellungsstaat hinzugefügt
+2004-09-29 tsch: Erstellt
+-->
+
+<xsd:schema xmlns="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+ xmlns:base="http://bmi.gv.at/namespace/zmr-su/base/20040201#"
+ targetNamespace="http://bmi.gv.at/namespace/zmr-su/zmr/20040201#"
+ elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
+ <xsd:import namespace="http://bmi.gv.at/namespace/zmr-su/base/20040201#" schemaLocation="../../eingebunden/EingebundenProxy.xsd"/>
+
+ <xsd:complexType name="StandarddokumentErgebnisType">
+ <xsd:annotation>
+ <xsd:documentation>Standarddokument-Struktur für Suchergebnisse</xsd:documentation>
+ </xsd:annotation>
+
+ <xsd:sequence>
+ <xsd:element ref="base:EntityErgebnisReferenz"/>
+ <xsd:element ref="base:DokumentArt"/>
+ <xsd:element ref="base:EintragungsNummer"/>
+ <xsd:element ref="base:AusstellDatum"/>
+ <xsd:element ref="base:AblaufDatum" minOccurs="0"/>
+ <xsd:element ref="base:AusstellBehoerde"/>
+ <xsd:element ref="base:Ausstellungsstaat" minOccurs="0"/>
+ <xsd:element ref="base:SterbeDatum" minOccurs="0"/>
+ <xsd:element ref="base:SterbeUhrzeit" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="StandarddokumentAnlage" type="StandarddokumentAnlageType"/>
+ <xsd:complexType name="StandarddokumentAnlageType">
+ <xsd:annotation>
+ <xsd:documentation>Standarddokument-Struktur für Standarddokumentanlagen</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:DokumentArt"/>
+ <xsd:element ref="base:EintragungsNummer"/>
+ <xsd:element ref="base:AusstellDatum"/>
+ <xsd:element ref="base:AblaufDatum" minOccurs="0"/>
+ <xsd:element ref="base:AusstellBehoerde"/>
+ <xsd:element ref="base:Ausstellungsstaat" minOccurs="0"/>
+ <xsd:element ref="base:SterbeDatum" minOccurs="0"/>
+ <xsd:element ref="base:SterbeUhrzeit" minOccurs="0"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+ <xsd:element name="StandarddokumentAenderung" type="StandarddokumentAenderungType"/>
+ <xsd:complexType name="StandarddokumentAenderungType">
+ <xsd:annotation>
+ <xsd:documentation>Standarddokument-Struktur für Änderungen von Standarddokumenten</xsd:documentation>
+ </xsd:annotation>
+ <xsd:sequence>
+ <xsd:element ref="base:EntityReferenz"/>
+ <xsd:element ref="base:DokumentArt" minOccurs="0"/>
+ <xsd:element ref="base:EintragungsNummer" minOccurs="0"/>
+ <xsd:element ref="base:AusstellDatum" minOccurs="0"/>
+ <xsd:element ref="base:AblaufDatum" minOccurs="0"/>
+ <xsd:element ref="base:AusstellBehoerde" minOccurs="0"/>
+ <xsd:element ref="base:Ausstellungsstaat" minOccurs="0"/>
+ <xsd:element ref="base:SterbeDatum" minOccurs="0"/>
+ <xsd:element ref="base:SterbeUhrzeit" minOccurs="0"/>
+ <xsd:element ref="base:Beendigung"/>
+ </xsd:sequence>
+ </xsd:complexType>
+
+</xsd:schema>
\ No newline at end of file |