Sam
2009-12-18 20:47:01 UTC
I am trying to test the very simple example from the EWS Documentation that
creates an Appointment without sending a meeting request. I am getting
meeting request no matter what option I use with the save:
appointment =
new Appointment(exchangeService);
appointment.RequiredAttendees.Add(myexchangeemail)
appointment.ReminderMinutesBeforeStart = 24 * 60;
appointment.Subject = subject;
appointment.Body = body;
appointment.Start = startDate;
appointment.End = endDate;
appointment.Save(
SendInvitationsMode.SendToNone);
Are there additional properties I must set? I am authenticating with a
"service" login to Exchange via EWS. Must this "service" login have
permission or Delegate options set?
Any insight you can provide would be greatly appreciated.
creates an Appointment without sending a meeting request. I am getting
meeting request no matter what option I use with the save:
appointment =
new Appointment(exchangeService);
appointment.RequiredAttendees.Add(myexchangeemail)
appointment.ReminderMinutesBeforeStart = 24 * 60;
appointment.Subject = subject;
appointment.Body = body;
appointment.Start = startDate;
appointment.End = endDate;
appointment.Save(
SendInvitationsMode.SendToNone);
Are there additional properties I must set? I am authenticating with a
"service" login to Exchange via EWS. Must this "service" login have
permission or Delegate options set?
Any insight you can provide would be greatly appreciated.