Steps to Reproduce: |
1. untar reproducer_xmlns.tar.gz 2. cd reproducer_xmlns 3. copy dist/ HelloWorldPingIdentity reproducer_xmlns .war to $JBOSS_HOME/standalone/deployments 4. copy idp.truststore to to $JBOSS_HOME/standalone/configuration 5. add the following lines into standalone.xml
{code} <security-domain name="saml-token-local-validation" cache-type="default"> <authentication> <login-module code="org.picketlink.identity.federation.bindings.jboss.auth.SAMLTokenCertValidatingLoginModule" flag="required"> <module-option name="roleKey" value="http://schemas.microsoft.com/ws/2008/06/identity/claims/role"/> <module-option name="localValidationSecurityDomain" value="saml-token-local-validation"/> </login-module> </authentication> <jsse keystore-password="123456" keystore-url="${jboss.server.config.dir}/idp.truststore"/> </security-domain> {code}
6. run `ant test` |