Tagged Questions

5
votes
2answers
510 views

Ruby convert single quotes to double quotes in XML

Despite the fact that XML attributs can be defined using single or double quotes, my user is trying to integrate my software with another one that will not accept single quoted attribut values. I ...
1
vote
1answer
386 views

Parse xml file with rails REXML?

How can i parse this xml file ? <resultset> −<row> <field name="Table Name">table_1</field> <field name="Quant of Rows">2</field> <field name="Total Size ...
1
vote
1answer
192 views

Iterative Parsing XML

Just getting started with Ruby and have a newbie question re parsing XML. I'm trying REXML (yes, I know hpricot and others exist, but I am starting with REXML to learn.) The problem is how to ...
0
votes
2answers
135 views

Ruby REXML: Get Value Of An XML Element

I am trying to put the values of some xml elements into an array using rexml. Here is an example of what I am doing: doc = Document.new("<data><title>This is one ...
0
votes
1answer
106 views

Parse XML POST data with Rails

I'm using REXML to parse through some XML data sent via POST. The XML is sent correctly formatted with "&" sent as "&amp;". However, when I try to parse it, I had problems like the &amp; ...