Hi,

I have two Jboss servers (A and B), one of which provides a service
to the other (e.g. jms q).
When I use a standalone jvm it connects to the jboss B jndi and everything 
works ok (using the initial context java.naming.provider.url property).
When I try to connect to jboss B from inside jboss A (in a jsp or startup code) 
it doesnt work, somehow the initial context I get back is the local one and not 
the remote one.

I tried to do the same with a datasource and got the same result.
I saw somewhere that there is a default behavior that if the url
is not successfully processed then the default goes back to localhost,
I just dont understand why it happens inside Jboss and doesnt happen on a 
regular JVM. 
How can I make this work ?

I'm using: Jboss 3.2.6, win2k, hsqldb (datasource db)

Code is:

        Hashtable env = new Hashtable();
        env.put(Context.PROVIDER_URL,"jnp://mypc:1099/");
        Context ctx = new InitialContext(env);
        x = ctx.lookup("java:/MyDS");

Any help will be appreciated,

thanks,
Auzi

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

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


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to