You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@wicket.apache.org by wicket user <sa...@live.com> on 2012/06/20 18:25:35 UTC

Sync up sessions

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. 


--
View this message in context: http://apache-wicket.1842946.n4.nabble.com/Sync-up-sessions-tp4650134.html
Sent from the Users forum mailing list archive at Nabble.com.

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


Re: Sync up sessions

Posted by wicket user <sa...@live.com>.
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.

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


Re: Sync up sessions

Posted by robmcguinness <ro...@gmail.com>.
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.html
Sent from the Users forum mailing list archive at Nabble.com.

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


Re: Sync up sessions

Posted by Igor Vaynberg <ig...@gmail.com>.
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 <sa...@live.com> wrote:
> 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.com.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>

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


Re: Sync up sessions

Posted by wicket user <sa...@live.com>.
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.com.

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


Re: Sync up sessions

Posted by Igor Vaynberg <ig...@gmail.com>.
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 <sa...@live.com> wrote:
> 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.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>

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


Re: Sync up sessions

Posted by wicket user <sa...@live.com>.
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.

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


Re: Sync up sessions

Posted by Thomas Götz <to...@richmountain.de>.
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. 
> 
> 
> --
> View this message in context: http://apache-wicket.1842946.n4.nabble.com/Sync-up-sessions-tp4650134.html
> Sent from the Users forum mailing list archive at Nabble.com.
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
> 
>