Hello,
I have a problem when accessing an EWS folder.
Connect and Login succeed. GetFolderList also succeed and delivers the folders of the mailbox. When accessing that folder the EwsExcption below is raised.
var client = new Ews();
client.Connect("xxxxxxxxxxxx", SslMode.Implicit);
client.Login("user", "pw");
foreach (var fi in client.GetFolderList(EwsFolderId.Root)) {
if (fi.Name == "INBOX") {
Console.WriteLine("Try open in loop ...");
var f = client.FindFolder(fi.ParentId, fi.Name);
}
}
Result: EwsException-Message "Too many folders in response." (ProtocolCode and ProtocolMessage are null.
Is this a known issue?
Do you have any tipps to handle this problem?
Thank you and best wishes,
Christian