Please clarify the meaning of "The server threw an exception. (Exception from HRESULT: 0x80010105 (RPC_E_SERVERFAULT))"

1

I am developing a C# Console application, that has nothing to do with the server but it does use a library vcamcomlib which comes with the trial version of e2e vcam.

These are my lines of code

refByte = File.ReadAllBytes(@"filepath");

vcam.PlayBuffer(ref refByte[0], 640, 480);//Exception comes here

My program was running fine yesterday, however i started my system today and trying to run it. the exception just showed up. Can somebody help? Thanks alot

c#
asked on Stack Overflow Feb 11, 2011 by nightWatcher • edited Feb 11, 2011 by Adriaan Stander

1 Answer

1

From this URL, they discussed about the COM interop and thread safety. Better ask them which components are safe in multi-threading and which are not.

answered on Stack Overflow Feb 15, 2011 by eSPiYa

User contributions licensed under CC BY-SA 3.0