2

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")
Mustafa Temiz
  • 326
  • 1
  • 4
  • 19
  • 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 04 '09 at 06:14

1 Answers1

2

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

session.Stores.FindExchangePublicFoldersStore();
Mustafa Temiz
  • 326
  • 1
  • 4
  • 19