ID:               25759
 User updated by:  david dot nicholls at camden dot gov dot uk
 Reported By:      david dot nicholls at camden dot gov dot uk
-Status:           Feedback
+Status:           Open
 Bug Type:         COM related
 Operating System: Windows 2000
 PHP Version:      5CVS-2003-10-06 (dev)
 New Comment:

The bug fix worked thanks and I can now do the instatitaion. However
there are issues at the next stage :(

This works under 4 and not 5 

I suspect "while($obj = $comUsers->Next())" (dont know how to put in
the exception handling code there)


<?php
$acctDomain = "Camden";
echo "Making COM connection using ADSI\n\r";
$acctStr = "WinNT://".$acctDomain;
echo "$acctStr\n\r";

$comUsers = new COM($acctStr);
echo "Bound";

while($obj = $comUsers->Next()) {
        $uClass = $obj->Class;
        $uName = $obj->Name;
        echo "$uName \t $uClass \n\r";
}
?>


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

[2003-10-06 11:09:13] [EMAIL PROTECTED]

I've comitted a quick little "fix" for this; you can
pick it up in the next development snapshot in around
3 hours time.
Please let me know if it works for you.

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

[2003-10-06 09:59:14] david dot nicholls at camden dot gov dot uk

Looks like PHP is messing up valid syntax


exception Object
(
    [message:protected] => Unknown exception
    [string:private] =>
    [code:protected] => 0
    [file:protected] => C:\Inetpub\wwwroot\ntadmin\comtest.php
    [line:protected] => 15
    [trace:private] => Array
        (
        )

    [message] => Failed to create COM object `WinNT://Camden': Invalid
syntax

    [file] => C:\Inetpub\wwwroot\ntadmin\comtest.php
    [line] => 15
)

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

[2003-10-06 09:43:30] [EMAIL PROTECTED]

Try it with exception handlers: 

try {
  $comUsers = new COM($acctStr);
}
catch (exception $e) {
  print_r($e);
}

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

[2003-10-06 09:26:02] david dot nicholls at camden dot gov dot uk

Description:
------------
Following on from bug 25732 I am trying PHP5-dev from CVS

Code that worked previously under 4.3.3 now fails silently

error_reporting = E_ALL is set

Reproduce code:
---------------
$acctDomain = "Camden";
echo "Making COM connection using ADSI\n\r";
$acctStr = "WinNT://".$acctDomain;
echo "$acctStr\n\r";
$comUsers = new COM($acctStr);
echo "new COM Sucessful";

Expected result:
----------------
'new COM Sucessful' to be printed at console or an error code

Actual result:
--------------
Nothing, just brings back command promt


C:\Inetpub\wwwroot\ntadmin>php comtest.php
Content-type: text/html
X-Powered-By: PHP/5.0.0b2-dev

Making COM connection using ADSI
WinNT://Camden

C:\Inetpub\wwwroot\ntadmin>


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


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

Reply via email to