Outlook integration

  • Thread starter Thread starter Mike P
  • Start date Start date
M

Mike P

Is it possible to incorporate Outlook in your web app so that you can
view your Inbox from your web app? And if so, does anybody have any
good links?
 
Hello Mike,

Outlook has no API to be integrated into Web (only in winforms)
albeit u can use OWA - outlook web access feature of Exchange Server

MP> Is it possible to incorporate Outlook in your web app so that you
MP> can view your Inbox from your web app? And if so, does anybody have
MP> any good links?
MP>
MP>
MP>
---
WBR, Michael Nemtsev [C# MVP].
My blog: http://spaces.live.com/laflour
Team blog: http://devkids.blogspot.com/

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangel
 
Hello!
Outlook has no API to be integrated into Web (only in winforms)
albeit u can use OWA - outlook web access feature of Exchange Server

I have to disagree here, because Outlook does indeed have a programming
interface (COM based) that can be used from any application type, including
web applications. Nothing says that this interface is "WinForms only".

I didn't clearly understand from Mike's original post whether his
architecture contains Exchange server, in which case it is of course easier
to use Exchange's built-in Outlook Web Access (OWA) feature to read mail.

But, if Mike is referring to a stand-alone Outlook installation, say, on
Windows XP, then it is indeed perfectly possible to write an ASP.NET
application that would call the Outlook COM interfaces, and read data in the
Inbox folder, or any other folder for that matter.

In fact, I wrote a magazine article seven years ago about such a
possibility. I was using Borland Delphi at that time, but the principles are
still valid for C# and ASP.NET applications.

Mike: which type of Outlook installation are you referring to?

Thanks!

--
Regards,

Mr. Jani Järvinen
C# MVP
Helsinki, Finland
(e-mail address removed)
http://www.saunalahti.fi/janij/
 
Hello Jani Järvinen [MVP],
J> I have to disagree here, because Outlook does indeed have a
J> programming interface (COM based) that can be used from any
J> application type, including web applications. Nothing says that this
J> interface is "WinForms only".

Agree, express myself wrong :) The idea is that u've described


---
WBR, Michael Nemtsev [C# MVP].
My blog: http://spaces.live.com/laflour
Team blog: http://devkids.blogspot.com/

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top