Re: Gzip on netty

2009-12-09 Thread Thierry Boileau
Hi kiwi, the gzip encoding of the entity is available via the Encoder filter. For example, when declaring your application: public Restlet createInboundRoot() { Router router = new Router(getContext()); router.attachDefault(HelloWorldResource.class); [...]

Re: Gzip on netty

2009-12-09 Thread kiwionly
ok.. thx ! work now ! On Wed, Dec 9, 2009 at 5:58 PM, Thierry Boileau thierry.boil...@noelios.com wrote: Hi kiwi, the gzip encoding of the entity is available via the Encoder filter. For example, when declaring your application: public Restlet createInboundRoot() { Router router

Gzip on netty

2009-12-07 Thread kiwionly
hi, I just setup a rest app that use Netty as front end. however, it seem like is not g-zip enabled by default. how can i configure it and test it out ? kiwi happy hacking ! --