I am using VB.net and EWS Managed API on Exchange 2010. Recently I received below error:
Microsoft.Exchange.WebServices.Data.ServiceResponseException: Recurrence has no occurrences in the specified range. at Microsoft.Exchange.WebServices.Data.ServiceResponse.InternalThrowIfNecessary() at Microsoft.Exchange.WebServices.Data.MultiResponseServiceRequest
1.Execute() at Microsoft.Exchange.WebServices.Data.ExchangeService.InternalBindToItems(IEnumerable1 itemIds, PropertySet propertySet, ServiceErrorHandling errorHandling) at Microsoft.Exchange.WebServices.Data.ExchangeService.BindToItem(ItemId itemId, PropertySet propertySet) at Microsoft.Exchange.WebServices.Data.ExchangeService.BindToItem[TItem](ItemId itemId, PropertySet propertySet) at Microsoft.Exchange.WebServices.Data.Item.Bind(ExchangeService service, ItemId id, PropertySet propertySet)
From the error message, seems like the error came from when using Item.Bind(). Here is my code:
Dim apptItem As Item
apptItem = Item.Bind(exchangeService, New ItemId(itemID), New PropertySet(BasePropertySet.FirstClassProperties))
If apptItem Is Nothing OrElse apptItem.ItemClass <> "IPM.Appointment" Then
'Do something
End If
Anyone know what is the problem?
Thanks.