I think that the results you are getting is exactly as expected. If you are accessing "script.pl?keywords=hai", CGI::XML (actually XML::CGI as it turns out) is going to write up the XML in such a manner that you can see the argument name and its value. (I think I got that right...)

If you are only trying to create an XML output of <cgi>hai</cgi> and the such, where parameters passed to CGI have nothing to do with it, check out XML::Simple. Then you could do something like this:

#!/usr/bin/perl -w use strict; use XML::Simple; my $xml; $xml->{'cgi'} = 'hai'; print XMLout( $xml, keeproot => 1 );

To make things even cooler, you can place the output of XMLout() to a file and then use the XMLin() function to bring it back in and read from the structure:

my $xml = XMLin( 'file.txt', keeproot => 1 ); print $xml->{'cgi'};

See XML::Simple Documentation for more of the juicy details.


      C:\>shutdown -s
      >> Could not shut down computer:
      >> Microsoft is logged in remotely.
    


In reply to Re: Problem with CGI::XML by Coruscate
in thread Problem with CGI::XML by wanadlan

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.