diff options
| -rw-r--r-- | id.server/src/at/gv/egovernment/moa/id/auth/validator/IdentityLinkValidator.java | 7 | 
1 files changed, 4 insertions, 3 deletions
| diff --git a/id.server/src/at/gv/egovernment/moa/id/auth/validator/IdentityLinkValidator.java b/id.server/src/at/gv/egovernment/moa/id/auth/validator/IdentityLinkValidator.java index 42e3e946f..4c584f745 100644 --- a/id.server/src/at/gv/egovernment/moa/id/auth/validator/IdentityLinkValidator.java +++ b/id.server/src/at/gv/egovernment/moa/id/auth/validator/IdentityLinkValidator.java @@ -132,7 +132,8 @@ public class IdentityLinkValidator implements Constants {            "@AttributeNamespace",            null);        if (attributeName.equals("CitizenPublicKey")) { -        if (attributeNS.equals("http://www.buergerkarte.at/namespaces/personenbindung/20020506#")) { +        if (attributeNS.equals("http://www.buergerkarte.at/namespaces/personenbindung/20020506#") || +            attributeNS.equals("urn:publicid:gv.at:namespaces:identitylink:1.2")) {            Element attributeValue =                 (Element) XPathUtils.selectSingleNode((Element) nl.item(i),SAML + "AttributeValue/" + DSIG + "RSAKeyValue");                       if (attributeValue==null)  @@ -142,10 +143,10 @@ public class IdentityLinkValidator implements Constants {              throw new ValidateException("validator.02", null);                      }          else -          throw new ValidateException("validator.03", null); +          throw new ValidateException("validator.03", new Object [] {attributeNS} );        }        else -        throw new ValidateException("validator.04", null); +        throw new ValidateException("validator.04", new Object [] {attributeName} );      }      //Check if dsig:Signature exists | 
