Hi,
This is my xml, I want to parse.
these are the few steps I read in the perldoc
my $xml = "path of the xml on TS server";
my $parser = TeamSite::XMLparser->new();
my $docnode = $parser->parse($xml,'document');
my $rootnode = $parser->parse($xml);
but when i print the $docnode or $rootnode, Its empty.
Please tell me what is that I am doing wrong.