Hi, I'm trying to set up guacamole so that users on my large multi-user server can start up their own VNC sessions (eg, via an SSH session). On the user's home page, I want to list all their currently existing VNC sessions.
I have adapted the PAMAuthenticationProvider (subclass of SimpleAuthenticationProvider) to do this real-time check for the user's VNC sessions, by overriding getAuthorizedConfigurations(), and also overriding updateAuthenticatedUser() to re-generate that list when the user reloads their home page. BUT, I'm finding that even though I am returning a new AuthenticatedUser with a new set of available connections, the All Connections list on their home page is not updating. Do I need to go in and adjust the existing AuthenticatedUser?, or is there some other method I should be overriding instead? Or is it not possible to update the list of available connections after login? Thanks for any guidance! --dustin (my code: https://github.com/dstndstn/guacamole-create-vnc/blob/auth/src/main/java/com/github/dstndstn/guacamole/CreateVNCAuthenticator.java#L129 )
