Re: Browser Back Button Question

2013-06-05 Thread dhongyt
I have such weird results too. In Chrome Subscription Page would give me the session closed issue after three clicks back, but then on a recent to the Download Page it would give me a session closed also. Page session count seems to skip by two. In Firefox Page session count is normal. Only

Re: Browser Back Button Question

2013-06-04 Thread dhongyt
Is it a serialized object on the page? Or is it a serialized object on the session object. I have tried everything from removing the ProductAPI out. Currently everything that is in my Session Service object should be serialized I believe. -- View this message in context:

Re: Browser Back Button Question

2013-06-03 Thread dhongyt
I think maybe it is because I have objects in my session service that connect to the hiberlayer, to be more specific my Product API is a class that talks with the hiberlayer. 1. Does that mean that I want to make my Product APIobject transient? 2. If an object implements serializable is that bad?

Re: Browser Back Button Question

2013-05-31 Thread Hans Lesmeister 2
Hi, dhongyt wrote I'm wondering if its because of hibernate? Its trying to get the query of the page to display but the query has been closed? You have serialized an object which contains properties proxied by Hibernate. On deserializing, the proxy tries to resolve with the now closed

Re: Browser Back Button Question

2013-05-30 Thread dhongyt
Are you telling me I should trying and stacktrace my pages or get more details? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Browser-Back-Button-Question-tp4658397p4659172.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Browser Back Button Question

2013-05-20 Thread Paul Bors
StackTrace? ~ Thank you, Paul Bors On Thu, May 16, 2013 at 10:36 AM, dhongyt davidhtr...@gmail.com wrote: After two or three back button on the browser an error message displays session closed. The error returned is a bit confusing: I'm wondering if its because of hibernate? Its

Re: Browser Back Button Question

2013-05-16 Thread dhongyt
After two or three back button on the browser an error message displays session closed. The error returned is a bit confusing: I'm wondering if its because of hibernate? Its trying to get the query of the page to display but the query has been closed? It also talks about errors with wicket to so

Re: Browser Back Button Question

2013-05-09 Thread dhongyt
Hey Martin, I took a look at my catalina.out file and haven't noticed any errors. I have changed my code from to It look like the back button worked but then I noticed that if I went back twice it also gave me a session closed. And nothing on the catalina.out log. Anyone have this issue?

Re: Browser Back Button Question

2013-04-29 Thread Martin Grigorov
Hi, On Mon, Apr 29, 2013 at 10:07 PM, dhongyt davidhtr...@gmail.com wrote: Hey guys, My question today is that when I click on a page link on my wicket application and hit back on the web browser I get a results of Session Closed. Most probably the saving of the page in the store was not