Does any one know how to add axis to web application in tomcat, instead of separate Axis deployment on tomcat.
Thanks.
Sithu
-
How to embed Axis into Web application????? (1 messages)
- Posted by: sithu aung
- Posted on: April 26 2005 19:08 EDT
Threaded Messages (1)
- How to embed Axis into Web application????? by Clive Brettingham-Moore on April 26 2005 20:56 EDT
-
How to embed Axis into Web application?????[ Go to top ]
- Posted by: Clive Brettingham-Moore
- Posted on: April 26 2005 20:56 EDT
- in response to sithu aung
Do you meana web service endpoint as another servlet:
simply add the axis jars to the war and declare an axis servlet:
<servlet>
<description>Axis web services servlet</description>
<display-name>Apache-Axis Servlet</display-name>
<servlet-name>AxisServlet</servlet-name>
<servlet-class>org.apache.axis.transport.http.AxisServlet</servlet-class>
</servlet>
the server-config.xml can just be put in the WEB-INF dir
There is some fun to be had with the mapping, depending on what you want to do.
Taking a look at the axis deployment in toe distribution is probably a good start.