Is there a better place I should post this question? Someplace that I would
get a reply in a timely manner? I just want to know what Microsoft provides
to do what I need. Their online documentation gives me conflicting answers.
Hello,
to do this realtime in both ways, you will need two sorts of event handler,
namely one on both ends. I don't know if the other mail system allows this,
but Exchange has the concept of event sinks.
To get notifications on multiple mailboxes, you'll have to implement a
synchronous store-wide event sink (OnSyncSave, OnSyncDelete) and catch the
modification. The technique to use is ExOleDB here.. probably with CdoEx on
top.
But you must be careful when implementing it, as the event is synchronous to
Exchange, meaning that it blocks the Exchange server. So I would suggest you
just use thread for notification and process the the changes in another
thread or process.
See http://www.infinitec.de/articles/exchange/managedeventsinks.aspx for
more info on this.
Best regards,
Henning Krause
> Henning,
>
[quoted text clipped - 4 lines]
> get/enter calendar events. Ultimately it will be used to synchronize 2
> separate e-mail/scheduling systems in real-time.