<servlet-mapping>
<servlet-name>AxisServlet</servlet-name>
<url-pattern>/services/*</url-pattern>
</servlet-mapping>
So every request with "/services/*" would be passed to the AxisServlet,
right?
Right
Now how would the AxisServlet find the service / class that needs to be
invoked?
JWS files are found automatically; you don't have to do anything. For
services that are written in Java you need the server-config.wsdd file
in your WEB-INF directly. (Or alternately you can deploy the service
using as specified in the manual, but I just copied over my wsdd file).