问题描述
 我有一个应用程序,它使用UCMA来获取lync用户的状态。
I have an application which uses UCMA for getting the status of the lync users.
我在这里有一个澄清,
I have a clarification here ,
有一个类如下:
public class UcPresenceProvider:Microsoft.Rtc.Collaboration.Samples.HTMLPresenceControls.Service.IPresenceProvider
  {
public class UcPresenceProvider : Microsoft.Rtc.Collaboration.Samples.HTMLPresenceControls.Service.IPresenceProvider
{
}
任何人都可以从外行人的角度告诉我,ApplicationEndpoint端点的价值是什么。
Can anybody tell me from a layman's point of view, what will be the value for the ApplicationEndpoint endpoint would be .
我只需要登录用户的状态即可。
I just need the status of a logged in user thats it .
推荐答案
您必须建立CollaborationPlatform的实例。
You must establish an instance of CollaborationPlatform.
您必须建立LocalEndpoint的实例(在这种情况下,ApplicationEndpoint)。
You must establish an instance of a LocalEndpoint (In this case an ApplicationEndpoint).
应用程序端点由在PowerShell中创建的应用程序联系人表示。 应用程序联系人依次与可信应用程序关联,该应用程序与可信应用程序池关联。
Application Endpoints are represented by an Application Contact that has been created in PowerShell. The application contact in turn is associated to a Trusted Application which is associated with a Trusted Application Pool.
SDK安装中包含显示状态的基本示例:
A basic example showing presence is included with the SDK install:
C:\Program Files \ Myscoft UCMA 4.0 \ SDK \Core \Sample Applications \QuickStarts \SubscribePresenceView
C:\Program Files\Microsoft UCMA 4.0\SDK\Core\Sample Applications\QuickStarts\SubscribePresenceView
同样是做手动或自动的示例可在此处找到可信应用程序的配置:
Likewise a sample for doing manual or automatic provisioning for a trusted application can be found here:
C:\Program Files\Microsoft UCMA 4.0 \ SDK \Core \Sample Applications \QuickStarts \ ManualProvisioning
C:\Program Files\Microsoft UCMA 4.0\SDK\Core\Sample Applications\QuickStarts\ManualProvisioning
C:\Program Files\Microsoft UCMA 4.0 \ SDK \Core \Sample Applications \QuickStarts\AutoProvisioning
C:\Program Files\Microsoft UCMA 4.0\SDK\Core\Sample Applications\QuickStarts\AutoProvisioning
这篇关于ApplicationEndPoint在UCMA应用程序中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!