Re: JigSaw in proxy, help with filters !!!

You need to read the HTTP spec (available from w3 website)
You will then see the protocol from a communication point
of view rather than a page browser view. Also get familiar with
HTML as raw text(inline images etc.)

You can identify particular users (such as teacher) by tracking
sessions (see cookies, HTTPSession etc).

run jigsaw with a "-trace" command line option to see details of
each http request on the standard out.

If you see just a "HEAD" request with a trivial response your
teacher will be viewing something from his local cache so you need
to be aware that not every content will pass via the server unless
you take steps to clear caches, disable caching, or convert HEAD
to GET unconditionally.

-- 
Christopher William Turner, http://www.cycom.co.uk/ "Serving fine Java
since 1996"

Received on Friday, 18 January 2002 04:50:54 UTC