OpenMsgStore returns MAPI_E_NO_ACCESS
Sun, 28 Oct 2007 04:42:19 -0000
OpenMsgStore sometimes returns MAPI_E_NO_ACCESS. I am calling it with
ids returned by enumerating the msg store table. In what scenario
would there be a store in the table that the user does not have access
to?
Also, is it necessary to specify MAPI_BEST_ACCESS to OpenMsgStore if
I'm only reading from the sto ...
|
MAPI_E_CALL_FAILED on MAPIInitialize
Sun, 28 Oct 2007 04:25:57 -0000
My MAPIInitialize call seems to fail for some (high) percentage of the
users who run my software. Here's the call, in Python:
mapi.MAPIInitialize((mapi.MAPI_INIT_VERSION,
mapi.MAPI_MULTITHREAD_NOTIFICATIONS))
I've also tried not passing any args and not passing
MAPI_MULTITHREAD_NOTIFICATIONS.
I've read a ...
|
Re: IConverterSession example
Thu, 25 Oct 2007 09:27:04 -0700
After i used this code .....
<<<
HRESULT CMyMapi::ProcessMessage(LPMESSAGE lpMsg)
{
HRESULT hr = S_OK;
LPTSTR lpszFileName = _T("c:\\temp\\stream.dat");
LPSTREAM pStream = NULL;
IConverterSession* pConvSess = NULL;
hr = CoCreateInstance(CLSID_IConverterSession, NULL,
CLSCTX_INPROC_SERVER, IID_IConve ...
|
Re: IConverterSession on a machine without Outlook installed
Thu, 25 Oct 2007 00:19:02 -0700
Does that mean we cant extract data from Exchange in MIME stream?
"Stephen Griffin [MSFT]" wrote:
> nope
>
> "Martin Komischke" <makom.news@arcor.de> wrote in message
> news:46f0ddf0$0$16110$9b4e6d93@newsspool1.arcor-online.net...
> > Stephen Griffin [MSFT] wrote:
> >> IConverterSession is implemented ...
|
difference between Exchange MAPI and Outlook MAPI?
Thu, 25 Oct 2007 00:17:00 -0700
hi ,
Is there any diff betn Exchange MAPI and Outlook MAPI?
Regards
Sumeet ...
|
MAPI programming
Wed, 24 Oct 2007 17:13:23 +0530
Hello,
I am a novice in this area, so please ignore this post if it is not relevant
to this group.
I am assigned to a project that migrates email and other data from a
'source' exchange server to a 'target' exchange server. The catch is that
the migrating application will not be in the same domain as tha ...
|
Re: MFCMapi does not render messages
Tue, 23 Oct 2007 21:17:07 -0400
The error you are getting is
C:\WINDOWS\system32>err 0x80010104
# for hex 0x80010104 / decimal -2147417852
RPC_E_FAULT winerror.h
# RPC could not call the server or could not return the
# results of calling the server.
So it is very possible that you were ...
|
|
|
MAPI Support in Exchange Server 2007
Sun, 21 Oct 2007 23:31:16 -0700
Hi all,
While i am trying to initliaze MAPI using the MAPI call
MAPIInitialize() fails with the error MAPI_E_CALL_FAILED. I have
downloaded and installed the stand alone MAPI from the url
http://www.microsoft.com/downloads/details.aspx?FamilyID=e17e7f31-079a-43a9-bff2-0a110307611e&DisplayLang=en
But still ...
|
MAPI Stream type
Thu, 18 Oct 2007 14:53:47 +0100
Hi Guys
When a stream for a property such as PR_BODY_W is generated, is the type of
the stream STGTY_STREAM or should it be STGTY_PROPERTY?
Cheers
Win
...
|
How to get size of a message
Thu, 18 Oct 2007 12:50:31 +0200
Hi,
I would like to know if there is a way of knowing message size without
retrieving each field.
I am currently developping a software on windows mobile and I need to
know the size of a SMS entry inside Inbox Folder.
So I am going to do this :
ULong_t CCoMessagesDb::GetMessageSize(LPMESSAGE lpMessage)
{ ...
|