0

現在、イベントRemotePresenceViewにサブスクライブする があります。PresenceNotificationReceivedLync クライアントでプレゼンスまたはメモを変更するとイベントが正しく発生しますが、イベントを処理するRemotePresentityNotification.PersonalNote.Messageと空の文字列になります。はRemotePresentityNotification.AggregatedPresenceState正しいですが、個人的なメモは決してそうではありません。どうしたんだ?

Microsoft フォーラムにも質問を投稿しました: http://social.msdn.microsoft.com/Forums/en-US/ucmanagedsdk/thread/70f249a8-9f55-4e85-b4e4-bd5d18727b9f/ ;

4

1 に答える 1

0

この問題は、RemotePresenceView が関連付けられている UserEndpoint の OwnerUri が、RemotePresentityNotification の PresentityUri と同じ場合に発生しているようです。UserEndpoint のアカウントを変更して修正しました。メモを「町の外」に設定してテストした結果の例を次に示します。

  1. UserEndpoint.OwnerURI = master.user@test.com、RemotePresentityNotification.PresentityUri = master.user@test.com、注 = ""
  2. UserEndpoint.OwnerURI = master.user@test.com、RemotePresentityNotification.PresentityUri = test.user@test.com、Note = "郊外"
  3. UserEndpoint.OwnerURI = test.user@test.com、RemotePresentityNotification.PresentityUri = master.user@test.com、Note = "郊外"
  4. UserEndpoint.OwnerURI = test.user@test.com、RemotePresentityNotification.PresentityUri = test.user@test.com、注 = ""
  5. UserEndpoint.OwnerURI = test.user@test.com、RemotePresentityNotification.PresentityUri = secondtest.user@test.com、Note = "郊外"
于 2011-05-06T16:17:33.697 に答える