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

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
link|improve this question

52% accept rate
Please format your code... – Lichtamberg Sep 8 '09 at 11:24
to_xml returns an xml string... what are you doing with the result? – jonnii Sep 9 '09 at 4:22
i will send it back to the client. – Chamnap Sep 9 '09 at 4:36
feedback

3 Answers

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|improve this answer
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. – Chamnap Oct 11 '09 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 '09 at 12:08
You're right. I just looked through code yesterday. – Chamnap Oct 15 '09 at 8:08
feedback

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|improve this answer
feedback

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|improve this answer
no. I mean the to_xml still returns all attributes. Did you try that yet? – Chamnap Sep 9 '09 at 10:13
feedback

Your Answer

 
or
required, but never shown

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