authentication « JBoss « Java Enterprise Q&A





1. How to set username and password in JBoss    stackoverflow.com

Unfortunately their Wiki is down for maintenance and the web is not being helpful. How do I add a new user to JBoss so I can login. In Tomcat you change the tomcat-users.xml ...

2. Does JBoss cache authentication information?    stackoverflow.com

When testing various authentication solutions (my own LoginModule etc) in JBoss, it seemed to me that sometimes when I redeployed a change or otherwise provoked the login form to show, that ...

3. JBoss Authentication Question(s)    stackoverflow.com

I have a three-part question related to JBoss 5 Authentication (in the Web/EJB containers):

  1. Is there a way to propogate an identity other than the username that was specified during login? For example, using the DatabaseServerLoginModule, ...

4. jboss 4.3 DatabaseServerLoginModule doesn't work if passwords are MD5 and hex-ed    stackoverflow.com

I have a problem with authorization when my login-conf is

<login-module code="org.jboss.security.auth.spi.DatabaseServerLoginModule" flag="optional">
    <module-option name="dsJndiName">java:/myDS</module-option>
    <module-option name="hashAlgorithm">MD5</module-option>
    <module-option name="hashEncoding">hex</module-option>
    <module-option ...

5. CASify JBoss Applications    stackoverflow.com

Is there any Tutorial or Example on how to integrate CAS into JBoss (for EJB and WebClient Authentication) without using JBoss Portal ?

6. How to configure JBoss DatabaseServerLoginModule for Digest Authentication in a Web Application    stackoverflow.com

In a sentence, I want to configure JBoss 4.2.2 to use DatabaseServerLoginModule as the login-module for a Web application that is secured via Digest Authentication. The problem I am having ...

7. JBoss authenthication information not propagating    stackoverflow.com

While trying to call a component the authentication information is not being propagated. http://community.jboss.org/wiki/SecurityFAQ ,Q3 -> tackles this issue.Would it be necessary to add the ClientLoginModule configuration to all of ...

8. JBoss authenthication information not propagating    stackoverflow.com

While trying to call a component the authentication information is not being propagated.Source of the class where this exception appears is: http://www.docjar.com/html/api/org/jboss/security/identity/plugins/SimpleRoleGroup.java.html (line 168)where the iterated list of objects is ...

9. jboss authentication with blocked cookies    stackoverflow.com

Is it possible to setup authentication in jboss 4.2.2 (tomcat in fact). to support clients/browsers with cookies disabled. For now when I block all cookies in IE, after logging int, JBoss returns: HTTP ...





10. Secure authentication in jboss portal    stackoverflow.com

I am developing a Portal application and using jboss portal for this purpose. My current application authenticates the user from jboss DB, using the j_security_check servlet with username and password as ...

11. How can I get client certificate authentication working in JBoss 5.1.0.GA when I'm using APR, and not all web deployments use CLIENT-CERT auth?    stackoverflow.com

Note: I will be answering my own question... just wanted to add this tidbit to the collective wisdom of The Internets. I've successfully configured certificate authentication on my JBoss 5.1.0.GA server, largely ...