vote up 2 vote down star

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)
flag
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

1 Answer

vote up 4 vote down check

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

link|flag

Your Answer

Get an OpenID
or

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