Brilliant..
The more I use Restlet the more I am liking it indeed.
Now does Restlet has a framework to take care of Gzip encoding results when the
Request headers indicate that the request is from a client that supports this
encoding (all modern browsers do)
> I've been trying to add Last-Modified Header via the following code in a
> Filter afterHandle method
>
> Form responseHeaders = (Form)
> response.getAttributes().get("org.restlet.http.headers");
>
> if (responseHeaders == null)
> {
> responseHeaders = new Form();
> response.getAttributes().put("org.restlet.http.headers",
> responseHeaders);
> }
> responseHeaders.add("entity.modificationDate", "Sun, 06 Nov 2005 14:59:42
> GMT");
>
>
> However the header in the HTTP Response is not "Last-Modified" as I would
> have expected, rather a custom header
>
> "entity.modificationDate: Sun, 06 Nov 2005 14:59:42 GMT"
>
> Quick response would be much appreciated
------------------------------------------------------
http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2360997