What are the ip addresses and server names of the two boxes? Are you trying to access the Jboss server by IP address?
Possibly the server is replying using a computer name and this cannot be resolved in DNS. This can be fixed by starting the server with --host ip as parameter and making sure that hostname does not resolve to that ip address (but only localhost). You can alwyas telnet to port 1099 on your JBoss server to check what JBoss is returning when trying to do a jndi lookup. However, I have the impression you are using a tier too much. Your app would also benifit a lot from using the embedded tomcat (in JBoss). This way, there are no serialization costs (if you configure it right) and you can gain a lot of speed. Joachim View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867497#3867497 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3867497 ------------------------------------------------------- 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 [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
