Tagged Questions
The xmlsimple tag has no wiki summary.
1
vote
1answer
204 views
In Ruby, is there a way to use XmlSimple when some values are nil?
As the nil will choke XmlSimple:
>> require 'xmlsimple'
=> true
>> XmlSimple.xml_out([{'a' => 1}, {'a' => 3}])
=> "<opt>\n <anon a=\"1\" />\n <anon a=\"3\" ...
0
votes
1answer
53 views
Perl XML:Simple read xml pairs and execute something on each of them
I have a XML file which contains the below section:
<cptasks>
<copy file="file1.txt" to="folder1/folder21" />
<copy file="file2.txt" to="folder1/folder33" />
<copy ...
0
votes
1answer
92 views
XmlSimple - using xml_in() to parse data in Ruby on Rails
I have a simple XML file like this:
<Course>
<CompanyName value="Ford"/>
<DepartmentName value="assessments"/>
<CourseName value="parts"/>
...
0
votes
2answers
131 views
Using xmlSimple.xmlIn(file) With Ruby
I am having trouble getting xmlSimple to run correctly in my .rb file. I am using xmlSimple.xmlIn(filename);, however, it seems there is an error with finding the correct file. I have moved the file ...
0
votes
1answer
149 views
How do I parse a hash to XML using XmlSimple?
I have a hash that i wanted to parse to XML using SimpleXML but there is a trick I dont know how to handle:
My hash looks like:
require 'xmlsimple'
test = { "subroot" => {
field1 => {'var1' ...
0
votes
1answer
143 views
How do I encode key-value pairs using Perl's XML::Simple module?
I have a hash of the form
my $hash = {
'Key' => "ID1",
'Value' => "SomeProcess"
};
I need to convert this to an XML fragment of the form
<Parameter key="ID1">Some Process ...
0
votes
1answer
139 views
How can XmlSimple output XML just like data.to_xml?
Can XmlSimple.xml_out output XML the same way to_xml does? (instead of attributes, use tags):
> puts XmlSimple.xml_out([{'a' => 1, 'b' => 3.3}])
<opt>
<anon a="1" b="3.3" />
...