在 Lync 中为用户设置代理人和团队成员

Setting delegates and team members for a user in Lync

我正在尝试为使用 UCMA 的用户设置代理人和团队成员。我发现 this very useful post(链接到一些答案)关于如何设置呼叫转移规则以及如何设置同时响铃。其中一个建议是使用 Microsoft.Rtc.Internal.Collaboration.Routing,乍一看它有我需要的一切。

然而,问题是将一些地址添加到 Routing.Delegates 会将它们添加到用户委托列表中,但它们不会显示在 Lync 客户端中(见附图)。

查看Lync客户端如何将这些人添加到图中的列表中,我发现它不是通过路由类别发布的,而是使用这个XML:

<setDelegates xmlns="http://schemas.microsoft.com/2007/09/sip/delegate-management" version="6">
    <delegate uri="sip:somebody@example.com" action="add"/>
</setDelegates>

有什么方法可以使用 UCMA 发布此 XML?或者有其他方法可以将人员添加到列表中吗?

感谢任何建议。

我的问题已经得到解答here

解决方案是使用 _userEndpoint.InnerEndpoint.BeginSendMessage 中的 BeginSendMessage 手工制作响应。