Tagged Questions
The xml-simple tag has no wiki summary.
5
votes
1answer
509 views
XML::Simple output element order from complex hash
I have already seen few answers on various places, in regards to setting the order of XML elements being returned by XMLout. However, I am not able to solve a problem using those answers/examples.
I ...
3
votes
2answers
251 views
Does XML::Simple maintain order when using arrays?
I'm using XML::Simple to parse an XML file which I then want to use to write an output file in a very specific format. Thus, the output order is important.
As I understand it, when the XML is ...
2
votes
1answer
26 views
XML::Simple leaving entities in attribute text
I have two systems, one RHEL5 and one Ubuntu 10.04, and they exhibit differing behavior. I'm using perl's XML::Simple to parse the response of a call to some SaaS software. The response is:
...
2
votes
2answers
122 views
Ordering input tags in XML::Simple using Perl while printing the output in XML format
How to order the input tags in Perl code using XML::Simple module for printing the output in XML format in specified order..
i have tried this
use XML::Simple;
use Data::Dumper;
open ...
2
votes
2answers
158 views
XML::Simple ignoring emdash tag?
I'm using XML Simple to parse an XML file, the problematic part looks like that:
<textBody>
<title>
<titlePart>
<text>SECTION A ...
2
votes
3answers
175 views
How do I compress XML from XML::Simple::XMLout?
I am using XML::Simple to parse and edit a very large XML file, and speed is essential (so far of all the method's I have tried XML::Simple has been the fastest)
Now once all my edits are completed I ...
1
vote
4answers
49 views
Perl, Parsing XML with XML::Simple and Having Issues
I am parsing xml files in Perl and everything seems to work great with one issue. I have files with the same schema, but they are returning different types of data from the parser. Here is a ...
1
vote
1answer
304 views
error using Perl XML::Simple
I am not a perl programmer, and generally find a script on net when I am in need of it.
I am trying to run a perl script to start get all the elements of an xml in an array. However, I am getting ...
1
vote
2answers
201 views
How do I dynamically generate XML?
I actually asked this question in a different form before. I did get a great answer but I thought I needed more clarifications, so I am asking it in its whole form again.
The user would script ...
1
vote
2answers
509 views
Change an xml file content via perl script
This thread is in continuation of: perl script to populate an xml file
The file I want to change is:
<?xml version="1.0" encoding="UTF-8"?>
<configuration start="earth">
...
1
vote
1answer
84 views
Parsing <first_name>João</first_name> with xml-simple
I am using the xml-simple gem inside a rake task to parse the contents of a db dump. The problem is that the database xml file contains characters like those in the title that causes xml-simple to ...
1
vote
3answers
957 views
How to parse multi record XML file ues XML::Simple in Perl
My data.xml
<?xml version="1.0" encoding="ISO-8859-1"?>
<catalog>
<cd country="UK">
<title>Hide your heart</title>
<artist>Bonnie Tyler</artist>
...
1
vote
0answers
263 views
aws-s3 can't find xml-simple, but in gem list
I'm transitioning to heroku, and need to have AWS-s3 connections to deal with a variety of graphics.
I've installed the aws-s3 gem, but one of its dependencies is not being found: xml-simple. My ...
1
vote
3answers
963 views
How do I disable subtag sorting in Perl's XML::Simple?
I just want to find the way of disable the sort operation in XML::Simple
For example:
#!/usr/bin/perl
use strict;
use warnings;
use XML::Simple;
my %my_xml = (
NAME => [ 'test' ],
...
1
vote
1answer
300 views
How do I access deep data in a nested XML structure in Perl using XML::Simple?
I am using XML::Simple and I have the following XML structure in a variable $xmldata which I need to access through Perl code.
<root>
<a>sfghs</a>
<b>agaga</b>
...
1
vote
6answers
5k views
How do I convert Data::Dumper output back into a Perl data structure?
I was wondering if you could shed some lights regarding the code I've been doing for a couple of days.
I've been trying to convert a Perl-parsed hash back to XML using the XMLout() and XMLin() method ...
0
votes
1answer
34 views
XML::Simple and unique names
I'm having a hard time making a Perl script to correctly parse an XML file which looks like the following:
<Report name="NAME">
<ReportHost name="UNIQUE_1"><HostProperties>
<tag ...
0
votes
2answers
25 views
Trouble with PHP Simple XML
I'm having some trouble saving some data after using PHP's simplexml_load_file function. I want to go through the SimpleXML Object and if the data meets the requierments I want to put it in an array. ...
0
votes
2answers
104 views
XML::Simple doesn't seem to work with a URL. Is this correct?
I am using the following script:
#!/usr/local/bin/perl -wT
use strict;
use warnings;
print "Content-type: text/html\n\n";
print "xml reader";
# use module
use XML::Simple;
use Data::Dumper;
...
0
votes
1answer
69 views
XMLSimple parse Key Value to Hash
i have the following xml:
<key>Some Text</key>
<string>Some Content</string>
<key>Some Text</key>
<string>Some ...
0
votes
2answers
55 views
what does error mean and how to fix it
<currentversion vob="<vobname>" label="<labal>"/>
<export vob="<vobname>" branch="<branch>" label="<label>"/>
error :
The value of attribute "v" ...
0
votes
1answer
352 views
Android, help with a simpleframework PersistenceException
I am trying to use org.simpleframework.xml. classes to handle xml data on my Android project. I can't understand how to build my class "Point" contructor to match the xml definition: at run-time I get ...
0
votes
1answer
73 views
XmlSimple makes single-element arrays for every element — is there a better way?
I'm using XmlSimple to turn an XML document into a ruby hash. It turns data like this:
<resultPage>
<total>2</total>
<offset>0</offset>
...
0
votes
1answer
340 views
XML::Simple encoding problem
I have an xml-file I want to parse:
<?xml version="1.0" encoding="UTF-8" ?>
<tag>รป</tag>
It's perfectly parsed by firefox. But XML::Simple corrupts some data. I have a ...
0
votes
1answer
187 views
Perl Object to XML Using XML::Simple
I'm attempting to use the XML::Simple CPAN module to convert output from our database into a simple XML structure. The problem is that the output being returned isn't what I was hoping for no matter ...
0
votes
4answers
301 views
How can I replace the <opt> tag in XML::Simple with the original tag name?
I'm using XML::Simple to edit an XML file. After which the updated data is sent to a new XML file. But this procedure produces <opt></opt> tag to be added and the original parent tag is ...
0
votes
1answer
482 views
How can I use XML::Simple to configure HTML::FormFu?
I assume you can use XML::Simple with HTML::FormFu because FromFu uses Config::Any to load it's config data.
However, I can't seem to find any sample xml configs being used with HTML::FormFu. Not ...
0
votes
2answers
433 views
How can I extract values from the XML::Simple's data structure?
I'm trying to figure out how to parse the <current></current> values from the first 2 (37% and 61.8F) in this XML. I can't figure it out since it seems that they have the same field names ...
0
votes
2answers
736 views
How do I produce XML with Perl's XML::Simple?
I am just trying to create the XML
use XML::Simple;
my %element = ( "a" => "10" ,
"b" => "20" ,);
my $xs = new XML::Simple();
my $ref = $xs->XMLin(%element);
my $xml = ...
0
votes
2answers
2k views
How can I convert JSON boolean values for output using XMLout?
There are boolean values in the JSON data structure I am using. When call decode_json to convert it to a Perl data structure and feed to the XMLout function provided by XML::Simple, it throws an error ...
-1
votes
2answers
144 views
How can I save XML data to a file with XML::Simple?
I'm using XML::Simple package to import an XML file and change a few properties of some of the child tags. The change is visible when the data is dumped with:
print Dumper($data);
But how can I ...
-2
votes
2answers
175 views
Can I use XML::Simple with an in-memory string, rather than a file?
XML::Simple documentation says to initiate the data structure with an XML file, using XMLin('[FILENAME]') ... but I have an in-memory string.
Can I use it directly, or do I need to save it to the ...