Re: How to get GuacamoleConfiguration from url?

2017-12-20 Thread Mike Jumper
On Mon, Dec 18, 2017 at 5:59 AM, genesis wrote: > > I could not find some topics about the anonymous_identifier const, is there > any example on how to use that? > The manual has an overview of the general authentication process, structure of a Guacamole extension, and the

Re: How to get GuacamoleConfiguration from url?

2017-12-18 Thread genesis
I could not find some topics about the anonymous_identifier const, is there any example on how to use that? Thanks! -- Sent from: http://apache-guacamole-general-user-mailing-list.2363388.n4.nabble.com/

Re: How to get GuacamoleConfiguration from url?

2017-12-13 Thread genesis
Hi Mike, thanks for your response! Actually I just need to simplify the process. I just want to show the client screen directly (without login, home page menu, etc), after the user clicks on a url containing a single GuacamoleConfiguration. The validation process i will do transparently for the

Re: How to get GuacamoleConfiguration from url?

2017-12-13 Thread Mike Jumper
On Wed, Dec 13, 2017 at 9:59 AM, genesis wrote: > Hi Carl, I see. > And what do you do with this cookie on the getAuthorizedConfiguration > method? Do you decrypt it and map to a Map > object? > > My doubt is, how do you update the configs list

Re: How to get GuacamoleConfiguration from url?

2017-12-13 Thread genesis
Hi Carl, I see. And what do you do with this cookie on the getAuthorizedConfiguration method? Do you decrypt it and map to a Map object? My doubt is, how do you update the configs list when the user opens another tab, with another GuacamoleConfiguration on cookie?

Re: How to get GuacamoleConfiguration from url?

2017-12-13 Thread carl harris
> On Dec 13, 2017, at 6:44 AM, genesis wrote: > Did just substitute the GUAC_AUTH value with the encoded jwt? No, we did not replace the GUAC_AUTH cookie. That's private state for Guacamole itself, so we didn't want to muck with it. We simply added our own cookie to the

Re: How to get GuacamoleConfiguration from url?

2017-12-13 Thread carl harris
> On Dec 12, 2017, at 3:21 PM, genesis wrote: > But after that, if I click on other url: > http://guacamoleclient:8090/#/{guacamoleconfig_encrypted_2} with different > GuacamoleConfiguration parameters, the browser will open another tab, but > with the same connection of the

Re: How to get GuacamoleConfiguration from url?

2017-12-12 Thread genesis
Hi, thanks for the quick reply. Guacamole maps the GuacamoleConfiguration from the noauth-config.xml file. In my scenario i would like to pass a single GuacamoleConfiguration through the URL (and yes, all of the data - protocol, username, password, etc), then map it to the Map

Re: How to get GuacamoleConfiguration from url?

2017-12-12 Thread Nick Couchman
On Tue, Dec 12, 2017 at 2:29 PM, genesis wrote: > Hi, first of all I would like to congratulate the team for this amazing > product. > > I would like to provide the GuacamoleConfiguration data from a encrypted > string in URL, without authentication, with multiple connections,

How to get GuacamoleConfiguration from url?

2017-12-12 Thread genesis
Hi, first of all I would like to congratulate the team for this amazing product. I would like to provide the GuacamoleConfiguration data from a encrypted string in URL, without authentication, with multiple connections, for example: http://guacamoleclient:8090/#/{ENCRYPTED_TOKEN_1} First thing