Windows 8 でモバイル ソリューション、つまり Windows ストア アプリを構築しています。これにより、メンテナンス担当者がカスタマー サポート チームとつながるためのリアルタイム コラボレーション機能が可能になります。コラボレーションのニーズをサポートするために、Lync 2010 クライアント SDK を活用しています。以下は、アプリで有効にする予定の主な機能です。
- テキスト会話
- 音声会話
- ビデオ会話
- ファイル共有(送受信)
- リモート デスクトップ共有
- ホワイトボードの共有
以下は、Lync を Windows ストア アプリと統合するために採用したアプローチです。
Lync will be running in UI Suppression Mode & app will communicate with Lync client through SDK APIs, since the functionality is needed within the application.
Lync Assemblies are wrapped in WCF service, since Lync SDK is not available for Windows Store apps.
現在、UI 抑制モードで SDK を介してテキストと音声の会話を有効にすることができます。
We right now are in need of an approach to enable File sharing between the app & Lync standard Client.
ファイル転送に使用できるオプションは、以下の参照に従って GUID 交換を必要とするコンテキスト会話によるものです。
http://code.msdn.microsoft.com/office/Lync-2010-Transferring-f766e7aa
このシナリオが Windows ストア アプリと標準の Lync クライアントの間で機能するかどうかを知りたいです。
Along with File transfers, we'd also need the approach to enable video conversations, remote desktop/white board sharing with the current approach (Lync -> WCF Service -> Windows Store app) as from SDK it is not clear how we get stream data which can be forwarded to Windows Store app.
Just found out that Desktop/Whiteboard/Resource sharing is not possible in UI Suppression mode, (reference below)
The following behavior will be the concern from user experience point of view in case of Automation APIs, especially for Windows Store App, considering their full screen behavior
会話を開始すると、対応する会話ウィンドウが点滅し、ユーザーがデスクトップに移動します。ユーザーは手動で Windows ストア アプリに移動し、このイベントを投稿する必要があります。デスクトップ アプリ、つまり、DockWindow() を使用する WinForms/WPF の場合、会話ウィンドウをドッキングできます。Windows ストア アプリの方法はありますか? 着信通知が泡立ち、Windows ストア アプリでのユーザー エクスペリエンスが妨げられます ユーザーはファイル転送を受信するには、会話ウィンドウで手動で受け入れる必要があります 自動化 API が唯一の場合、上記の動作を回避するための最善の解決策があるかどうかアドバイスしてくださいWindows ストア アプリで使用するオプション。