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 pages that I get session
closed from is Subscription Page and when it displays my search results.



--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Browser-Back-Button-Question-tp4658397p4659247.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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: 
http://apache-wicket.1842946.n4.nabble.com/Browser-Back-Button-Question-tp4658397p4659241.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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?
3. Easy way to hunt down the root cause?



--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Browser-Back-Button-Question-tp4658397p4659217.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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
embedded Hibernate Session.




-
-- 
Regards, 
Hans 

http://cantaa.de 

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Browser-Back-Button-Question-tp4658397p4659180.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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 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 I'm not sure, but the top error is hibernate.



 --
 View this message in context:
 http://apache-wicket.1842946.n4.nabble.com/Browser-Back-Button-Question-tp4658397p4658863.html
 Sent from the Users forum mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




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 I'm not sure, but the top error is hibernate.



--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Browser-Back-Button-Question-tp4658397p4658863.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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?



--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Browser-Back-Button-Question-tp4658397p4658689.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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 successful for
some reason.
Check your server logs.


 I'm not understanding why that is. I understand that wicket keeps version
 of
 your page which is why you have ?# at the end of your webpage link, is its


?# is to show you the same instance of the page when you use F5/Refresh
buttons.


 something with my server setup where I'm expiring my session too quickly?
 My
 tomcat manager page says that I expire my sessions  30 minutes.

 Thanks!
 David



 --
 View this message in context:
 http://apache-wicket.1842946.n4.nabble.com/Browser-Back-Button-Question-tp4658397.html
 Sent from the Users forum mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




-- 
Martin Grigorov
Wicket Training  Consulting
http://jWeekend.com http://jweekend.com/