JAX-RPC 2.0 EA on Tomcat 5.x - Install instructions
Posted by arungupta on May 4, 2005 at 4:07 PM EDT
JAX-RPC 2.0 EA was released few days ago and was supported only on Sun Java System App Server 8.1 container. I posted instructions on how to install JAX-RPC 2.0 EA over JWSDP 1.5. This blog tells you how to install JAX-RPC 2.0 EA over a standalone Tomcat 5.x. I tested these instructions with Tomcat 5.5.9.
Lets say JAX-RPC 2.0 EA bundle is installed in JAXRPC_HOME directory, Ant is installed in ANT_HOME directory, and Tomcat is installed in TOMCAT_HOME directory.
Make sure TOMCAT_HOME environment variable is set to your Tomcat installation directory.
Here are the steps involved to install JAX-RPC 2.0 on Tomcat 5.5.x:
- Download this script in JAXRPC_HOME.
- Go to JAXRPC_HOME directory and invoke
ANT_HOME/bin/ant -f istackontomcat.xml install
<target name="deploy">
<!-- copy file="${build.war.home}/jaxrpc-${ant.project.name}.war"
todir="${as.home}/domains/${domain}/autodeploy"/ -->
<copy file="${build.war.home}/jaxrpc-${ant.project.name}.war"
todir="${env.TOMCAT_HOME}/webapps"/>
</target>
Start the Tomcat container by invoking TOMCAT_HOME/bin/startup.[sh or bat], and follow the rest of instructions from the samples documentation. All your samples can now be deployed on Tomcat container, in addition to Sun's Application Server.
In order to run them on Application Server again, you need to revert the change made above in the deploy target.
Hope you find this useful.
Blog Links >>
- Login or register to post comments
- Printer-friendly version
- arungupta's blog
- 1075 reads





