hi,

I am sending XML file as under: copyscript_28jan230pm dummy.xml and it is validated correcly and the output is as under: Enter username for Romulus: ddfd Enter password: Enter username for EMTT1: ...... Romulus, EMTT1 are parsed from XML, and before parsing it is being validated. Now i wanted to copy same XML file dummy.xml to |.xml. I have done it as cp dummy.xml \|.xml in a linux box. and the code for validation is

eval { $doc = $parser->parsefile ("$ARGV[0]"); }; if($@) { print "Invalid XML file,enter valid XML file \n"; exit; }
Now as i supplied dummy.xml, there is no error and the xml file is parsed. when i supplied |.xml from the command line as <program_name> \|.xml, it is throwing an error as Invalid XML file,enter valid XML file, even though the xml file inside is wellformed and is same as dummy.xml . Can u please tell me how can we overcome this ?


In reply to xml validation using perl by pavanmach

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.