Re: Sync up sessions

2012-06-21 Thread wicket user
Thank you guys , i got it what i was looking for. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Sync-up-sessions-tp4650134p4650175.html Sent from the Users forum mailing list archive at Nabble.com. ---

Re: Sync up sessions

2012-06-21 Thread robmcguinness
from outside Wicket in web app container: httpServletRequest.getSession().getAttribute("wicket:yourWicketFilterName:session"); the key might have changed in new wicket flavors -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Sync-up-sessions-tp4650134p4650154.htm

Re: Sync up sessions

2012-06-20 Thread Igor Vaynberg
wicket stores its Session object in the http session. so im not sure what you need to sync up, both wicket and spring have access to the same http session object. -igor On Wed, Jun 20, 2012 at 2:46 PM, wicket user wrote: > Yes taking Wicket Session and Spring Session and maintaining one session

Re: Sync up sessions

2012-06-20 Thread wicket user
Yes taking Wicket Session and Spring Session and maintaining one session across layers (presentation and business layers) -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Sync-up-sessions-tp4650134p4650141.html Sent from the Users forum mailing list archive at Nabble.co

Re: Sync up sessions

2012-06-20 Thread Igor Vaynberg
what do you mean by "sync up"? you want to retrieve http session inside wicket code? ((HttpServletRequest)getRequestCycle().getRequest().getContainerRequest()).getSession() -igor On Wed, Jun 20, 2012 at 10:57 AM, wicket user wrote: > how can we sync up the session with the existing session of

Re: Sync up sessions

2012-06-20 Thread wicket user
how can we sync up the session with the existing session of the business layer framework . -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Sync-up-sessions-tp4650134p4650137.html Sent from the Users forum mailing list archive at Nabble.com. --

Re: Sync up sessions

2012-06-20 Thread Thomas Götz
Great! And what would be your question, please? ;) -Tom Am Mittwoch, 20. Juni 2012 um 18:25 schrieb wicket user: > Hi, > > we are using Wicket as a Presentation layer, so we need to sync up with the > Session of the Business Layer framework, we kept this in the same WAR. > > > -- > V