ID: 10851
Updated by: phanto
Reported By: [EMAIL PROTECTED]
Status: Open
Bug Type: Reproducible crash
Operating system:
PHP Version: 4.0.6-dev
Assigned To:
Comments:
could you provide a short script without any includes that reproduces that error. i've
done a few tests with XMLHTTP but i haven't got any errors with the latest cvs version.
Previous Comments:
---------------------------------------------------------------------------
[2001-05-14 11:41:46] [EMAIL PROTECTED]
Still crashes with new 4.0.6-dev binary from php4win
---------------------------------------------------------------------------
[2001-05-14 10:25:22] [EMAIL PROTECTED]
This should be fixed in CVS, can you please try the binary
that php4win.de provides (site is down, but there is a link to the binary).
If this one doesn't fix the problem, please reopen this report.
Derick
---------------------------------------------------------------------------
[2001-05-14 10:13:56] [EMAIL PROTECTED]
PHP 4.0.5 CGI and ISAPI crashes when I do the following:
<?php
$savefile = dirname(__FILE__) . "/tbxds-data.xml";
$requestfile = dirname(__FILE__) . "/tbxds-request.xml";
$tbxdslocation = "http://services.eurobench.nl/tbxds/tbxds.asp";
$xmlhttp = new COM("Microsoft.XMLHTTP");
if ( $requestdata = join('',file($requestfile)) ) {
$xmlhttp->open("POST", $tbxdslocation, 0);
$xmlhttp->send($requestdata);
$reqdoc = $xmlhttp->responseXML;
// $reqdoc->save($savefile);
// proceed with further processing
include("nutreco.php");
} else {
print "Er is een fout opgetreden tijdens het lezen van het
request-bestand.<br>";
print $objdoc->parseError->reason;
}
?>
It crashes at line 12: $reqdoc = $xmlhttp->responseXML;
Is the COM component faulty?
---------------------------------------------------------------------------
ATTENTION! Do NOT reply to this email!
To reply, use the web interface found at http://bugs.php.net/?id=10851&edit=2
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]