Re: [Stripes-users] Writing to response.writer is not working

2016-01-23 Thread Joaquin Valdez
Hi! Is this the same idea as this: https://stripesframework.atlassian.net/wiki/display/STRIPES/Wait+Page+for+Long+Events ? Joaquin > On Jan 23, 2016, at 10:52 AM, VANKEISBELCK Remi wrote: > > Hi again, > > Seems like a regular "long running job / polling" scenario. It can

Re: [Stripes-users] Writing to response.writer is not working

2016-01-23 Thread VANKEISBELCK Remi
Hi again, Seems like a regular "long running job / polling" scenario. It can be done with current Stripes version, even if it will be less performant if your http client is really non blocking, but that's another story. So here's how I'd do this. 1/ Server side In the ActionBean, I'd submit a

[Stripes-users] Writing to response.writer is not working

2016-01-23 Thread Ron King
Hi everyone, I want to write an html page back to the user at the very beginning of an ActionBean submit method. The method calls a web service that takes around a minute to respond, and I want to put up a message before the web service finishes. I'm on Tomcat 8. I tried flushing the writer, but