Troubleshooting: Outlook Social Connector Provider error codes
Outlook Social Connector providers should return errors to the caller. Please note that Success, warning, and error values are returned by using a 32-bit number that is called a result handle, or HRESULT. An HRESULT is not a handle to anything; it is merely a 32-bit value that has several fields encoded in the value.
A positive result indicates success with status, a zero result indicates success without status (S_OK), and a negative result indicates failure. I have listed the couple of the error codes that I noticed…
Error code |
Description |
0x80041404 |
Authentication failed on the network of the social network site. |
0x80041402 |
No connection is available to connect to the social network site. |
0x80004005 |
General failure error. |
0x80041403 |
The OSC provider denied permission for the resource |
0x80070057 |
An invalid argument was passed to a function. |
For the detailed list of Outlook Social Connector Provider Error Codes are listed at https://msdn.microsoft.com/en-us/library/ff759376.aspx
Comments
- Anonymous
May 10, 2013
Good one. Finally i got something for Social Connector related errors.