Friends:
I have a JAXWS webservice developed in WebSphere 7.0. It is working there. The stack in Websphere is Axis2.0
I wrote a POJO
Java class, annotated with the @WebService annotation and then I did a wsgen to generate the necessary artifacts and created the war file.
The imp thing is that web.xml does NOT have any
servlets in it or listeners defined.
However when I deploy that war file to
Tomcat 6.0.32 and then copy the axis2 jars to the WEB-INF\lib folder.
When I restart Tomcat, the WebService does not work.
What I am curious is, how come Websphere7, deploys the WebService on startup without any entires in web.xml but Tomcat refuses to do so ?
What am I missing ?
-Narahari