[jboss-user] [JBoss Portal] - Re: Custom JAAS login module

2007-09-19 Thread cgrahl
Hello, I changed my code as below: | public class TestLoginModule extends AbstractServerLoginModule { | | private String username = null; | | private Principal identity; | | private Object password; | | | public boolean login() throws LoginException { |

[jboss-user] [JBoss Portal] - Re: Custom JAAS login module

2007-09-19 Thread cgrahl
That solve the problem! Thank you very much! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4086053#4086053 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4086053 ___ jboss-user

[jboss-user] [JBoss Portal] - Users and groups

2007-09-19 Thread cgrahl
Hello, I have a custom JAAS login module works fine with JBossPortal. This login module authenticates on my system, using a webservice for that. Everything is ok. Or almost.. :-) Now i have this problem: In my system, i have tree users: user/user, admin/admin and foo/bar and the default

[jboss-user] [JBoss Portal] - Custom JAAS login module

2007-09-18 Thread cgrahl
Hello, I'm new to JBoss Portal, and i'm need to authenticate using my own user database. For testing purposes, i made a very simple Jaas login module. It so simple that it not even authenticates! :-) The login() method always returns true. I'm using it just to learn what configuration must be

[jboss-user] [Installation, Configuration Deployment] - Setting pool size for beans

2007-03-28 Thread cgrahl
Hello, Is there a way to set the pool size individually, per EJB? For example: stateless SB example.A: MinimunSize = 10, maximunSize=30 stateless SB example.B: MinimunSize=30, maximunSize=50 MDB example.C: MinimunSize=1, maximunSize=10 and so on.. I found only global settings, for all MDBs,

[jboss-user] [Clustering/JBoss] - Re: Clustered MDB load balance

2006-12-27 Thread cgrahl
Thank you for your response. Only more one question: It's possible to configure this pool size individually, per machine? Since this MDB is clustered, Jboss accepts individual configuration? Thank you, Carlos Augusto Grahl View the original post :

[jboss-user] [Clustering/JBoss] - Clustered MDB load balance

2006-12-26 Thread cgrahl
Hi, all! I have 2 machines in clustered environment. The cluster works fine. But I need to configure the MDB pool size individually, on each machine. For example: One machine (which is a little bit slow) must have only 10 instances of MDB A, and the other machine (which is fast) must have 30