Re: Servlet automatic invokation (or ISAPI filter concept)

On Sun, 7 Jun 1998, Ruby Salton wrote:

> Hi,
> Does the Jigsaw server support filtering requests like IIS - ISAPI
> filters?

Well, Jigsaw has is own way of doing filtering. There are two filtering
scheme, one for the client (proxy for example) and one for the server.

The one you want to use is the server-side filter.
Basically, there is an ingoing filter and an outgoing filter.
If the ingoing filter returns a reply, the processing is stopped (see
GenericAuthFilter).
Note also that filter can be aggregated, on the same protocol frame, or
inherited from the protocol frame of the parent resource (during the
lookup).
If you write your own filter you can do whatever you want in it, even call
a servlet if you want.
Regards,


      /\          - Yves Lafon - World Wide Web Consortium - 
  /\ /  \                Architecture Domain - Jigsaw
 /  \    \/\    
/    \   /  \   http://www.w3.org/People/Lafon - ylafon@w3.org    

Received on Monday, 8 June 1998 04:48:57 UTC