本文介绍了支持UCMA端点连接中的TLS-DSK身份验证?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述




Lync服务器支持NTLM,Kerberos,TLS-DSK作为支持的身份验证协议。

The Lync servers support NTLM, Kerberos, TLS-DSK as supported Authentication Protocols.

然而,似乎 在端点连接模式下使用时,UCMA API不提供使用TLS-DSK作为身份验证方案的选项。 有没有办法连接到仅支持TLS-DSK作为身份验证协议的Lync服务器?

However, it appears that  UCMA API when used in the End Point connection mode does not provide an option to use TLS-DSK as an authentication scheme.  Is there any way to connect to a Lync server that only supports TLS-DSK as an authentication protocol?

//等

            _collabPlatform = new CollaborationPlatform(clientPlatformSettings);

            _collabPlatform = new CollaborationPlatform(clientPlatformSettings);

            _collabPlatform.AllowedAuthenticationProtocol = SipAuthenticationProtocols.None;   //身份验证协议限制 - TLS-DSK不可用。

            _collabPlatform.AllowedAuthenticationProtocol = SipAuthenticationProtocols.None;   //Authentication protocol limitation -- TLS-DSK not available.

UCFin

推荐答案


这篇关于支持UCMA端点连接中的TLS-DSK身份验证?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-15 11:51