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.MultiResponseServiceRequest1.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.

link|improve this question

75% accept rate
Nobody know the answer or had similar problem? – ahlun Sep 29 '11 at 6:35
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.