RE: Access to data associated to guac-organization from Java code

2023-06-22 Thread Gabriel Huerta Araujo
>> How can I get attributes related to DataBase Authentication Provider, not >> Tacacs Authentication Provider? Because with this last, there is no >> attributes. >> @Override >> public Map getAllTokens(String organization) throws >> GuacamoleException { >> final Map

RE: Access to data associated to guac-organization from Java code

2023-06-22 Thread Gabriel Huerta Araujo
>> You can view the guacamole-ext documentation here: >> https://guacamole.apache.org/doc/guacamole-ext/ >> The user's organization is an Attribute, so it'd be something like: >> GuacamoleSession session = entry.getValue(); tokens.put(entry.getKey(), >>

RE: Access to data associated to guac-organization from Java code

2023-06-21 Thread Gabriel Huerta Araujo
eq 200) { print $client->responseContent(); } else { print Dumper($client) . "\n"; } -Gabriel -Mensaje original- De: Gabriel Huerta Araujo Enviado el: miércoles, 21 de junio de 2023 02:19 p. m. Para: user@guacamole.apache.org Asunto: RE: Access to data associated to guac-o

RE: Access to data associated to guac-organization from Java code

2023-06-21 Thread Gabriel Huerta Araujo
>> I want to create a REST Service call (GET), where Guacamole Application >> gives all users logged(sessionMap attribute(its keys) from >> HashTokenSessionMap class). First this call is going to be called from a >> script >> perl. One by one, by its identifier is going to be called other >>

RE: Access to data associated to guac-organization from Java code

2023-06-20 Thread Gabriel Huerta Araujo
to data associated to guac-organization from Java code >> You can view the guacamole-ext documentation here: >> https://guacamole.apache.org/doc/guacamole-ext/ >> The user's organization is an Attribute, so it'd be something like: >> GuacamoleSession session = entry.ge

RE: Access to data associated to guac-organization from Java code

2023-06-20 Thread Gabriel Huerta Araujo
>> You can view the guacamole-ext documentation here: >> https://guacamole.apache.org/doc/guacamole-ext/ >> The user's organization is an Attribute, so it'd be something like: >> GuacamoleSession session = entry.getValue(); tokens.put(entry.getKey(), >>

Re: Access to data associated to guac-organization from Java code

2023-06-20 Thread Nick Couchman
On Tue, Jun 20, 2023 at 4:32 PM Gabriel Huerta Araujo wrote: > > Hi > > I am trying to create a REST Service call where organization is passed as > parameter and all tokens associated to this organization can be filtered. > > public Map getAllTokens(String organization) throws >