Hi Chris - On Tue, 22 Oct 2002, Chris Pizzo wrote:
> I'm trying to figure out how to get the XML document sent to me in a
> An HTTP transmission. The example I'm given is:
You can read the POST content directly in your mod_perl handler, e.g.:
sub handler
{
my $r = shift;
my $content;
$r->read($content, $r->header_in("Content-length"));
# do stuff with $content...
}
See the mod_perl Cookbook recipe 3.6
Larry Leszczynski
[EMAIL PROTECTED]
