bear0053 has asked for the wisdom of the Perl Monks concerning the following question:
Now i need my_prog.cgi to grab the xml info coming in and i am unsure how to accomplish this.use Win32::OLE; my $SendObject = Win32::OLE->new('microsoft.XMLhttp'); $SendObject->open("POST", 'http://www.xyz.com/my_prog.cgi', "false"); $SendObject->setRequestHeader("Content-type", "text/xml"); $SendObject->send($XML_INFO);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: grabbing XML in a script
by idsfa (Vicar) on Oct 15, 2003 at 21:14 UTC | |
by mirod (Canon) on Oct 16, 2003 at 08:46 UTC |