0

我正在创建一个 Java Web 应用程序来管理一组学生和教师之间的会议。他们都已经使用 Outlook 来管理他们的电子邮件和个人日历。

我想知道是否可以通过 REST 服务使用 Exchange、Office365 或 Sharepoint Team Calendar 构建我的 Web 应用程序的日程安排功能,以便检查可用性并为学生和其中一位可用的教师创建会议:

SharePoint 2013 REST 服务

到目前为止,我发现最有前途的机制是 Microsoft Sharepoint Server 的日历,它的协作功能可以创建会议并检查用户列表的可用性。缺点是它不支持一对一的会议,而是支持整个团队(据我所知)。

我的第二个选择是要求小组中的每个人(部门的学生和教师)公开他们的个人日历,以便网络应用程序能够检查学生和教师的可用性并发送会议请求。明显的问题是这种方法带来的隐私/安全问题。

我的最后一个选择(到目前为止不太喜欢,因为感觉就像重新发明轮子)是在网络应用程序中构建一个专有日历并向每个人发送 iCal 请求。这种方法的明显问题是两个分开的日历之间的同步。

此外,这个功能肯定是一个非常普遍的需求,所以应该有大量的博客解释如何利用 Exchange/Sharepoint/Office365 来实现它(其他平台不考虑,因为我雇主的基础设施是基于微软的)。但是,是否如此明显以至于没有人谈论它或者我没有在正确的地方搜索。有什么建议可以为我指明正确的方向吗?

4

1 回答 1

2

Exchange 本机显示 EWS(Exchange Web 服务)中公开的用户日历可用性,您的网络管理员必须配置启用 EWS 的 Exchange 服务器。但你猜怎么着...... Office 365(据我所知)启用了 EWS 服务,适当的交换是 Office 365 产品的一部分。

由于 EWS 是普通的 Web 服务,因此您应该在 java 中使用的任何内容中创建“服务存根”或代理,以创建映射 wsdl 文件的服务引用。

交换 EWS 是我的首选解决方案。

希望这可以帮助。

这是参考页面,此链接显示如何使用 C# 中的服务参考来进行正确的 API 调用。

http://msdn.microsoft.com/en-us/library/exchange/aa494212(v=exchg.140).aspx

static void GetUserAvailability(ExchangeServiceBinding esb)
{
    // Identify the time to compare free/busy information.
    Duration duration = new Duration();
    duration.StartTime = DateTime.Now;
    duration.EndTime = DateTime.Now.AddHours(4);

    // Identify the options for comparing free/busy information.
    FreeBusyViewOptionsType fbViewOptions = new FreeBusyViewOptionsType();
    fbViewOptions.TimeWindow = duration;
    fbViewOptions.RequestedView = FreeBusyViewType.MergedOnly;
    fbViewOptions.RequestedViewSpecified = true;
    fbViewOptions.MergedFreeBusyIntervalInMinutes = 35;
    fbViewOptions.MergedFreeBusyIntervalInMinutesSpecified = true;

    MailboxData[] mailboxes = new MailboxData[1];
    mailboxes[0] = new MailboxData();

    // Identify the user mailbox to review for free/busy data.
    EmailAddress emailAddress = new EmailAddress();

    emailAddress.Address = "tplate@contoso.com";
    emailAddress.Name = String.Empty;

    mailboxes[0].Email = emailAddress;
    mailboxes[0].ExcludeConflicts = false;

    // Make the request.
    GetUserAvailabilityRequestType request = new GetUserAvailabilityRequestType();

    // Set the time zone of the request.
    request.TimeZone = new SerializableTimeZone();
    request.TimeZone.Bias = 480;
    request.TimeZone.StandardTime = new SerializableTimeZoneTime();
    request.TimeZone.StandardTime.Bias = 0;
    request.TimeZone.StandardTime.DayOfWeek = DayOfWeekType.Sunday.ToString();
    request.TimeZone.StandardTime.DayOrder = 1;
    request.TimeZone.StandardTime.Month = 11;
    request.TimeZone.StandardTime.Time = "02:00:00";
    request.TimeZone.DaylightTime = new SerializableTimeZoneTime();
    request.TimeZone.DaylightTime.Bias = -60;
    request.TimeZone.DaylightTime.DayOfWeek = DayOfWeekType.Sunday.ToString();
    request.TimeZone.DaylightTime.DayOrder = 2;
    request.TimeZone.DaylightTime.Month = 3;
    request.TimeZone.DaylightTime.Time = "02:00:00";

    // Add the mailboxes to the request.
    request.MailboxDataArray = mailboxes;

    // Add the view options to the request.
    request.FreeBusyViewOptions = fbViewOptions;

    try
    {
        // Send the request and get the response.
        GetUserAvailabilityResponseType response = esb.GetUserAvailability(request);

        // Access free/busy information.
        if (response.FreeBusyResponseArray.Length < 1)
        {
            throw new Exception("No free/busy response data available.");
        }
        else
        {
            foreach (FreeBusyResponseType fbrt in response.FreeBusyResponseArray)
            {
                if (fbrt.ResponseMessage.ResponseClass == ResponseClassType.Error)
                {
                    Console.WriteLine(string.Format("Error: {0}", fbrt.ResponseMessage.MessageText));
                }
                else
                {
                    // Show the free/busy stream.
                    FreeBusyView fbv = fbrt.FreeBusyView;
                    Console.WriteLine(string.Format("Merged free/busy data: {0}", fbv.MergedFreeBusy));
                }
            }
        }
    }
    catch (Exception e)
    {
        // Perform error processing.
        Console.WriteLine(e.Message);
        Console.ReadLine();
    }
}
于 2013-09-11T04:09:31.710 回答