Displaying 1 result from an estimated 1 matches for "create_xml_file_obj".
2010 Jun 02
10
Session, memory_store & NoMethodError
...e" and I''ve configured
my environement.rb to use the memory store :
[i][b]config.action_controller.session_store = :memory_store[/b][/i]
This is my [b]injection_controller.rb[/b] session key/value affectation
code :
[code]def analysis_repository
.....
session[:list_xml] = create_XML_file_obj(false)#put an array of
XmlFile objects in the session
render :update do |page|
page[:liste_fichiers_xml].replace_html render(:partial =>
"infos_fichiers_xml")
page[:liste_fichiers_xml].show
end
end[/code]
No error are generated when I access to session...