Quentin Bennett wrote:
Hi,
Is this possible, please?
What I want to do is, using an HTTP class, $myComms = new Ihttp_base_class(&$httpParams);
$myComms->request = $some_document;
$myComms->requrl = "/mysite/myscript.php";
$myComms->Send();
"myscript.php" runs within the same Apache server, processes some_document, and returns an HTTP response. PHP is running as an Apache module, not CGI.
Within myscript.php, I can 'getallheaders()' to access the HTTP headers, but I want to access the contents of $some_document - i.e. the content portion of the HTTP message.
$some_document can't be sent as a GET/POST variable, as it exceeds the limitations on those.

Have you considered using something like Snoopy? http://snoopy.sf.net

Could be worth a try.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to