At the moment I use PHP with my own c#-class (which I use via COM-Interface)
[PHP]$modProject = new COM('XMLLibrary .XMLModuleProje ct')[/PHP]
Now I want to use the class via DOTNET-Methode.
[PHP]$stack = new DOTNET("XMLLibr ary, Version=1.0.0.0 , Culture=neutral , PublicKeyToken= d6d5e7447d7d808 6", "XMLModuleProje ct");[/PHP]
But this doesn't work. I always received the error message:
There is also a other question. Does the PHP-Code above work on Linux?
I hope you can help me.
Thanks
[PHP]$modProject = new COM('XMLLibrary .XMLModuleProje ct')[/PHP]
Now I want to use the class via DOTNET-Methode.
[PHP]$stack = new DOTNET("XMLLibr ary, Version=1.0.0.0 , Culture=neutral , PublicKeyToken= d6d5e7447d7d808 6", "XMLModuleProje ct");[/PHP]
But this doesn't work. I always received the error message:
Fatal error: Uncaught exception 'com_exception' with message 'Failed to instantiate .Net object [CreateInstance] [0x80070002] Das System kann die angegebene Datei nicht finden.
english: The System can't find the indicated File.
english: The System can't find the indicated File.
I hope you can help me.
Thanks
Comment