Hey,
Is there any possibility to get another user calendar data, his/her appointments for selected period of time?
I know that I can get my appointment items by using Exchange Web Services and code like that below (from http://msdn.microsoft.com/en-us/uc14trainingcourse_5l_topic2.aspx):
- CalendarView calendarView = new CalendarView(DateTime.Now,
- DateTime.Now.AddDays(numberOfDays));
- FindItemsResults<Appointment> appointments =
- _service.FindAppointments(
- WellKnownFolderName.Calendar,
- calendarView);
But I want now to get not mine but someone calendar data. Is there also posibility to use Exchange Web Services with server-side applications? Or another method without setting user login and password or using default credentials to get calendar items?