2 Replies Latest reply on Mar 4, 2004 11:44 PM by harshi2003

    problem with jboss all server

    harshi2003

      In my application i am using jboss all server. the application access jms queues. say sever ip address is 192.168.1.43. when if i sent a request to 192.168.1.34(some other address) also it sents requests to the queue in jboss server 192.168.1.43. this problem arise when use the all server. if it default server this problem doesn't come. since i am deploying some web services i need to use all server.

      please help me to solve this problem.

      thanks in advance.

        • 1. Re: problem with jboss all server

          This sounds like a problem with your JNDI usage.

          In the all server there is HAJNDI which lets you discover any server
          running JBoss if the initial lookup fails.

          Try adding the following to your jndi.properties
          jnp.disableDiscovery=true
          see what happens.

          Also, Queues don't have an address, ConnectionFactorys do.
          Messages are sent to wherever you got the ConnectionFactory from.

          Regards,
          Adrian

          • 2. Re: problem with jboss all server
            harshi2003

            Thank you very much.

            when i change the jndi properties the problem solved.