Re: [Dev] [Jaggery] Getting session variables by session id.

2015-02-14 Thread Asiri Liyana Arachchi
Hi Dakshika, Thanks for the info. That's what I wanted to know. Regards, On Thu, Feb 5, 2015 at 6:09 PM, Dakshika Jayathilaka daksh...@wso2.com wrote: Hi Asiri, AFAIK its not possible with current jaggery core. Current SessionHostObject doesn't expose method to retrieve Object itself.

Re: [Dev] [Jaggery] Getting session variables by session id.

2015-02-05 Thread Dakshika Jayathilaka
Hi Asiri, AFAIK its not possible with current jaggery core. Current SessionHostObject doesn't expose method to retrieve Object itself. Here is the code:

Re: [Dev] [Jaggery] Getting session variables by session id.

2015-02-04 Thread Damith Wickramasinghe
Hi Asiri, Please see the documentation below.[1] you should be able to access the session values using the given session id. [1] : http://jaggeryjs.org/documentation.jag?api=session Regards, Damith. On Wed, Feb 4, 2015 at 2:48 PM, Asiri Liyana Arachchi asiriw...@gmail.com wrote: Hi all, In

[Dev] [Jaggery] Getting session variables by session id.

2015-02-04 Thread Asiri Liyana Arachchi
Hi all, In php there is a way to access session variables using session id. [1] How can that be done in jaggery. In jaggery session id can be retrieved (session.getId() ) but using that couldn't find a way to access session variables. Appreciate if anybody can help me on this. Thanks [1]:

Re: [Dev] [Jaggery] Getting session variables by session id.

2015-02-04 Thread Asiri Liyana Arachchi
Hi Damith, Thanks for the reply. I've already read it. Using methods mention there it's possible to get the current session's values. Let's say for an example somehow I have two session ID's of two currently logged in users. I want to know if it's possible to access those users session data