使用两个客户端之间的统一通信客户端SDK实时连续数据传输
问题描述:
我正在尝试开发一个应用程序,其中来自控制器的连续数据将被发送到另一个应用程序(两个应用程序都将使用统一通信客户端SDK开发)。 UCC SDK是否有支持此功能的API。我的猜测是用于即时消息的API在这里没用。
感谢您对此的投入。
谢谢
I am trying to develop an application where continuous data from a controller is to be sent to another application, (both applications to be developed using Unified communication client SDK). Does UCC SDK have API's to support this. My guess is that the API's used for Instant messaging would not be useful here.
I appreciate your inputs on this.
Thanks
答
就启动应用程序而言,您可能希望使用Communicator中的客户端可扩展性选项,如UCMA示例中所示 - 搜索
As far as initiating your application you might want to use the client extensibility option in Communicator as seen in the UCMA sample - search for
// Exten sible Conversation Window Blob |
public const string 可扩展性 =" < associatedData xmlns = \" http :// schemas.microsoft.com/LCS/2007/04/CallAssociatedData\" xmlns: xsi = \" http://www.w3.org/2001/ XMLSchema的instance\" xsi: schemaLocation = \" http://schemas.microsoft.com/LCS/ 2007/04 / CallAssociatedData \" > < associatedDataElement id = \" {0} \" 用途 = \" CWurl \" > < urlToHost > {1} < / urlToHost > < closeWithWindow > false < / closeWithWindow > < / associatedDataElement > < / associatedData > " ;; |
// Extensible Conversation Window Blob |
public const string Extensibility = "<associatedData xmlns=\"http://schemas.microsoft.com/LCS/2007/04/CallAssociatedData\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://schemas.microsoft.com/LCS/2007/04/CallAssociatedData\"><associatedDataElement id=\"{0}\" purpose=\"CWurl\"><urlToHost>{1}</urlToHost><closeWithWindow>false</closeWithWindow></associatedDataElement></associatedData>"; |