ID: 10851
Updated by: derick
Reported By: [EMAIL PROTECTED]
Old-Status: Open
Status: Closed
Bug Type: Reproducible crash
Operating system: 
PHP Version: 4.0.5
Assigned To: 
Comments:

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

Previous Comments:
---------------------------------------------------------------------------

[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]

Reply via email to