在手动客户端搜索之前,Lync 2013 SDK上的联系人状态/状态显示“状态未知”

时间:2014-07-24 05:26:24

标签: c# lync-2013 lync-client-sdk

我正在为lync开发一个自动化服务,它会根据用户的可用性/ lync“存在”自动将人们添加到IM对话中。它基本上列在一个列表中,检查谁在线,并将第一个人添加到呼叫中。

我遇到的问题是有时(通常在lync必须重新启动时),它并不总是获取联系人的存在。

首先,我让它抓住了存在。然后我添加了代码以检查ContactInformationChanged事件触发,但除非我进入应用程序并手动输入我正在寻找的别名,否则这似乎不会发生。

我在某处丢失了Refresh()方法吗?或者有没有办法强迫它找到这个?这是我的搜索方法:

   public Contact GetContact(string emailAddress)
    {
        Contact user;
        lock (ContactLookupCache)
        {
            while (!ContactLookupCache.TryGetValue(emailAddress.ToLower(), out user))
            {
                lock (Client)
                {
                    Client.ContactManager.BeginSearch(emailAddress, this.HandleContactLookup, null);
                }
                Monitor.Wait(ContactLookupCache);
            }
        }
        return user;
    }

 public string GetContactPresenceState(Contact contact)
        {            
            string presenceStatus = contact.GetContactInformation(ContactInformationType.Activity).ToString();
            // see if the status is either "Presence unknown" or "Updating..."
            if (IsUnknownPresenceState(presenceStatus))
            {
                lock (contact)
                {
                    //bug?? This event seems to only fire sometimes when you search on the app for contact details
                    contact.ContactInformationChanged += (object sender, ContactInformationChangedEventArgs e) =>
                    {
                        if (e.ChangedContactInformation.Contains(ContactInformationType.Activity))
                        {
                            lock (contact)
                            {
                                presenceStatus = contact.GetContactInformation(ContactInformationType.Activity).ToString();
                                if(!IsUnknownPresenceState(presenceStatus))
                                    Monitor.PulseAll(contact);
                            }
                        }
                    };
                    Monitor.Wait(contact);
                }
            }
            return presenceStatus;
        }

另外,对于糟糕的代码感到抱歉......我只是试图让它工作并且不断抛出更多的垃圾代码,希望能有所帮助。

1 个答案:

答案 0 :(得分:0)

您是否可以验证代码是否适用于联系人列表中的所有联系人,而且只是列出了未正确提升状态更改事件的那些联系人?

这对我有意义,因为您使用的是客户端SDK,它只会告诉您客户感兴趣的事件。例如,如果所有85,000个客户端收到其他85,000个客户端的状态更改,则会非常流量密集。一家公司。

我认为你处于定期轮询存在或将联系人添加到客户端的领域(可能只是为了保持整洁而在相关组下)。

如果不这样做,您可能需要查看比客户端SDK更适合集中服务的UCMA SDK。