Re: [JBoss-user] Load-Balancing Problems

2003-08-18 Thread Simone Milani
Hi Sacha, Thanks again! Yes is very easy to check it provided that you know how to check it :) Cheers Simone - Original Message - From: Sacha Labourey [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, August 16, 2003 7:20 AM Subject: RE: [JBoss-user] Load-Balancing Problems

RE: [JBoss-user] Load-Balancing Problems

2003-08-18 Thread Sacha Labourey
] On Behalf Of Simone Milani Sent: lundi, 18. août 2003 18:16 To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] Load-Balancing Problems Hi Sacha, Thanks again! Yes is very easy to check it provided that you know how to check it :) Cheers Simone - Original Message

RE: [JBoss-user] Load-Balancing Problems

2003-08-18 Thread Kevin Duffey
PROTECTED] Subject: Re: [JBoss-user] Load-Balancing Problems Hi Sacha, Thanks again! Yes is very easy to check it provided that you know how to check it :) Cheers Simone - Original Message - From: Sacha Labourey [EMAIL PROTECTED] To: [EMAIL PROTECTED

RE: [JBoss-user] Load-Balancing Problems

2003-08-18 Thread Sacha Labourey
Milani Sent: lundi, 18. août 2003 18:16 To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] Load-Balancing Problems Hi Sacha, Thanks again! Yes is very easy to check it provided that you know how to check it :) Cheers Simone - Original Message

RE: [JBoss-user] Load-Balancing Problems

2003-08-16 Thread Sacha Labourey
Thanks very much! It works. Would it not be a good idea then to throw an error when using a clustered declared EJB within a non cluster enabled container? Well, what is not easy is how to determine that a stack is a non-clustered stack? You could implement your own invoker, etc. and this

Re: [JBoss-user] Load-Balancing Problems

2003-08-15 Thread Simone Milani
Labourey [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, August 15, 2003 12:57 PM Subject: RE: [JBoss-user] Load-Balancing Problems OK, so check your JBoss.xml file as in the current setup you are *not* using clustering: the invoker is the standard JRMP invoker, not the HA-JRMP invoker. Cheers

RE: [JBoss-user] Load-Balancing Problems

2003-08-15 Thread Sacha Labourey
: vendredi, 15. août 2003 11:46 To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] Load-Balancing Problems Hi Sacha, It is a SLSB and here is the stack trace of the call: 10:43:21,773 ERROR [LogInterceptor] RuntimeException: java.lang.RuntimeException: Test

Re: [JBoss-user] Load-Balancing Problems

2003-08-15 Thread Simone Milani
Hi Sacha, It is a SLSB and here is the stack trace of the call: 10:43:21,773 ERROR [LogInterceptor] RuntimeException: java.lang.RuntimeException: Test at com.db.gm.mercury.ejb.session.test.TestBean.getPrimeAtPosition(Unknown Source) at

RE: [JBoss-user] Load-Balancing Problems

2003-08-15 Thread Sacha Labourey
: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Simone Milani Sent: vendredi, 15. août 2003 14:41 To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] Load-Balancing Problems Hi Sasha, That was what I thought as well at some point but my jboss.xml is the following: jboss

RE: [JBoss-user] Load-Balancing Problems

2003-08-15 Thread Sacha Labourey
Hello Simone, Apologies if I am confusing things. I have a Stateless Session EJB declared now as clusteredtrue/clustered. The code I am running is the following: TestHome testHome = (TestHome) javax.rmi.PortableRemoteObject.narrow( ctx.lookup(EJB/Session/Test),

Re: [JBoss-user] Load-Balancing Problems

2003-08-15 Thread Simone Milani
); } And all the calls get sent to the same member. Any idea? Thanks Simone - Original Message - From: Sacha Labourey [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 14, 2003 5:07 PM Subject: RE: [JBoss-user] Load-Balancing Problems What kind of EJB

Re: [JBoss-user] Load-Balancing Problems

2003-08-15 Thread Simone Milani
15, 2003 1:58 PM Subject: RE: [JBoss-user] Load-Balancing Problems Yes, you have changed the configuration-name and build your own which is now incompatible with clustering! You should extend the clustered configuration when building Standard Stateless SessionBean with Security, not inherits from

Re: [JBoss-user] Load-Balancing Problems

2003-08-14 Thread Adrian Brock
You are probably doing sessionHome.create() on every request? This creates a new remote interface proxy, which will round-robin all servers. However if you only do one invocation it will always use the first server and never get to the others. You can get similar problems with other patterns in

Re: [JBoss-user] Load-Balancing Problems

2003-08-14 Thread Simone Milani
Opppss, sorry. I had the bean tagged as clusteredfalse/clustered. Thanks Simone - Original Message - From: Simone Milani [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 14, 2003 3:51 PM Subject: Re: [JBoss-user] Load-Balancing Problems Hi, I use 3.2.2RC2

RE: [JBoss-user] Load-Balancing Problems

2003-08-14 Thread Srinivas Malladi
I'm getting same problem. Is round-robin loadbalance works or not? -Original Message- From: Christofer Dutz [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 12, 2003 6:18 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] Load-Balancing Problems I am using 3.2.2RC2 ... Chris Sacha

Re: [JBoss-user] Load-Balancing Problems

2003-08-14 Thread Christofer Dutz
I am using 3.2.2RC2 ... Chris Sacha Labourey wrote: ... Or use 3.2.x which removes this issue. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Adrian Brock Sent: mardi, 12 août 2003 17:50 To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] Load

RE: [JBoss-user] Load-Balancing Problems

2003-08-14 Thread Sacha Labourey
What kind of EJB is that? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Simone Milani Sent: jeudi, 14. août 2003 16:52 To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] Load-Balancing Problems Hi, I use 3.2.2RC2 and the default config

Re: [JBoss-user] Load-Balancing Problems

2003-08-14 Thread Nicholas
only one and do round robin after that. Is it possible? Thanks! Simone - Original Message - From: Sacha Labourey [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 8:28 AM Subject: RE: [JBoss-user] Load-Balancing Problems Then that is very strange

Re: [JBoss-user] Load-Balancing Problems

2003-08-14 Thread Simone Milani
! Simone - Original Message - From: Sacha Labourey [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, August 13, 2003 8:28 AM Subject: RE: [JBoss-user] Load-Balancing Problems Then that is very strange as with 3.2.x you should be able to re-create your home/remote and keep balancing

[JBoss-user] Load-Balancing Problems

2003-08-14 Thread Christofer Dutz
Hi, I am having some Problems with load-balancing in JBoss. All Beans are set to use the RoundRobin Load-Balancing strategy and the cluster seems to work like a charm. I setup the HA-JNDI to work on Port 1100 and setup the client to use this port. Everything seems to work fine, except one

RE: [JBoss-user] Load-Balancing Problems

2003-08-14 Thread Sacha Labourey
... Or use 3.2.x which removes this issue. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Adrian Brock Sent: mardi, 12 août 2003 17:50 To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] Load-Balancing Problems You are probably doing

RE: [JBoss-user] Load-Balancing Problems

2003-08-14 Thread Sacha Labourey
] Subject: Re: [JBoss-user] Load-Balancing Problems I am using 3.2.2RC2 ... Chris Sacha Labourey wrote: ... Or use 3.2.x which removes this issue. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Adrian Brock Sent: mardi, 12 août 2003 17