I use a Script client.pl to send XML-Parameters to a Script "server.pl"
...
my $uaB=new LWP::UserAgent;
$uaB->agent("TEST CALL" );
my $ReqB=new HTTP::Request GET => 'server.pl';
$ReqB->authorization_basic('TOTO','Password');
$ReqB->content_type('text/xml');
$ReqB->content("...<Parameter1>12345</Parameter1>...");
...
How can I read the XML-Parameters (Parameter1, etc) from the Server Side
"server.pl"?
Thank you
KN
> -----Ursprüngliche Nachricht-----
> Von: Naji, Khalid [mailto:Khali...@bsz-bw.de]
> Gesendet: Freitag, 13. November 2009 12:14
> An: beginn...@perl.org
> Betreff: XML-Parameters from the Server Side
> --
> To unsubscribe, e-mail: beginners-cg...@perl.org
> For additional commands, e-mail: beginners...@perl.org
> http://learn.perl.org/
>
>