I have a program that subscribes to multiple Exchange 2010 mailboxes using EWS Managed API's streaming notifications.

When I get a notification related to an item, I need to determine whose mailbox that item belongs to. I'm able to get the item's ID and the parent folder's ID, etc., but I don't see any way to determine what mailbox the item belongs to.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Ok, so if I understand your application correctly you are using Impersonation and create subscriptions for all impersonated users. And when you receive event from subscription you want to know for which user this event occurred. If that is the case can't you just keep your subscriptions mapped to user that subscription was created for? Simple Dictionary<StreamingSubscription, ImpersonateduserId> would be enough And when you get notification you get subscription object from NotificationEventArgs.Subscription property and find user id that subscription was created for in you map. From ImpersonatedUserId you can get smtp address (property Id) and you know which exatcly user that was.

link|improve this answer
I was hoping for an answer that would allow me to find a mailbox just through an ItemID, but this will work. Thanks. – Tedderz Jul 11 '11 at 13:24
as far as I know there is no way of determining mailbox just with ItemId. for more complex configurations you can have for example several servers in cluster and if EWS service is properly configured you can access (impersonate) users from all of them while being connected only to one of them. so finding item just with ItemId probably would be too time and resource consuming or maybe even impossible to implement. – grapkulec Jul 11 '11 at 14:24
feedback

Your Answer

 
or
required, but never shown

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