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

 ID:               51205
 Updated by:       ka...@php.net
 Reported by:      zelnaga at gmail dot com
 Summary:          Fatal error: com_exception: The parameter is incorrect
-Status:           Open
+Status:           Feedback
 Type:             Bug
 Package:          COM related
 Operating System: Windows XP
 PHP Version:      5.3.1

 New Comment:

You cannot use VT_ARRAY as the only type sent to VARIANT's ctor.
VT_ARRAY is a flag that needs to be OR'd with another type, e.g.:



$variant = new VARIANT($..., VT_UI1 | VT_ARRAY);


Previous Comments:
------------------------------------------------------------------------
[2010-03-26 18:47:12] zelnaga at gmail dot com

the $rng->GetBytes($v); line.

------------------------------------------------------------------------
[2010-03-15 15:27:30] ka...@php.net

In what line does this happen?

------------------------------------------------------------------------
[2010-03-04 22:31:57] zelnaga at gmail dot com

Description:
------------
Hi,



I need to use RNGCryptoServiceProvider in PHP.



I have tried:



$rng = new DOTNET("mscorlib",

"System.Security.Cryptography.RNGCryptoServiceProvider");

$arr = array(0);

$v = new VARIANT($arr,VT_ARRAY);

$rng->GetBytes($v);

unset($rng);



The component loads fine.



But I got this error: Fatal error: Uncaught exception 'com_exception'

with message 'Error [0x80070057] The parameter is incorrect.



Any ideas?



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



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

Reply via email to