| Previous | Next |
| RPC_E_INVALIDMETHOD | RPC_E_RETRY |
RPC_E_DISCONNECTED
RPC_E_DISCONNECTED means that a COM object was disconnected from its clients. The proxy held by the caller is no longer usable, often because the server shut down, released the object, or deliberately disconnected it.
How to recover safely
- Discard the stale interface pointer and reacquire the object through the normal activation or connection path.
- Check server lifetime, shutdown, object recycling, and session-disconnect events.
- Do not repeatedly call the same disconnected proxy; it cannot recover by itself.
For operations that might have reached the server before disconnection, verify the server state before retrying.
Looking for a different code? Search another status or error code.