views:

25

answers:

1

I use the following code to save an appointment via Exchange Web Services Managed API:

Appointment appointment = new Appointment(m_exchangeService);
appointment.Subject = subject;
appointment.Body = body;
appointment.Start = start;
appointment.End = end;
appointment.Save();

When I do this the Appointment is created as a 'meeting' in Outlook. But I just want to have it as normal Appointment not a meeting. How do i do this?

A: 

I looked through an EWS integration I am working on and I can't find a simple answer. The closest thing I could find was the IsMeeting property, but it is read only. The article also implies that meetings are appointments if they don't have any attendees.

http://msdn.microsoft.com/en-us/library/aa565809(EXCHG.80).aspx

That may put you on the right path.

Tim