Ruby on Rails Sunday, December 30, 2012

Rajarshi wrote in post #1090682:
> Session is like an hash to store data with an application request.
>
> It should work if you store a session while login like
> session[:user]="Myname_123"
> it will renmain in the application until or unless you make it nil
> session[:user]=nil
>
> it is versy simple in consept
>
> now session id it is identification of an particular session
>
> and browser you know I use session in android emulator
>
> now your turn

Thanks Rajarshi for your reply!
But that's not my question is - let me put in other way:
If I am using sessionstore, the _session_id has to be passed through
browser cookie. Now, If I disable cookie in the browser the entire
system doesn't work. So, what is the other alternative I can pass the
session id through? if cookie is disabled.
Tried passing as request parameter, but that doesn't work. Any
suggestion plese?

--
Posted via http://www.ruby-forum.com/.

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

No comments:

Post a Comment