How to obtain the raw http content?

2007-02-13 Thread Foo JH
Hi all, Can anyone point me in the right direction? I am expecting POST with XML content, so the usual parser won't work...I think. Hope this helps.

Re: How to obtain the raw http content?

2007-02-13 Thread Fred Moyer
Foo JH wrote: Hi all, Can anyone point me in the right direction? I am expecting POST with XML content, so the usual parser won't work...I think. I've used $r-read() in the past to do exactly what you are specifying. http://perl.apache.org/docs/2.0/api/Apache2/RequestIO.html#C_read_

Re: How to obtain the raw http content?

2007-02-13 Thread Issac Goldstand
Foo JH wrote: Hi all, Can anyone point me in the right direction? I am expecting POST with XML content, so the usual parser won't work...I think. FYI, The libapreq (aka, Apache::Request) API (at least, the C API) lets you define your own parsers. See