Re: Live-Class reloading for rest services.

2010-10-27 Thread Howard Lewis Ship
Response.java: /** * Invoked to indicate that the response content is either already compressed, or is not compressable. * * @since 5.2.1 */ void disableCompression(); On Wed, Oct 27, 2010 at 2:31 AM, Moritz Gmelin wrote: > Thanks > > http://jira.codehaus.org/browse/

Re: Live-Class reloading for rest services.

2010-10-27 Thread Moritz Gmelin
Thanks http://jira.codehaus.org/browse/TYNAMO-64 Regards Moritz Am 27.10.2010 um 10:57 schrieb Alejandro Scandroli: > Hi Moritz > > If you have GZIP disabled > (configuration.add(SymbolConstants.GZIP_COMPRESSION_ENABLED, > "false");) you can definitively use it as a RequestFilter. It will > w

Re: Live-Class reloading for rest services.

2010-10-27 Thread Alejandro Scandroli
Hi Moritz If you have GZIP disabled (configuration.add(SymbolConstants.GZIP_COMPRESSION_ENABLED, "false");) you can definitively use it as a RequestFilter. It will work fine and it will reload your classes. If you file a JIRA issue I can provide you with a patch to try. Alejandro. On Wed, Oct 27

Re: Live-Class reloading for rest services.

2010-10-27 Thread Moritz Gmelin
I don't know whether this is a bug or not. I've seen that you explicitly moved your RequestFilter before GZIP. Probably for a reason. I had no problem changeing the filter to be a RequestFilter (instead of a ServletRequestFilter) and push it further down the request queue. GZIP is disabled in o

Re: Live-Class reloading for rest services.

2010-10-26 Thread Alejandro Scandroli
Hi Moritz Again the issue is that the RESTEasy filter is an HttpServletRequestFilter not a RequestFilter, so the CheckForUpdatesFilter (RequestFilter) it's never called and the loader never knows that it needs to reload the services. I could make the RESTEasy filter work as a RequestFilter but th

Re: Live-Class reloading for rest services.

2010-10-26 Thread Thiago H. de Paula Figueiredo
On Tue, 26 Oct 2010 10:45:55 -0200, Moritz Gmelin wrote: Hi, Hi! is there a way to extend Live Class reloading to other claasses that are not pages, components or service implementations? As far as I know, no, as it depends on class transformations. Is there some contribution I have t

Live-Class reloading for rest services.

2010-10-26 Thread Moritz Gmelin
Hi, is there a way to extend Live Class reloading to other claasses that are not pages, components or service implementations? I'm especially interrested in enabling Live Reloading for all classes under TAPESTRY_APP_PACKAGE_PARAM.rest.* Is there some contribution I have to make to enable live