1 Reply Latest reply on Dec 11, 2001 5:23 PM by azakkerman

    Going from Local host to distributed

    bhawks

      Hi,

      I have created a number of EJB's under JBoss
      but only with the client and the server running
      on the same machine.

      Could anyone tell me what must be configured and
      in which files, to run my client on a seperate
      networked machine.

      Regards

      Steve

        • 1. Re: Going from Local host to distributed
          azakkerman

          Just configure your client machine to have jndi.properties to point to the host where JBoss runs by setting
          java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
          java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces
          java.naming.provider.url=yourhostname

          Also make sure all the necessary jars from JBoss/lib directory are available on the client machine.

          Anatoly