I have been trying to use XML Smart module to create some XML files and I’m having some problems getting element to nest properly. I’m new to this module I would appreciate if you could help me specify correct code that I need to use to create this simple XML structure:
<Shelf_Info>
<switch Name="Puebla01">
<shelfType>7480</shelfType>
<commentText>ATM Core switch</commentText>
</switch>
<switch Name="Puebla02">
<shelfType>7440</shelfType>
<commentText>ATM access switch</commentText>
</switch>
</Shelf_Info>
So far I managed to create elements for one occurrence of switch data in the above example but I don’t know how to get it to build the structure for second, third,….occurrence. This is what I have:
my $XML = XML::Smart->new() ;
$XML->{Shelf_Info} ;
$XML->{Shelf_Info}{switch}{Name} = "$pp";
$XML->{Shelf_Info}{switch}{shelfType} = '15000';
$XML->{Shelf_Info}{switch}{shelfType}->set_node(1);
$XML->{Shelf_Info}{switch}{commentText} = "$comment";
$XML->{Shelf_Info}{switch}{commentText}->set_node(2);
$XML->save('test.xml') ;
So, how do I get it to create the second lot (switch Name="Puebla02”) without overriding the first one?
Regards
Kon
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|