diff options
author | Thomas <> | 2021-08-05 12:43:15 +0200 |
---|---|---|
committer | Thomas <> | 2021-08-05 12:43:15 +0200 |
commit | 04be66d79416175e41110fc4cdbdda9ea936ee16 (patch) | |
tree | 8f902a037864c24ca083c677ba3c2bb9d9f89033 | |
parent | 87ef6576fe73299f0c152f6b92209de4a459cd90 (diff) | |
download | National_eIDAS_Gateway-04be66d79416175e41110fc4cdbdda9ea936ee16.tar.gz National_eIDAS_Gateway-04be66d79416175e41110fc4cdbdda9ea936ee16.tar.bz2 National_eIDAS_Gateway-04be66d79416175e41110fc4cdbdda9ea936ee16.zip |
use custom package names for address-search WSDL because there are conflicts with ZMR WSDL
-rw-r--r-- | eidas_modules/authmodule-eIDAS-v2/pom.xml | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/eidas_modules/authmodule-eIDAS-v2/pom.xml b/eidas_modules/authmodule-eIDAS-v2/pom.xml index a51d031d..7bbf826a 100644 --- a/eidas_modules/authmodule-eIDAS-v2/pom.xml +++ b/eidas_modules/authmodule-eIDAS-v2/pom.xml @@ -287,15 +287,18 @@ </extraargs> </wsdlOption> - <!--Searching address by ZMR is not active because some XSD schemes have the same namespace as ZMR client but different content. - TODO: add WSDL binding description to build client into a particular package structure. - --> - <!-- wsdlOption> + <!--use custom package name for search address Web-Service, + because ZMR and address Web-Service use the same XML namespace but defines different schema. --> + <wsdlOption> <wsdl>${basedir}/src/main/resources/wsdl/addresssearching_client/wsdl/Service.wsdl</wsdl> <extraargs> <extraarg>-verbose </extraarg> </extraargs> - </wsdlOption--> + <packagenames> + <packagename>http://bmi.gv.at/namespace/zmr-su/base/20040201#=at.gv.bmi.namespace.zmr_su.base._20040201_.address</packagename> + <packagename>http://bmi.gv.at/namespace/zmr-su/zmr/20040201#=at.gv.bmi.namespace.zmr_su.zrm._20040201_.address</packagename> + </packagenames> + </wsdlOption> </wsdlOptions> </configuration> |