I think it is not possible as far as I know, perhaps if you do get a solution it would be very welcome.
The things you are asking are solved in an Spring MVC framework. There you can say a page like http://mysite/mycontext/mypage and notice that mypage may or may not have a suffix at all, thus, it seems as the page is being serviced by a pure servlet. Or you can put an .htm suffix and make web-search robots like google into thinking it is a pure HTML site and hiding the technology it was built with. ________________________________ De: Zheng, Xiahong [mailto:[EMAIL PROTECTED] Enviado el: Monday, December 17, 2007 4:26 PM Para: MyFaces Discussion Asunto: How do I configure JSF application to use URLs without a suffix? I know it must be possible. But I don't seem to be able to get it to work. It looks like if you use suffix based URL mapping in your web.xml like the following <servlet-mapping> <serlvet-name>Faces Servlet</servlet-name> <url-pattern>*.faces</url-pattern> </servlet-mapping> You URL will have to end up with .faces suffix like /myapp/welcome.faces. In this case, the suffix will be replaced by .jsp before rendering. I would like to use path based mapping such as <servlet-mapping> <serlvet-name>Faces Servlet</servlet-name> <url-pattern>/sample/*</url-pattern> </servlet-mapping> and be able to use URL like /myapp/sample/welcome. However, it does not work, because in this case, there is no attempt by the framework to add the default suffix .jsp to the viewId, as a result, I got a 404 resource not available error. La informacin de este mensaje y sus anexos son propiedad exclusiva de Axede S.A. Es nicamente para el uso del destinatario intencional y pueden contener informacin de carcter privado o confidencial. Le informamos que cualquier revisin, retransmisin, divulgacin, copia o uso indebido del mismo est estrictamente prohibida y ser sancionada legalmente. Information contained in this message and every attachment is property of Axede S.A. Only the destiny user is able to make use of the data here contained, which is private and/or confidential. Any revision, broadcasting, spreading, copy or illegal use of this information is strictly prohibited and will be sanctioned by legal means.

