ID:               38719
 Comment by:       pykker at gmail dot com
 Reported By:      techscorpio at lxlabs dot com
 Status:           Assigned
 Bug Type:         COM related
 Operating System: Windows 2003 r2
 PHP Version:      5.1.6
 Assigned To:      wez
 New Comment:

I tried on Windows Vista SP1, PHP 5.2.1 and getting the same error.

Are there any news about this?


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

[2007-06-20 02:55:00] jim_1234au at yahoo dot com dot au

Has there any progress, or workaround with this problem ?

I've just tried it with Apache/2.2.4 (Win32) PHP/5.2.3 on a Windows
2003R2 server. The same was orrucing with PHP v5.2.2.

Jim.....

------------------------------------------------------------------------

[2006-12-11 18:56:25] ana dot laura123 at gmail dot com

I have the same error. I'm trying to start a new php process to run a
php script in the background. This is what i'm doing:

$WshShell = new COM("WScript.Shell");
$oExec = $WshShell->Run('C:\php\php.exe startEngine.php'); 

the script runs ok when i start it from a command window.
but it gives me this error when i try to run it from a php page:

Fatal error: Uncaught exception 'com_exception' with message
'<b>Source:</b> Unknown<br/><b>Description:</b> Unknown' in
c:\Inetpub\wwwroot\M3PHP\Engine\EngineService.php:60 Stack trace: #0
c:\Inetpub\wwwroot\M3PHP\Engine\EngineService.php(60):
com->Run('C:\php\php.exe ...') #1 {main} thrown in
c:\Inetpub\wwwroot\M3PHP\Engine\EngineService.php on line 60
PHP Fatal error: Uncaught exception 'com_exception' with message
'Source: Unknown
Description: Unknown' in
c:\Inetpub\wwwroot\M3PHP\Engine\EngineService.php:60 Stack trace: #0
c:\Inetpub\wwwroot\M3PHP\Engine\EngineService.php(60):
com->Run('C:\php\php.exe ...') #1 {main} thrown in
c:\Inetpub\wwwroot\M3PHP\Engine\EngineService.php on line 60

------------------------------------------------------------------------

[2006-09-05 06:50:58] techscorpio at lxlabs dot com

Description:
------------
Hi,
 i am trying to warite a php script for administration of microsoft
virtual server when i use a COM "VirtualServer.Application" the object
is created but when i tried to access "VirtualMachines" etc,the COM
function will troughs error.

Reproduce code:
---------------
Hi, 

I tried many times but still it's troughing the same error, i tried
some other example but it seems actual problem is in php, it will not
accessing COM properly i tried like this 

vb script:- 

'Script Begins 

On Error Resume Next 

'Connect to Virtual Server 
Set virtualServer = CreateObject("VirtualServer.Application") 

'Get collection of virtual machines 
set vmCollection = virtualServer.VirtualMachines 

'Iterate over the virtual machines and display data 
For Each vm in vmCollection 
Wscript.Echo "==============================" 
Wscript.Echo "Name: " & vm.Name 
Wscript.Echo 
Wscript.Echo "Notes: " & vm.Notes 

Wscript.Echo "==============================" 

Next 

'Script Ends 

Works Fine 

PHP Script 

<?php 
f1(); 
function f1() 
{ 
//Connect to Virtual Server 
$virtualServer = new COM("VirtualServer.Application"); 

//Get collection of virtual machines 
$vmCollection = $virtualServer->VirtualMachines; 
//Iterate over the virtual machines and display data 
foreach( $vmCollection as $vm) 
{ 
print("\n=============================="); 
print( "\nName: " $vm->Name); 
print("\n=============================="); 
} 
} 
Throughs Run time ERROR: 
Fatal error: Uncaught exception 'com_exception' with message 'Source:
Unknown 
Description: Unknown' in C:\Program Files\lxlabs\ext\php\test.php:9 
Stack trace: 
#0 C:\Program Files\lxlabs\ext\php\test.php(9): f1() 
#1 C:\Program Files\lxlabs\ext\php\test.php(2): f1() 
#2 {main} 
thrown in C:\Program Files\lxlabs\ext\php\test.php on line 9 


When i cought Exception it will tough Object #2 

please help me it's urgent

Expected result:
----------------
it will show all the virtual machines under virtual server

Actual result:
--------------
Fatal error: Uncaught exception 'com_exception' with message 'Source:
Unknown 
Description: Unknown' in C:\Program Files\lxlabs\ext\php\test.php:9 


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=38719&edit=1

Reply via email to