JAX-RPC 2.0 EA on JWSDP 1.5 - Install instructions
Posted by arungupta on April 26, 2005 at 4:57 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. This blog tells you how to install JAX-RPC 2.0 EA over JWSDP 1.5. The main advantage of being able to install over an existing JWSDP 1.5 installation is that you can alternatively use Tomcat as your container, in addition to Sun's Application Server. Theoretically, you should get support for Sun Java System Web Server as well, but I've not verified that yet.
Lets say JAX-RPC 2.0 EA bundle is installed in JAXRPC_HOME directory, JWSDP 1.5 is installed in JWSDP_HOME directory, and Tomcat is installed in TOMCAT_HOME directory.
Here are the steps involved to install JAX-RPC 2.0 on JWSDP 1.5:
- Download this script in JAXRPC_HOME.
- Go to JAXRPC_HOME directory and invoke
JWSDP_HOME/apache-ant/bin/ant -f istackonjwsdp.xml install
- jwsdpontomcat.[bat or sh extension depending upon your platform] TOMCAT_HOME
<target name="deploy">
<!-- copy file="${build.war.home}/jaxrpc-${ant.project.name}.war"
todir="${as.home}/domains/${domain}/autodeploy"/ -->
<property environment="env"/>
<copy file="${build.war.home}/jaxrpc-${ant.project.name}.war"
todir="${env.CATALINA_HOME}/webapps"/>
</target>
To develop, deploy and invoke the samples, you need to use the Ant that is installed in TOMCAT_HOME as part of JWSDP installation.
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. Related Topics >>
Blog Links >>
- Login or register to post comments
- Printer-friendly version
- arungupta's blog
- 1095 reads





