Frederick Cheung wrote: > The details have changed between rails 2.2 and 2.3, in 2.2 it was the > old cgi interface, in 2.3 it's the new rack interface - you'll need to > instantiate the appropriate subclass of ActionController::SessionStore
This helps, thanks. Trying to look through the source and googling, I did discover that this changed very much between 2.2 and 2.3, I might need to write two versions of my code. But since there is an abstract model for a session store, it must be possible for me to access the session store and read and write session info without knowing about the black box internals. Once I've gotten the appropriate ActionController::SessionStore... what the heck do I do with it in order to read or write session data? Unless the specs for how to write a session store have changed in 2.3, it may be my code doesn't need to be different for 2.3. But if it does, I can deal with that too. Still having trouble figuring out what methods to call on a session store once I've gotten it to read or write data. -- 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 [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

