Im not sure that its possible to do what I want to accomplish. I want to map one single servlet to two different URL.
I want both http://10.0.0.1/a and http://10.0.0.1/b to map to the same servlet.
I know its possibe to do the following in web.xml;
<servlet-mapping>
<servlet-name>ServletName</servlet-name>
<url-pattern>/b</url-pattern>
</servlet-mapping>
But that enables the following url: http://10.0.0.1/ContextPath/b/