Hello everyone.

The Mixed Reality Forums here are no longer being used or maintained.

There are a few other places we would like to direct you to for support, both from Microsoft and from the community.

The first way we want to connect with you is our mixed reality developer program, which you can sign up for at https://aka.ms/IWantMR.

For technical questions, please use Stack Overflow, and tag your questions using either hololens or windows-mixed-reality.

If you want to join in discussions, please do so in the HoloDevelopers Slack, which you can join by going to https://aka.ms/holodevelopers, or in our Microsoft Tech Communities forums at https://techcommunity.microsoft.com/t5/mixed-reality/ct-p/MicrosoftMixedReality.

And always feel free to hit us up on Twitter @MxdRealityDev.

ServerSessionsTracker not updating Sessions list when leaving session

Hello! (Reposting as a question, other post wasn't marked as such.)

I have a problem with the ServerSessionsTracker script not updating the Sessions list locally, after leaving the session.

  1. Run server, use AutoJoinSession script to join a session with custom name.
  2. Session Manager UI shows "Default" (persistent) and custom session (adhoc) correctly.
  3. Call ServerSessionsTracker.LeaveCurrentSession(), server log shows that client has left the custom-named session, and that session is now closed. This is reflected in the Session Manager UI correctly (ie. only 1 session, "Default", exists now).
  4. Try to use new instance of AutoJoinSession to join a session with the same custom name. The session should not exist yet at this point, but there is a match (by session name) when comparing with ServerSessionsTracker.Sessions.
  5. It then tries to join that local session (which no longer exists on the server), and returns true from ServerSessionsTracker.JoinSession(Session), thinking it successfully joined the session on the server. No errors are logged.
    In ServerSessionsTracker.cs, there is an event handler for SessionManagerAdapter.SessionClosedEvent, where it removes the session from the local list. However, it doesn't seem to do anything?

Anyone else encounter this issue?

Thanks,
Dean

Sign In or Register to comment.