I expect your problem is a quirk with XML::Simple. If there is just one author in your AuthorList, XML::Simple turns it into a hash something like this
{AuthorList => {CompleteYN=>"Y", Author => {ValidYN=>"Y", LastName=>"Dinos", ForeName=>"A E"}}}
but if there's more than one author, XML::Simple puts in an array ref.
{AuthorList => {CompleteYN=>"Y", Author => [{ValidYN=>"Y", LastName=>"Tsirgos", ForeName=>"K T"}, {ValidYN=>"Y", LastName=>"Dinos", ForeName=>"A E"}]}}
Use the 'ForceArray' option on XMLin so that author always gets the array ref. That way your code doesn't choke on one case or the other.

The notes to XML::Simple say that they wish they'd made ForceArray the default. I guess there's too much established code out there to change the default now.

Read up on it. BTW, while you're there, read about KeyAttr, too. You'll want to use it.

throop


In reply to Re: Perl & Simple::XML by throop
in thread Perl & Simple::XML by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • 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, details, 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, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.