Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Tomcat 5.5 and 6 now use the same installation instructions

...

Assuming you have a normal working Tomcat 6.x or 5.5 installation:

Tomcat 6.x

  1. Download openejb.war
  2. Copy openejb.war to ${catalina.base}/webapps/openejb.war (Note: the file must be named openejb.war)
  3. Start Tomcat if it is not already running
  4. (optional) Visit http://localhost:8080/openejb/installer and click the 'install' button

Tomcat 5.5

  1. Download openejb.war
  2. Copy openejb.war to ${catalina.base}/server/webapps/openejb.war (Note: the file must be named openejb.war)
  3. Create a file ${catalina.base}/conf/Catalina/localhost/openejb.xml with the following contents: Code Blockxmlxml
    
    <Context path="/openejb" docBase="${catalina.home}/server/webapps/openejb"
            privileged="true" antiResourceLocking="false" antiJARLocking="false"/>
    
    Restart Tomcat

Examples, Tutorials and Tests

...