0

我有一个 ASP.NET MVC 4 Intranet 应用程序。

该应用程序使用 Windows 身份验证来验证用户。我可以使用 User.Identity.Name 获取用户名。这包含域名和用户名 (MyDomain\Username)。

我现在想通过 Exchange Web 服务 API 向用户日历添加约会。

我可以这样做:

var service = new ExchangeService(ExchangeVersion.Exchange2010_SP2);
        service.Credentials = new WebCredentials(Settings.MyAccount, Settings.MyPassword);
        service.Url = new Uri(Settings.ExchangeServer);

var appointment = new Microsoft.Exchange.WebServices.Data.Appointment(service);
appointment.Subject = setAppointmentDto.Title;
appointment.Body = setAppointmentDto.Message;
appointment.Location = setAppointmentDto.Location;

 ...

appointment.Save(SendInvitationsMode.SendToAllAndSaveCopy);

这会为凭据中指定的用户添加约会。

我没有当前登录用户的密码。由于我使用的是 Windows 身份验证(Active Directory 帐户),有没有办法以某种方式使用此身份验证信息通过使用 Web 应用程序的用户的帐户来使用 Exchange Web 服务?由于安全原因,无法从 Active Directory 中检索用户密码。

还有另一种方法吗?作为使用该服务的用户,是否可以为另一个用户创建约会?

问候

亚历山大

4

1 回答 1

1

您有两种设置凭据的选项。

// Connect by using the default credentials of the authenticated user.
service.UseDefaultCredentials = true;

或者

// Connect by using the credentials of user1 at contoso.com.
service.Credentials = new WebCredentials("user1@contoso.com", "password");

上述和完整信息的来源在这里http://msdn.microsoft.com/EN-US/library/office/ff597939(v=exchg.80).aspx

Microsoft 还建议使用自动发现来设置 URL 端点

// Use Autodiscover to set the URL endpoint.
service.AutodiscoverUrl("user1@contoso.com");

如果您想为另一个用户创建约会,您将使用

appointment.RequiredAttendees.Add("user2@contoso.com");

或者

appointment.OptionalAttendees.Add("user3@contoso.com");

取决于它们是必需的还是可选的。

但是,这会将约会更改为会议。会议请求只是与与会者的约会。

于 2013-11-14T13:42:30.917 回答