php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #35389 COM stalled
Submitted: 2005-11-25 12:36 UTC Modified: 2005-11-27 13:32 UTC
Votes:1
Avg. Score:5.0 ± 0.0
Reproduced:0 of 0 (0.0%)
From: bke15 at gmx dot de Assigned: wez (profile)
Status: Not a bug Package: COM related
PHP Version: 5.1.0 OS: Windows 2003
Private report: No CVE-ID: None
 [2005-11-25 12:36 UTC] bke15 at gmx dot de
Description:
------------
Hi

I am using COM since 5.0.5 without problems. Since 5.1RC6 and now 5.1.0 COM does stop the complete script. I get no output anymore. 

see code ...

Reproduce code:
---------------
<?php

echo "Start Test " . date("F j, Y, g:i:s a") . "<br>";

try {
	$dom = new COM ( "MSXML2.DOMDocument.4.0" );
	$dom->setProperty("AllowDocumentFunction",true);
	$dom->setProperty("NewParser",true);
	$dom->setProperty("MaxXMLSize",0);
	$dom->Async = false;
	$dom->validateOnParse = false;
	$dom->resolveExternals = true;
	$dom->preserveWhiteSpace = false;
} catch (Exception $e) {
	die("Error during DOM create.<br>");
}

$xml = "<wood>
	<tree><num>1</num></tree>
	<tree><num>2</num></tree>
	<tree><num>3</num></tree>
	<tree><num>4</num></tree>
</wood>";

echo "loading...<br>";

try {
	$dom->LoadXML($xml);
} catch (Exception $e) {
	echo "ERROR: can't parse Parameter-XML<br>";
	echo "ERROR: Reason " . $dom->ParseError->Reason . "<br>";
	echo "ERROR: Absolute File Position " . $dom->ParseError->Filepos . "<br>";
	echo "ERROR: Line number " . $dom->ParseError->Line . "<br>";
	echo "ERROR: Character Position " . $dom->ParseError->linepos . "<br>";
	echo "ERROR: SRC Line: " . HTMLEncode ($dom->ParseError->srcText) . "<br>";
	unset($dom);
	die();
}

echo htmlentities($dom->xml);

echo "<br>finish<br>";

/*
Expected Output :
Start Test November 25, 2005, 12:26:26 pm
loading...
<wood> <tree><num>1</num></tree> <tree><num>2</num></tree> <tree><num>3</num></tree> <tree><num>4</num></tree> </wood> 
finish
?>

Expected result:
----------------
Start Test November 25, 2005, 12:26:26 pm
loading...
<wood> <tree><num>1</num></tree> <tree><num>2</num></tree> <tree><num>3</num></tree> <tree><num>4</num></tree> </wood> 
finish

Actual result:
--------------
Blank Page ...

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2005-11-25 12:38 UTC] tony2001@php.net
Assigned to the maintainer.
 [2005-11-25 13:18 UTC] bke15 at gmx dot de
SysInformation: I am using IIS with ISAPI Extension.
Windows is running with latest servicepack and patches.
 [2005-11-25 13:21 UTC] tony2001@php.net
Btw, check the event viewer or whatever it's called to see if there are any error log entries.
 [2005-11-25 14:04 UTC] bke15 at gmx dot de
I have no errors in the ErrorLog nor in the eventlog.
 [2005-11-26 16:42 UTC] jbr at yaright dot com
HI

PHP 5.1.0 ISAPI AND CGI

I have tried to get COM via PHP 5.1.0 to work on IIS, Apache and Sambar. Trying to use even (try, catch) no matter what simple object is called will result in...

PHP has encountered an Access Violation at 0140AC0D


This works in...

PHP 5.0.*, and snaps 5.1.x-dev before Nov 19, 2005 snaps.

<?
	$url = 'http://www.php.com/';

	$obj = new COM ( 'InternetExplorer.Application' );

	if ( is_object ( $obj ) )
	{
		$ifn = parse_url ( $url );
		$obj->Visible = false;
		$obj->FullScreen = true;
		$obj->Width = 800;
		$obj->Navigate ( $url );
		while ( $obj->ReadyState != '4' ) usleep ( 10000 );
		echo $obj->Document->body->scrollHeight;
		$obj->Quit ();
		$obj = null;
	}
?>

The result should print the (document body scroll height in pixels)

At least in PHP 5.0.4, COM was working ok, sure there were still problems with variants and references to variants, but at least COM was working, now nothing. I tried the latest (5.1.dev - Nov 26, 2005 11:30 GMT and it still does not work, same problem)
 [2005-11-27 13:32 UTC] rrichards@php.net
Please do not submit the same bug more than once. An existing
bug report already describes this very problem. Even if you feel
that your issue is somewhat different, the resolution is likely
to be the same. 

Thank you for your interest in PHP.

Dupe of bug #35316
and fixed in CVS
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 20:01:28 2024 UTC