use CDO to create public folder?

  • Thread starter Thread starter Ripley
  • Start date Start date
R

Ripley

I have seen this article:
http://msdn.microsoft.com/library/d...-us/e2k3/e2k3/_hosting_createpublicfolder.asp

I can't seem to make the conversion to C# - I don't see how to even do
something as simple as create a new folder object. The intellisense after
"CDO." doesn't seem to provide that.

More importantly, I need to know if it is possible to have this code (or
some code that works) NOT reside on the exchange server. Many examples I see
in MSDN for C# and CDO all say the code must reside on the exchange server.
I'd really NOT have to do that.

Thanks,
Ripley
 
Ripley said:
More importantly, I need to know if it is possible to have this code (or
some code that works) NOT reside on the exchange server. Many examples I
see in MSDN for C# and CDO all say the code must reside on the exchange
server. I'd really NOT have to do that.

If you want the code to reside elsewhere, you should consider using SMTP for
sending mail.

http://www.codeproject.com/csharp/IndySMTP.asp


--
Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
"Programming is an art form that fights back"

Empower ASP.NET with IntraWeb
http://www.atozed.com/IntraWeb/
 
Ripley said:
I'm not sending mail, I'm creating a public folder.

Aah - sorry read too fast. There are some remoting options for Exchange, but
from what Ive seen they arent pretty.

IMAP allows folder creation too - not sure if Exchange would map the IMAP
folders as you wish though.


--
Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
"Programming is an art form that fights back"

Get your ASP.NET in gear with IntraWeb!
http://www.atozed.com/IntraWeb/
 
Back
Top