aspose file tools
The moose likes Servlets and the fly likes Why no HttpServletReq on doFilter? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Servlets
Reply Bookmark "Why no HttpServletReq on doFilter?" Watch "Why no HttpServletReq on doFilter?" New topic
Author

Why no HttpServletReq on doFilter?

Max Tomlinson
Ranch Hand

Joined: Jul 17, 2001
Posts: 364
Seems odd (to me anyway) that doFilter would not take HttpServletRequest as input...aren't most filters going to apply to Http?
--->public void doFilter(
ServletRequest req,
ServletResponse resp,
FilterChain chain)
throws ServletException, IOException {

So if, for example, to get pathInfo, I have test for instanceof HttpServletRequest, then cast to it, just to get some basic info.
Or am I missing something?
thanks,
max
Steve Leach
Ranch Hand

Joined: Sep 24, 2003
Posts: 46
Filters aren't Http specific. If you *know* that you are only going to get HttpServletRequests (which is reasonable) then you are safe to cast without checking.
Max Tomlinson
Ranch Hand

Joined: Jul 17, 2001
Posts: 364
OK, thanks.
Where would I want to use a non-http filter?
Max
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Why no HttpServletReq on doFilter?
 
Similar Threads
accessing a session attribute from a class that implements Filter
Filter Issue
LoginFilter & j_security_check
setting an object in session using Filter
If anybody can answer these two questions?