[PHP-DEV] Bug #2802: com_propget does not support passing arguments From: tohare <email protected>
Date: 11/23/99

From: tohare <email protected>
Operating system: Windows NT
PHP version: 3.0.12
PHP Bug Type: Parser error
Bug description: com_propget does not support passing arguments

Using the COM functionality in PHP 4.0 beta 3 on Windows NT with IIS, I created a COM object and called a property that takes a parameter and PHP returns an error:

<?php
$obj = new COM("MyProgid")
$ver = $obj->Version("HTML");
?>

Fatal error: version.() in D:\php_scripts\com.php on line 3

Here is the COM propert get IDL:

[id(0x00000001), propget, helpstring("property Version")]
BSTR Version([in, optional] VARIANT format);

I took a quick look at COM.c and noticed that propget implementation does not appear to take arguments:

>From COM.c:

do_COM_propget(...) {
...
dispparams.cArgs = 0;
dispparams.cNamedArgs = 0;

hr = i_dispatch->lpVtbl->Invoke(i_dispatch, dispid, &IID_NULL,LOCALE_SYSTEM_DEFAULT, DISPATCH_PROPERTYGET, &dispparams, var_result, NULL, 0);
...
}

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>