RE: [JBoss-user] HA JNDI trouble

2003-09-02 Thread Sacha Labourey
L PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Stefan Groschupf > Sent: mardi, 2. septembre 2003 16:41 > To: [EMAIL PROTECTED] > Subject: Re: [JBoss-user] HA JNDI trouble > > > Hi Sacha, > > I would say it is an easy task. > I wish to cluster 2 nodes in the int

Re: [JBoss-user] HA JNDI trouble

2003-09-02 Thread Stefan Groschupf
ssage- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Stefan Groschupf Sent: mardi, 2. septembre 2003 11:38 To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] HA JNDI trouble Hi Guys, i figure out that my HA JNDI was not started since there was an incompatibility between gnu.regex pa

RE: [JBoss-user] HA JNDI trouble

2003-09-02 Thread Sacha Labourey
heers, Sacha > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Stefan Groschupf > Sent: mardi, 2. septembre 2003 11:38 > To: [EMAIL PROTECTED] > Subject: Re: [JBoss-user] HA JNDI trouble > > > Hi Guys, > > i f

Re: [JBoss-user] HA JNDI trouble

2003-09-02 Thread Holger Baxmann
java.naming.provider.url=myserver.biz:1100 just guessing: should the url start with a perfix like "jnp://myserver.biz:1100" ?? bax my master has the last line not! The master starting well, since he is indenpendent. The slave start with this exception: 11:35:26,942 ERROR [JRMPInvoker] Starting

Re: [JBoss-user] HA JNDI trouble

2003-09-02 Thread Stefan Groschupf
Hi Guys, i figure out that my HA JNDI was not started since there was an incompatibility between gnu.regex package and the same but older package in an external component i have to use. However not its start and i get via binding manger an test setup running on my home w2k system. Last night i

RE: [JBoss-user] HA JNDI trouble

2003-09-02 Thread Sacha Labourey
Behalf Of > Andrew May > Sent: mardi, 2 septembre 2003 10:04 > To: [EMAIL PROTECTED] > Subject: Re: [JBoss-user] HA JNDI trouble > > > I've only played around with clusters, so I could be wrong, > but I think you need to access > HA-JNDI directly on the port it

Re: [JBoss-user] HA JNDI trouble

2003-09-02 Thread Andrew May
I've only played around with clusters, so I could be wrong, but I think you need to access HA-JNDI directly on the port it's bound to. If the object cannot be found in HA-JNDI it will look in the local JNDI. From the clustering docs: "When a remote client does a lookup through HA-JNDI, HA-JNDI

Re: [JBoss-user] HA JNDI trouble

2003-09-01 Thread Stefan Groschupf
Hi Bax, nice to hear you! ;) I use such an pattern and it is generated by Xdoclet. I use the BeanUtil classes. They make an normal remote lookup. As i understand the documentation i does not need an other lookup. Since the request will be forwarded to the HA JNDI. Isn't it? Stefan Holger Baxm

Re: [JBoss-user] HA JNDI trouble

2003-09-01 Thread Holger Baxmann
your setup reminds me on the Service Activator Pattern http://java.sun.com/blueprints/corej2eepatterns/Patterns/ServiceActivator.html in conjunction with Session Facade and Service Locator for decoupling the lookup and the do-something stuff. It could be more easy to solve the clustering jndi p