Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

OpenEJB issues warnings when it works around a potential problem, encounters something it didn't expect, or when OpenEJB wants to let you know something may not work as you expected it.

The OpenEJB Remote Server is the default implementation of OpenEJB's ApplicationServer interface. It allows remote clients to access beans in OpenEJB over a network.

The JNDI names clients use to lookup beans from the Remote Server depends on the Deployment ID you gave the beans when you deployed them with the Deploy Tool .

OpenEJB itself is configured with the OpenEJB configuration file, which is extremely simple and self-documenting. This file is located at c:\openejb\conf\openejb.confxml.

OPTIONS

-h host

Binds the Remote Server to the specified host address. Default host address is 127.0.0.1.

-p port

Binds the Remote Server to the specified port. Default port is 4201.

-t int

Sets the number of concurrent threads the Remote server should use to service requests from clients. Default number of threads is 20.

-d dir

Sets the OPENEJB_HOME to the specified directory.

-l file

Sets the log4j configuration to the specified file.

-conf file

Sets the OpenEJB configuration to the specified file.

-version

Print the version.

-help

Print this help message.

-examples

Show examples of how to use the options.

--admin-ip

A comma delimited list of hosts and IP addresses that are allowed to administer this server.

--local-copy boolean

Instructs the container system whether or not marshal (copy) the parameters and return values on calls between beans. Default is true.

...