Hi George. Probably need to know more about how your system is set up.
Did you run the test in the exact same environment as you are seeing the problem? (same codebase different page?) Are you seeing the problem only in a production environment? Are you running apache mod_proxy, or something else in front of your app? Have you tried a different browser? Anything interesting in the headers recorded in Charles Proxy? On Tue, Apr 16, 2013 at 11:08 AM, George Christman <gchrist...@cardaddy.com>wrote: > I ended up setting up a test app to learn that the issue was on my end > and that the test app worked as intended. I setup Charlies Proxy and > discovered after 30.0 seconds exact, it fails the request and creates > a new request. I've disabled all my JS, css and can not figure out the > underlying issue. Does anybody happen to know what might be happening? > > On Mon, Apr 15, 2013 at 7:56 PM, Cezary Biernacki <cezary...@gmail.com> > wrote: > > Are you sure that the second request is not generated by e.g. a reverse > > proxy? > > > > > > On Mon, Apr 15, 2013 at 7:59 PM, George Christman > > <gchrist...@cardaddy.com>wrote: > > > >> Hello, I have a long running process in my onSuccess method. I'm > >> noticing my onActivate and onValidate methods are being called > >> multiple times before the onSuccess method has actually completed. I > >> was able to successfully reproduce this using Thread.sleep in the > >> following example. Does anybody know why this my be happening? > >> > >> onActivate() { > >> System.out.println("onActivate"); > >> } > >> > >> onValidate() { > >> System.out.println("onValidate"); > >> } > >> > >> Object onSuccess() throws Exception { > >> if(ApplicationActionEnum.GENERATE_PO == this.action) { > >> try { > >> Thread.sleep(60000); > >> } catch (Exception e) { > >> > >> } > >> } > >> System.out.println("onSuccess"); > >> return Index.class; > >> } > >> > >> My output. > >> > >> onActivate > >> pnValidate > >> onActivate > >> pnValidate > >> OnSuccess > >> > >> --------------------------------------------------------------------- > >> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > >> For additional commands, e-mail: users-h...@tapestry.apache.org > >> > >> > > > > -- > George Christman > www.CarDaddy.com > P.O. Box 735 > Johnstown, New York > > --------------------------------------------------------------------- > To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org > For additional commands, e-mail: users-h...@tapestry.apache.org > >