PresenceViewは、手動でプロビジョニングされたアプリケーションエンドポイントを使用して作成されます。私はそれに3つのターゲットを提供しましたが、それらはすべて「サブスクライブ」を報告しています。しかし、私は最初の通知しか受け取りません。その後、何も起こりません。ポーリングの場合も同じです。NotificationRecievedイベントは、最初の通知の後で発生していません。Lyncイベントログにはエラーは表示されず、期待値もスローされません。
私のセットアップは、DC、Lync Server、およびアプリケーションプールとしても機能するDeveloperマシンを備えた仮想環境です。すべてが大丈夫に見えます。
以下は私のコードのサンプルです。私のソリューションは、小さなコンソールアプリケーションとlyncコードを使用したプロジェクトの2つのプロジェクトで構成されています。これは、UCMAコードサンプルのSubscribePresenceViewサンプルソリューションに基づいており、代わりにユーザーエンドポイントを使用しますが、プレゼンス状態を適切に更新します。
public void Run()
{
_helper = new Helper(new ConsoleLogger());
_applicationEndpoint = _helper.CreateApplicationEndpoint();
var viewSettings = new RemotePresenceViewSettings();
viewSettings.SubscriptionMode = RemotePresenceViewSubscriptionMode.Default;
_presenceView = new RemotePresenceView(_applicationEndpoint, viewSettings);
List<RemotePresentitySubscriptionTarget> targets = new List<RemotePresentitySubscriptionTarget>();
targets.Add(new RemotePresentitySubscriptionTarget("sip:mortenl@mupersan.local"));
targets.Add(new RemotePresentitySubscriptionTarget("sip:finnl@mupersan.local"));
targets.Add(new RemotePresentitySubscriptionTarget("sip:andersl@mupersan.local"));
this.WireUpHandlersForView(_presenceView);
_presenceView.StartSubscribingToPresentities(targets);
}
通知デリゲートメソッドの処理:
private void RemotePresenceView_NotificationReceived(object sender, RemotePresentitiesNotificationEventArgs e)
{
// A RemotePresentityNotification will contain all the
// categories for one user; Notifications can contain notifications
// for multiple users.
foreach (RemotePresentityNotification notification in e.Notifications)
{
Console.WriteLine("\nReceived a Notification for user "+ notification.PresentityUri + ".");
// If a category on notification is null, the category
// was not present in the notification. This means there were no
// changes in that category.
if (notification.AggregatedPresenceState != null)
{
Console.WriteLine("Aggregate State = " + notification.AggregatedPresenceState.Availability + ".");
}
if (notification.PersonalNote != null)
{
Console.WriteLine("PersonalNote: " + notification.PersonalNote.Message + ".");
}
if (notification.ContactCard != null)
{
// A ContactCard contains many properties; only display
// some.
ContactCard contactCard = notification.ContactCard;
Console.WriteLine("ContactCard Company: " + contactCard.Company + ".");
Console.WriteLine("ContactCard DisplayName: " + contactCard.DisplayName + ".");
Console.WriteLine("ContactCard EmailAddress: " + contactCard.EmailAddress + ".");
}
}
}
さらに詳しい情報が必要な場合はお知らせください。