Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

"Object invoked has disconnected from its clients"

Status
Not open for further replies.

kdaniels

Programmer
Oct 24, 2000
1
US
I am receiving this error periodically (0x80010108) in a DCOM client connecting to an out-of-proc .exe server. Checked MSDN and did not find much...

Any thoughts on how to track this one down?????

KDaniels [sig][/sig]
 
This message will normally only be returned when accessing an object which implements IMarshall and which has for some reason been shutdown. The error code is actually returned from the proxy and not from the object.

As to the reasons for the object being shutdown, I'm afraid I can't begin to guess without further information.

The process by which this error is returned is described in the MSDN under the section on IMarshall::DisconnectObject ().

If you are usng COM+ this problem may be due to the client trying to access a server object which implements IObjectControl before IObjectControl::Activate has been called or after IObjectControl::Deactivate has been called.

Hope this helps ;) [sig][/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top