我只是想知道 UCMA 3.0 SDK 是否支持这个。我计划使用 SIP 客户端呼叫独立的 UCMA 应用程序,该应用程序将使用 VXML 播放提示。谢谢。
问问题
943 次
2 回答
3
您需要先按照常规应用程序激活步骤配置应用程序端点。
之后使用 ucma 3.0 API 执行以下步骤:
1) Create a new collaboration platform. Using
X509Certificate2 cert ="your certificate thumb here";
CollaborationPlatform _collabPlatform;
ServerPlatformSettings settings = new ServerPlatformSettings(Name, LocalhostFQDN, ServicePort, ServerGruu, cert);
_collabPlatform = new CollaborationPlatform(settings);
_collabPlatform.AllowedAuthenticationProtocol = SipAuthenticationProtocols.Ntlm;
_collabPlatform.BeginStartup(PlatformStartupCompleted, _collabPlatform);
2) Create a new Endpoint.
Here is the callback.
private void PlatformStartupCompleted(IAsyncResult result)
{
try
{
_collabPlatform.EndStartup(result);
ApplicationEndpointSettings settings = new ApplicationEndpointSettings( AgentUri, ServerFQDN, ServerPort);
// For registered endpoints (recommended).
settings.UseRegistration = true;
_localEndpoint = new ApplicationEndpoint(_collabPlatform, settings);
_localEndpoint.BeginEstablish(EndpointEstablishCompleted, null);
}
catch (ConnectionFailureException connFailEx)
{
// ConnectionFailureException will be thrown when the platform cannot connect.
}
catch (RealTimeException rte)
{
// Any other RealTimeException could occur due to other error.
}
}
}
private void EndpointEstablishCompleted(IAsyncResult result)
{
_localEndpoint.EndEstablish(result);
//Register Event for incoming call here.
}
于 2012-12-11T06:15:34.237 回答
0
如果我的问题正确,您想创建独立的 ucma 应用程序,当有人使用 sip 电话呼叫时可以播放提示。正确的?如果是这样,这是可能的。对于 sip 电话,您可以使用 Phoner lite 或 xlite。但是 phoner lite 不支持呼叫转移。要创建独立应用程序,请检查此http://www.ksac.com/blog/bid/58799/UCMA-3-0-Programs-Without-Lync-Server
于 2011-07-18T09:21:10.413 回答