WCF service and COM interop callback

Posted by Sjblack on Stack Overflow See other posts from Stack Overflow or by Sjblack
Published on 2012-06-26T06:15:06Z Indexed on 2012/09/27 15:37 UTC
Read the original article Hit count: 301

Filed under:
|
|
|
|

I have a COM object that creates an instance of a WCF service and passes a handle to itself as a callback. The com object is marked/initialized as MTA. The problem being every instance of the WCF service that makes a call to the callback occurs on the same thread so they are being processed one at a time which is causing session timeouts under a heavy load. The WCF service is session based not sure if that makes any difference.

© Stack Overflow or respective owner

Related posts about multithreading

Related posts about wcf