Retrieving calendar entries from Exchange 2003 via .NET

  • Thread starter Thread starter Chris Spurgeon
  • Start date Start date
C

Chris Spurgeon

For a .NET intranet application I'm building, I need to look at each
employee's calendar to see if they have any "out of office" appointments
scheduled for the day. If they do, I need to display the info in a custom
web control.

Using .NET, how do I go about querying the Exchange 2003 server for that
information? (I assume it's possible, right?)

I'd be grateful for any pointers, code snippets, etc.

Thanks

Chris Spurgeon
(e-mail address removed)
 
Hi Chris,

The only thing I have for you is some links, I got from Jay B Harlow,

He mostly answers this kind of questions, and if he does, I will add the
link he gives to you for the Exchange 2003 server myself, but maybe you can
already look at this information.

http://www.microeye.com/resources/res_outlookvsnet.htm

http://msdn.microsoft.com/library/d...html/frlrfsystemwebmailsmtpmailclasstopic.asp

http://msdn.microsoft.com/library/d.../cdosys/html/_cdosys_schema_configuration.asp

http://msdn.microsoft.com/library/d...y/en-us/exchanchor/htms/msexchsvr_cdo_top.asp



I hope this helps a little bit?

Cor
 
You can use COM Interop with CDO For Exchange (your code must run on the
server then) or you can use WebDAV to retrieve the information (this code
can run anywhere). Look at the httpwebrequest object which allows you to
send WebDAV commands to the server.

Tom
 
Back
Top