I believe there is a bug in CallerIdentityLoginModule.  I am using jboss-3.2.6. 
 For testing, I switched to DatabaseServerLoginModule to authenticate the web 
application.

In the login method, on line 122, it has:
            password = (char[]) o;

Everything worked when I changed this to:
            String pass = (String) o;
            password = pass.toCharArray();

Could someone confirm this?

Thanks for any help,
Ryan Rhodes


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3855082#3855082

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3855082


-------------------------------------------------------
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to