I've read about mapping via web.xml, done with the servlet element but without the servlet-mapping element (JSP The complete reference, by Hanna Phil).
<servlet>
<servlet-name>MyServlet</servlet-name>
<servlet-class>MyServlet</servlet-class>
</servlet>
This way the servlet is supposed to be mapped to /context/servlet/MyServlet.
I cannot reproduce this behavior in a Glassfish 3 that is a container java EE 6 compliant.
Is it a not-more available feature? I haven't find info on this feature or of it's removal.
thanks