Re: How do I handle an XML document sent as a POST [newbie]

2002-10-22 Thread Larry Leszczynski
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;

How do I handle an XML document sent as a POST [newbie]

2002-10-22 Thread Chris Pizzo
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: HTTP headers: POST HTTP/1.0 Content-type: text/xml; charset="UTF-8" Content-length: 1862 Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2 User-Agent: Java1.1 Host: loca