Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re^3: XML::Simple is doing too much for me! Help please.

by izut (Chaplain)
on Jul 15, 2005 at 19:29 UTC ( [id://475339]=note: print w/replies, xml ) Need Help??


in reply to Re^2: XML::Simple is doing too much for me! Help please.
in thread XML::Simple is doing too much for me! Help please.

Try setting the ForceArray options like this:
$xml = XMLin("teste.xml", KeepRoot => 1, ForceArray => [ 'phonenumber', 'prompt' ],);
izut

surrender to perl. your code, your rules.

Replies are listed 'Best First'.
Re^4: XML::Simple is doing too much for me! Help please.
by jdtoronto (Prior) on Jul 15, 2005 at 19:42 UTC
    That did it, thanks izut. Just to keep the record complete, here is the results:
    $VAR1 = { 'campaign' => { 'menuid' => '10118-2', 'action' => '0', 'phonenumbers' => { 'phonenumber' => [ { 'number' => '4167781583', 'prompts' => { 'prompt' => [ { 'tts' => 'Hello, this is a test.', 'promptid' => '2' } ] }, 'callid' => '1234abc' } ] } } };
    <campaign action="0" menuid="10118-2"> <phonenumbers> <phonenumber callid="1234abc" number="4167781583"> <prompts> <prompt promptid="2" tts="Hello, this is a test." /> </prompts> </phonenumber> </phonenumbers> </campaign>
    Now I can also see hot to contrusct the HASH programatically, which si what I was attempting to do! Thanks again. jdtoronto

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://475339]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (3)
As of 2024-03-28 15:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found