Convert array of object to xml

Hi all,

I have an array containing objects of different classes.Each class is
basically hash containing attribute/value pairs. Now how can we convert
it to xml format?

Any suggestions will be appreciated.

On Tue, Aug 24, 2010 at 6:33 AM, Shyam Krishna Khadka
[email protected] wrote:

Hmm I have to do some guessing here

the base idea is that you need hashes as elements, thus parting from
the hypothetical problem

[ :a, 42, “a”].to_xml
RuntimeError: Not all elements respond to to_xml

you can do something like this

[ :a, 42, “xxx”].map{|x| { :name => x } }.to_xml
=> “<?xml version="1.0" encoding="UTF-8"?>\n\n
\n a\n \n \n
42\n \n \n
xxx\n \n\n”

If you still have problems it would be helpful to post some code, one
would need to look into the ary

HTH
R.

Robert D. wrote:

On Tue, Aug 24, 2010 at 6:33 AM, Shyam Krishna Khadka
[email protected] wrote:

Hmm I have to do some guessing here

the base idea is that you need hashes as elements, thus parting from
the hypothetical problem

[ :a, 42, “a”].to_xml
RuntimeError: Not all elements respond to to_xml

you can do something like this

[ :a, 42, “xxx”].map{|x| { :name => x } }.to_xml
=> “<?xml version="1.0" encoding="UTF-8"?>\n\n
\n a\n \n \n
42\n \n \n
xxx\n \n\n”

If you still have problems it would be helpful to post some code, one
would need to look into the ary

HTH
R.

Thanks for your reply.
But I am afraid that it works only in rails console, not in irb console.
This is because to_xml method is defined inside ActiveSupport of rails.
But I want pure ruby code to convert to xml.

Actually in my case, array is the collection of objects. And object is
basically collection of hashes. Finally I made it own using REXML.
For reference see :
http://www.ibm.com/developerworks/xml/tutorials/x-rubyonrailsxml/section4.html

On Wed, Aug 25, 2010 at 5:26 AM, Shyam Krishna Khadka
[email protected] wrote:
I used rc for my convenience, but why not use ActiveSupport without
rails?
REXML might or might not be the best choice for your problem…

Cheers
R.

Robert D. wrote:

I agree with you. But for my case, I am writing pure ruby gem that has
to convert an array of different objects into xml. So using
ActiveSupport inside ruby code seemed to be weird one.

For now, REXML is appropriate for me.