up vote 2 down vote favorite
share [g+] share [fb]

I am trying to deserialize an object from xml in ruby. Something simple like

u = User.new({:client_key => "Bar"})
v = User.new(u.to_xml)

I get an error NoMethodError: undefined method `stringify_keys!' for #String:0x20fc7cc>. I'm not sure what I have to do in order to get the string from xml to an object.

Update:
@avdi gave me the tip. I was expecting from_xml to be a self method. You have to create the object first.

v = User.new
v.from_xml(s)
link|improve this question
This is a Rails/ActiveRecord question, not a Ruby question (to_xml is not part of Ruby). Re-tagged accordingly. – Avdi Oct 28 '08 at 19:48
feedback

1 Answer

up vote 4 down vote accepted

A quick search turns up http://api.rubyonrails.org/classes/ActiveRecord/Serialization.html#M001420

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.