vote up 0 vote down star

I have several ActiveResource model in my project. There was so strange to me when I called to_xml on my ActiveResource. The options that I passed to to_xml like :only and :except doesn't work at all. On ActiveRecord, it works really well. Anyone knows?

class Node < ActiveResource::Base
   self.site = NODE_SERVER
end

# node has uuid, name, type attributes
node = Node.find("3333")
node.to_xml(:only => [:uuid])

# after here, i still get all attributes
flag
Please format your code... – Lichtamberg Sep 8 at 11:24
to_xml returns an xml string... what are you doing with the result? – jonnii Sep 9 at 4:22
i will send it back to the client. – chamnapchhorn Sep 9 at 4:36

3 Answers

vote up 0 vote down

You say "after here, I still get all attributes". It looks like you think node.to_xml will change the node itself, but that's not the case. You have to do

xml = node.to_xml(:only => [:uuid])

and then refer to xml.

link|flag
no. I mean the to_xml still returns all attributes. Did you try that yet? – chamnapchhorn Sep 9 at 10:13
vote up 0 vote down

The implementation of ActiveResource::Base#to_xml is different than ActiveRecord::Base.

See http://api.rubyonrails.org/classes/ActiveResource/Base.html#M000914

ActiveResource::Base#to_xml only accepts :indent, :dasherize, :camelize and :skip_instruct.

link|flag
I don't think the implementation is different. From my point of view, it would just called attributes.to_xml (which is a hash object) of a activeresource object. In addition, to_xml comes with ActiveSupport. If you try to call to_xml on a hash, you would see, it doesn't work either. – chamnapchhorn Oct 11 at 6:57
No, the implementation is different. ARecord::Base.to_xml uses XmlSerializer, whereas AResource::Base.to_xml uses a completely different method of serializing. Additionally, both implementation accept different options, as specified in the Rails API documentation. In other words, RTFM :). – bartzon Oct 13 at 12:08
You're right. I just looked through code yesterday. – chamnapchhorn Oct 15 at 8:08
vote up 0 vote down

The to_xml methods on ActiveRecord and ActiveResource are independent implementations. That means that you cannot expect them to behave exactly the same or take the same arguments.

link|flag

Your Answer

Get an OpenID
or

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