Hello,
your task is not clear to me. Do you want to iterate through each users
mailbox and compile those tasklist for each user? Or do you just want to
create a task list for a specific user to print those in a certain
environment?
The most suitable API depends on the location where your code will run. If
it runs on the server, OOM is out of question, since Outlook is not
supported on the server (not until Exchange 2007).
MAPI is also not suitable, since it's not supported from managed code. You
can use WebDAV (http://msdn2.microsoft.com/en-us/library/aa486282.aspx), CDO
via Interop or CdoEx (only directly on the server). If you are using
Exchange 2007, you should probably use the WebServices offered by that
version.
I have a bunch of articles on my website regarding WebDAV
(http://www.infinitec.de).
Kind regards,
Henning Krause
>I thought this would be a simple task but I have never done any programming
> where I needed to access data from Exchange. I'm trying to compile a list
[quoted text clipped - 11 lines]
> direction.
> Ben