[Wicket-user] Size of the HTML response page

2007-02-05 Thread Sean Sullivan
I am building a web application with Wicket 1.3 and I want to be able determine the number of bytes in the HTML response. I know that I can inspect document.fileSize on the client, but what I'm looking for is to have access to this information on the server. Does Wicket's RequestCycle or

Re: [Wicket-user] Size of the HTML response page

2007-02-05 Thread Igor Vaynberg
see IResponseFilter and its javadoc -igor On 2/5/07, Sean Sullivan [EMAIL PROTECTED] wrote: I am building a web application with Wicket 1.3 and I want to be able determine the number of bytes in the HTML response. I know that I can inspect document.fileSize on the client, but what I'm

Re: [Wicket-user] Size of the HTML response page

2007-02-05 Thread Al Maw
Sean Sullivan wrote: I am building a web application with Wicket 1.3 and I want to be able determine the number of bytes in the HTML response. I know that I can inspect document.fileSize on the client, but what I'm looking for is to have access to this information on the server. Does