In EWS Managed API is it easy to create an appointment for a specific user:

ExchangeService service = new ExchangeService();
service.Credentials = new NetworkCredentials ( "administrator", "password", "domain" );
service.AutodiscoverUrl(emailAddress);

Appointment appointment = new Appointment(service);
appointment.Subject = "Testing";
appointment.Start = DateTime.Now;
appointment.End = appointment.Start.AddHours(1);
appointment.Save();

This will create a appointment for the administrator. But say I wanted to actually create an appointment for another user (not add that user as an attendee to me appointment). It this possible via the EWS Managed API?

link|improve this question

@Alfred. Can you tell me where the bloody hell the Managed API DLL installed. I cant find it anywhere on my machine....Many Thanks. – brumScouse Jan 11 '11 at 10:28
@brumScouse. Instead of a comment you should post a new question. Anyway, the Managed API DLL is not installed with Exchange Server. You have to download it from Microsoft and install on your computer. As of this date, the most current version can be found at microsoft.com/downloads/en/… – Alfred Myers Jan 12 '11 at 18:38
feedback

2 Answers

up vote 1 down vote accepted

I figured it out from this article: http://msdn.microsoft.com/en-us/library/dd633680(EXCHG.80).aspx

You should use the service.ImpersonatedUserId attribute.

link|improve this answer
feedback
Folder inboxFolder = Folder.Bind(service, new FolderId(WellKnownFolderName.Inbox, "user1@example.com"));

Will work too. Then pass inboxFolder.id to the Appointment.Save call. The updates and deletes don't need this. The best answer is to use impersonate, but this requires it to be enabled by the server admins. If you don't wield such power, this method will let you do what you need. Note: the user running your application must have permissions on the target account or this will fail (as it should).

Found here: http://msdn.microsoft.com/en-us/library/gg274408(v=EXCHG.80).aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.