Hi,
I have created a ActiveX.EXE which I can access from PHP (yes, it works, though documentation says only DLLs work). I can write a value to the ActiveX memory and I can read it. In the end I want to read values from the ActiveX which are pushed into there from another client. Here lies the problem:
If I open the client the ActiveX task appears in taskmanager and I can read and write my values.
If I open another client then it reuses the existing ActveX instance and I can read the values which are written from the first client. BUT
Whenever I try to access the ActiveX from a PHP web page a second process from the ActiveX ist started (I can see it in Taskmanager). Of course this instance has another data pool and so I cannot access the data written from the client(s).
How can I stop PHP from opening another process - I want it to use the one which is already running ??