[JBoss-user] [Security & JAAS/JBoss] - Re: Exception thrown whil using CustomLoginModule

2005-08-16 Thread Michael Konietzka
"java.util.MissingResourceException: Can't find resource for bundle sun.security.util.Resources, key unable to instantiate LoginModule", so there is a ressource missing, maybe some propertie-file in a jar. Look at http://forum.java.sun.com/thread.jspa?threadID=547832&tstart=240 HTH BTW: Little

[JBoss-user] [Security & JAAS/JBoss] - Re: Storing encripted password in Database

2005-08-04 Thread Michael Konietzka
ps = conn.prepareStatement(principalsQuery); | ps.setString(1, username); | rs = ps.executeQuery(); | if( rs.next() == false ) | throw new FailedLoginException("No matching username found in Principals"); | Well, it seems it doesnt find the user "

[JBoss-user] [Security & JAAS/JBoss] - Re: custom security interceptor

2005-07-29 Thread Michael Konietzka
"colin_daly" wrote : Hi, | | | i then created a small jar containing my custom interceptor, put it in $JBOSS_HOME/lib and added it to JBOSS_BOOT_CLASSPATH | | | I guess i've got some classloading issue or my approach is wrong because when i try to start jboss i get the following e

[JBoss-user] [Security & JAAS/JBoss] - Re: UndeclaredThrowableException on client when recevieng F

2005-07-27 Thread Michael Konietzka
"Michael Konietzka" wrote : "Michael Konietzka" wrote : When my client tries to access a secured EJB with wrong credentials, the server throws a FailedLoginException as expected. But then the client throws UndeclaredThrowableException, because the method signature do

[JBoss-user] [Security & JAAS/JBoss] - Re: UndeclaredThrowableException on client when recevieng F

2005-07-25 Thread Michael Konietzka
"Michael Konietzka" wrote : When my client tries to access a secured EJB with wrong credentials, the server throws a FailedLoginException as expected. But then the client throws UndeclaredThrowableException, because the method signature doesn't know anything about

[JBoss-user] [Security & JAAS/JBoss] - UndeclaredThrowableException on client when recevieng Faile

2005-07-14 Thread Michael Konietzka
When my client tries to access a secured EJB with wrong credentials, the server throws a FailedLoginException as expected. But then the client throws UndeclaredThrowableException, because the method signature doesn't know anything about LoginException. >From my point of view, the containe