vote up 1 vote down star
1

When I try to access a public folder using Session.GetFolderFromPath I get an error "Error in IMAPITable.FindRow: MAPI_E_NOT_FOUND" at >>:

Type COMType = Type.GetTypeFromProgID("fkvbmapi.FKRDOSession");
RDOSession session = Activator.CreateInstance(COMType) as RDOSession;
Session.LogonExchangeMailbox(user, server);
>>RDOFolder folder = exchange.Session.GetFolderFromPath(@"\\Public Folders\All Public Folders")
flag
I've found the same problem and was wondering if All Public Folders is always availble assuming there is a public folder database? – Hannes de Jager Nov 4 at 6:14

1 Answer

vote up 0 vote down check

It seems to be necessary to have following code before calling GetFolderFromPath:

session.Stores.FindExchangePublicFoldersStore();
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.