Howto : Extension file mapping ?

2001-01-14 Thread Shahed Ali
Hi, Can someone please give me a quick overview on how extension file mapping works ? What I really want to know what info does the servlet get when it is invoked by a file mapping ? Thanks Shahed - To unsubscribe, e-mail:

Re: Howto : Extension file mapping ?

2001-01-14 Thread Barry Fritchman
The servlet gets the usual references to a HttpServletRequest and HttpServletResponse, but it can get the full path of the file it is being asked to serve using the expression getServletContext().getRealPath(request.getServletPath()), where 'request' is the HttpServletRequest passed to doGet() or