Re: Guacamole dynamically create connections

2021-11-11 Thread Tim Worcester
Just to follow up for anyone else that looks at this: I ended up having to comment out the binding of the GuacamoleTunnelService in the postgresql Injector and adding my own binding in my own MyBatis module Injector config section. The reason for this is that I needed getBalancedConnections to be

Re: Guacamole dynamically create connections

2021-11-05 Thread Tim Worcester
Some additional context on this: The problem I have is that the Postgresql extension has a call structure like this: connect() -> tunnelService.getGuacamoleTunnel() -> tunnelService.getBalancedConnections() Inside of getBalancedConnections() I get halted on these lines here: ``` // If group has

Re: Guacamole dynamically create connections

2021-11-03 Thread Tim Worcester
I am not, I couldn't get the new connection to be inserted without hacking up an admin user to be able to have the RBAC to add a connection to the underlying Connection Directory. On Wed, Nov 3, 2021 at 2:30 PM Mike Jumper wrote: > On Wed, Nov 3, 2021, 08:58 Tim Worcester > wrote: > >> Mike,

Re: Guacamole dynamically create connections

2021-11-03 Thread Mike Jumper
On Wed, Nov 3, 2021, 08:58 Tim Worcester wrote: > Mike, > > I have gotten this working with dynamically spinning up desktops when the > user clicks the connectionGroup. Unfortunately when I decorate the > ConnectionGroup and override connect() I lose all of the active session and > connection hi

Re: Guacamole dynamically create connections

2021-11-03 Thread Tim Worcester
Mike, I have gotten this working with dynamically spinning up desktops when the user clicks the connectionGroup. Unfortunately when I decorate the ConnectionGroup and override connect() I lose all of the active session and connection history tracking that the postgresql extension gives me. Right

Re: Guacamole dynamically create connections

2021-09-06 Thread Tim Worcester
Mike, Sorry for the delayed response, I finally got around to implementing some of your suggestions. This is exactly what I needed! Thank you so much :) Cheers, Tim On Sun, Aug 22, 2021 at 5:08 PM Mike Jumper wrote: > On Sun, Aug 22, 2021, 12:59 Tim Worcester > wrote: > >> Greetings, >> >>

Re: Guacamole dynamically create connections

2021-08-22 Thread Mike Jumper
On Sun, Aug 22, 2021, 12:59 Tim Worcester wrote: > Greetings, > > I have been looking through the code and I have been unable to find an > event that I can intercept in guacamole-ext to allow me to dynamically spin > up a desktop via some code, operator or controller in reaction to a user > click

Guacamole dynamically create connections

2021-08-22 Thread Tim Worcester
Greetings, I have been looking through the code and I have been unable to find an event that I can intercept in guacamole-ext to allow me to dynamically spin up a desktop via some code, operator or controller in reaction to a user clicking on a connection-group. Is there an event that I am missin