$ cd $CATALINA_HOME/webapps
$ jar -xvf openejb-loader-1.0-SNAPSHOT.war WEB-INF/web.xml
...edit WEB-INF/web.xml...
$ jar -uvf openejb-loader-1.0-SNAPSHOT.war WEB-INF/web.xml
$ rm -rf WEB-INF
or
c:/> cd %CATALINA_HOME%/webapps
%CATALINA_HOME%/webapps> jar -xvf openejb-loader-1.0-SNAPSHOT.war
WEB-INF/web.xml
...edit WEB-INF/web.xml...
%CATALINA_HOME%/webapps> jar -uvf openejb-loader-1.0-SNAPSHOT.war
WEB-INF/web.xml
%CATALINA_HOME%/webapps> rmdir /S /Q WEB-INF
* Create the _temp_ directory under Tomcat's home directory
{warning}
This is because the beans that's been successfully validated are deployed.
During validation OpenEJB creates temporary files under the _temp.dir_
directory, which is overriden by Tomcat to its temp directory.
Unfortunatelly, the directory doesn't exist and needs to be created
manually.
{warning}
* Deploy your webapps that are using the beans deployed onto OpenEJB
* Start up Tomcat and have fun with the EJBs