Reputation: 218702
How can i send task /appointments to Microsoft outllook using dot net ? I searched in net and found that we can do this with Microsoft Outlook 10.0/11.0 Object Library
http://www.vbdotnetheaven.com/UploadFile/sridhar_msd/TaskInOutLook07022007023227AM/TaskInOutLook.aspx http://www.codeproject.com/KB/cs/sendtaskspgmticly.aspx
Now my question is do i need an microsoft outlook instance running in my server ? Do i need anything in my client other than a browser ?
Please advice
Upvotes: 0
Views: 1076
Reputation: 21630
If you're dealing with Exchange, look up Exchange web services (EWS). It's quite powerful.
http://msdn.microsoft.com/en-us/library/bb204119.aspx
Upvotes: 0
Reputation: 15261
From Considerations for server-side Automation of Office: Current licensing guidelines prevent Office applications from being used on a server to service client requests, unless those clients themselves have licensed copies of Office.
So you not only need to have it on server, you need to make sure your clients have Office too. And whose tasks/calender you plan to post to? There isn't a user profile in service.
Upvotes: 2