How do I disable GZip compression in Wicket 6?

2013-10-01 Thread Marcus Ludvigsson
Hi, In Wicket 1.4.22 I used to be able to disable GZip compression like this: WebApplication.getResourceSettings().setDisableGZipCompression(true); That way seems to be removed in 6 and I can't find anything in the migration guides regarding this. Have anyone else stumbled upon this and

Re: How do I disable GZip compression in Wicket 6?

2013-10-01 Thread Martin Grigorov
Hi, This setting has been removed with 1.5.0. Wicket does not compress the response anymore. If compression is needed then the application can use either web container's settings or a custom Servlet Filter. So you have nothing to do. Just remove this line from your config. On Tue, Oct 1, 2013

RE: How do I disable GZip compression in Wicket 6?

2013-10-01 Thread Paul Bors
Hey Karl, Would you kindly update the migration wiki page for the rest of us? ~ Thank you, Paul Bors -Original Message- From: Martin Grigorov [mailto:mgrigo...@apache.org] Sent: Tuesday, October 01, 2013 10:20 AM To: users@wicket.apache.org Subject: Re: How do I disable GZip