I would like to handle with php an active X dll object released by a private company (it is a payment gateway).
When I try to instantiate the COM object
$obj = new COM("e24PaymentPipe.e24PaymentPipe.1") or die("Life is not so wonderful");
I get
Fatal error: Uncaught exception 'com_exception' with message 'Error [0x80020003] Impossibile trovare membro. ' in d:\www\MW_qPqXqcXGG\studiosgs.it\posta\com.php:2 Stack trace: #0 d:\www\MW_qPqXqcXGG\studiosgs.it\posta\com.php(2): unknown() #1 {main} thrown in d:\www\MW_qPqXqcXGG\studiosgs.it\posta\com.php on line 2
Do anybody knows generally wich are the possible causes of this error and how to fix it?
Maybe , like from the PHP MANUAL
"You are responsible for installing support for the various COM objects that you intend to use (such as MS Word); we don't and can't bundle all of those with PHP."
but this support in wich consist of?
Do anybody know where could I find documentation about this?
Thank you
Massimo Ivaldi