What does COM Error 80010105 mean and where to find other codes?
Asked Answered
A

3

7

Is there a list of COM error codes somewhere?

Related: HRESULT: 0x80010105 (RPC_E_SERVERFAULT) question

Allemande answered 18/4, 2010 at 23:53 Comment(3)
where do you get this error ?Hughey
When trying to instantiate a class from a COM library.Allemande
possible duplicate of HRESULT exceptionsPrecessional
H
7

From Standard COM Errors (at least for Microsoft Commerce Server):

The following table shows the most common standard COM errors returned by the properties and methods of the Commerce Server objects:

Constant    Value (32-bit)  Description
S_OK            00000000    The standard return value used to communicate successful completion.
S_FALSE         00000001    An alternate success value, typically used to communicate successful, but non-standard completion. The precise meaning depends on the method or property in question.
E_UNEXPECTED    8000FFFF    Catastrophic failure error.
E_NOTIMPL       80004001    Not implemented error.
E_OUTOFMEMORY   8007000E    Out of memory error.
E_INVALIDARG    80070057    One or more arguments are not valid error.
E_NOINTERFACE   80004002    Interface not supported error.
E_POINTER       80004003    Pointer not valid error.
E_HANDLE        80070006    Handle not valid error.
E_ABORT         80004004    Operation aborted error.
E_FAIL          80004005    Unspecified error.
E_ACCESSDENIED  80070005    General access denied error.

Com Errors Search Engine

Hughey answered 18/4, 2010 at 23:56 Comment(4)
At the time of this comment (August 2012), the COM Errors Search Engine link points to a website that includes content from jfrsttc.freewww.biz, a site currently classified by Google as a known to distributor of malware.Adventurous
At the time of this comment, the COM Errors Search Engine site is broken and replies to all queries with HTTP 500.Texas
At the time of this comment, I wish someone had answered the first part of the question! Still need to know, "What does COM Error 80010105 mean?"Justino
The still-existing link doesn't include the error which was asked about. The other link is dead.Whipsaw
D
4

I got following information from the Windows Kits header file WinError.h:

//
// MessageId: RPC_E_SERVERFAULT
//
// MessageText:
//
// The server threw an exception.
//
#define RPC_E_SERVERFAULT                _HRESULT_TYPEDEF_(0x80010105L)
Donelu answered 16/10, 2017 at 6:24 Comment(0)
M
0

The answers so far only list few error codes. A far more comprehensive reference is Microsoft's MS-ERREF. The PDF is over 400 pages long and consists mainly of three tables containing error codes and their descriptions.

Marseilles answered 25/6 at 14:41 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.