Notification to a user before he has been logged out

2023-08-31 Thread Gabriel Huerta Araujo
Hi all I made a change to select one or more users and logout their access in the guacamole. Any idea on how to implement when before the user has been removed from guacamole, display a window to his guacamole session indicating the above? -Gabriel

RE: Page like Active Sessions is not shown

2023-07-31 Thread Gabriel Huerta Araujo
@guacamole.apache.org Asunto: Re: Page like Active Sessions is not shown On Mon, Jul 31, 2023 at 10:58 AM Gabriel Huerta Araujo wrote: > > Hi > > I have added a page into Web Guacamole application, where I can see this new > page, but with other user is not presented. Is there

Page like Active Sessions is not shown

2023-07-31 Thread Gabriel Huerta Araujo
Hi I have added a page into Web Guacamole application, where I can see this new page, but with other user is not presented. Is there something which is needed to configure in order this user can view this new page? -Gabriel -

RE: Using a PATCH request to remove logged users

2023-07-25 Thread Gabriel Huerta Araujo
>> Because that endpoint has not been implemented in the Guacamole Client code. >> The Token REST service only has two endpoints: >> * POST that takes credentials and produces a token, assuming the >> authentication succeeds. >> * DELETE with a single token that invalidates the token. Ok, I

Using a PATCH request to remove logged users

2023-07-24 Thread Gabriel Huerta Araujo
I am trying to make a PATCH request in order to remove n tokens, as active connection does {headers: {…}, method: 'PATCH', url: 'api/tokens', data: Array(1)} data: Array(1) 0: {op: 'remove', path: '/9090FE7421EBADE951915BC458254C09CE021E3A5E8D37C377B5E4B476B40EDF'} length: 1 [[Prototype]]:

RE: EXT: Re: vscode extension debugging documentation

2023-07-22 Thread Gabriel Huerta Araujo
Hi Michael I am trying to configure an application server (Tomcat) with Netbeans, but it throws below message The specified Server Location (Catalina Home) folder is not valid How did you configure Tomcat Application Server into Netbeans? -Gabriel -Mensaje original- De: Michael

Adding a page for managing logged users

2023-07-21 Thread Gabriel Huerta Araujo
Hi I am trying to create a page which I can see all logged users I copycat all js files used for activeConnections In fact, it looks similar to guacSettingsSession Angular module angular.module('settings').directive('guacSettingsSessions', [function guacSettingsSessions() { return {

REST API returns a map of map of list

2023-06-26 Thread Gabriel Huerta Araujo
Hi How can I get a REST Api call which returns a map of map of list? @GET @Path("/allusers") public Map>> getAllUsers() throws GuacamoleException { return authenticationService.getAllUsers(); } Something similar to this: { "Tacacs: { "CNS" : ["user1", "user2", "user3" ] } }

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
Sorry key for my map used is incorrect. It is not identifier, it is entry.getValue().getAuthenticatedUser().getCredentials().getUsername() -Mensaje original- De: Gabriel Huerta Araujo Enviado el: martes, 20 de junio de 2023 06:33 p. m. Para: user@guacamole.apache.org Asunto: RE: Access

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(), >>

Access to data associated to guac-organization from Java code

2023-06-20 Thread Gabriel Huerta Araujo
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 GuacamoleException { final Map tokens = new HashMap();

RE: guacd error segfault in libguac-client-rdp.so.0.0.0

2023-06-09 Thread Gabriel Huerta Araujo
>> I'll get an RC going today. >> For any users encountering this while looking to upgrade, interim solutions >> would include any of the following: >> * Build and install guacamole-server from the "staging/1.5.3" branch on git. >> * Leverage the "guacamole/guacd" Docker image for guacd. >> *

RE: guacd error segfault in libguac-client-rdp.so.0.0.0

2023-06-09 Thread Gabriel Huerta Araujo
>> It may be easier just for you to start guacd directly with gdb and get the >> information that way. Basically, you'll need to: >> * Make sure gdb is installed, using your package manager for whatever >> distribution you're running. >> * Launch guacd via gdb, as follows: gdb --args

Guacamole REST petition to get all user tokens.

2023-06-08 Thread Gabriel Huerta Araujo
Hi I am executing a perl script which executes a REST GET to get all token users and sends an error: '_rc' => '405', '_headers' => bless( { 'client-date' => 'Fri, 09 Jun 2023 00:16:20 GMT',

RE: guacd error segfault in libguac-client-rdp.so.0.0.0

2023-06-07 Thread Gabriel Huerta Araujo
miércoles, 7 de junio de 2023 12:13 p. m. Para: user@guacamole.apache.org Asunto: Re: guacd error segfault in libguac-client-rdp.so.0.0.0 On Wed, Jun 7, 2023 at 1:44 PM Gabriel Huerta Araujo wrote: > > > Usually they're "core.", so you may want to search for &q

RE: guacd error segfault in libguac-client-rdp.so.0.0.0

2023-06-07 Thread Gabriel Huerta Araujo
> Usually they're "core.", so you may want to search for "-name core.\*". I did not find anything: # for i in `find / -name "core.*" -print 2>/dev/null` do file $i | grep "core file" >/dev/null if [ $? -eq 0 ]; then file $i fi done # -Gabriel

RE: guacd error segfault in libguac-client-rdp.so.0.0.0

2023-06-07 Thread Gabriel Huerta Araujo
57660]: INFO:#011Loading keymap "en-us-qwerty" Jun 7 11:15:02 tmxqrocnsG5 guacd[157660]: Connected to RDPDR 1.12 as client 0x0009 -Gabriel -Mensaje original- De: Gabriel Huerta Araujo Enviado el: miércoles, 7 de junio de 2023 10:51 a. m. Para: user@guacamole.apache.org Asunto: R

RE: guacd error segfault in libguac-client-rdp.so.0.0.0

2023-06-07 Thread Gabriel Huerta Araujo
> If you can find the coredump file and do the backtrace on that file, that > would be helpful, so we can see where the segfault is actually happening. > These files which are their file extensión? I tried to identify segfault (core files) and I did not find them for i in `find / -name core

RE: guacd error segfault in libguac-client-rdp.so.0.0.0

2023-06-06 Thread Gabriel Huerta Araujo
Thanks a lot Nick for your soon answer. > If you can find the coredump file and do the backtrace on that file, that > would be helpful, so we can see where the segfault is actually happening. These files which are their file extensión? > Those libraries are used by all recent versions of

guacd error segfault in libguac-client-rdp.so.0.0.0

2023-06-06 Thread Gabriel Huerta Araujo
Hi everyone Our guacamole aplication generates this kind of messages. Jun 4 02:00:17 tmxqrocnsG5 kernel: [10453754.826401] Code: 00 be 03 00 00 00 48 89 ef e8 8a e9 fe ff b8 01 00 00 00 e9 7a ff ff ff 53 48 8b 07 48 89 fb 48 89 de 48 8b 40 10 48 8b 40 20 <48> 8b 78 10 e8 25 e9 fe ff 8b 43 18

RE: How to activate guac log

2023-06-05 Thread Gabriel Huerta Araujo
Ok, thanks a lot for your soon answer, Nick. - Gabriel -Mensaje original- De: Nick Couchman Enviado el: lunes, 5 de junio de 2023 01:22 p. m. Para: user@guacamole.apache.org Asunto: Re: How to activate guac log On Mon, Jun 5, 2023 at 3:16 PM Gabriel Huerta Araujo wrote: > &

How to activate guac log

2023-06-05 Thread Gabriel Huerta Araujo
Hi everyone I tried to know where guac log is located but I did not find it. Is there any configuration I have to do in order to generate it? Some link talking about this, it will be fully grateful. -Gabriel

Tunning to avoid "The network connection to the Guacamole server appears unstable" message in Guacamole Web Application

2023-05-31 Thread Gabriel Huerta Araujo
Continuously I got this message when I am in Guacamole Web Application: The network connection to the Guacamole server appears unstable" message in Guacamole Web Application Any tunning which it can be done to supragate this problem? -Gabriel

RE: Guacamole REST petition to remove user session.

2023-05-31 Thread Gabriel Huerta Araujo
e denied if you don't include a valid "Guacamole-Token" header. The endpoint for invalidating a token that includes the token in the path instead of a header is ".../api/tokens/YOUR_TOKEN_GOES_HERE". - Mike On 5/31/23 10:45, Gabriel Huerta Araujo wrote: > Hi > >

Guacamole REST petition to remove user session.

2023-05-31 Thread Gabriel Huerta Araujo
Hi I am executing a perl script which executes a REST DELETE to remove a user session and sends an error: '_content' => '{"message":"Permission Denied.","translatableMessage":{"key":"APP.TEXT_UNTRANSLATED","variables":{"MESSAGE":"Permission

RE: Guacamole option where all logged users are shown.

2023-05-30 Thread Gabriel Huerta Araujo
> > Another question: > > 3.- There is a requirement to create a Guacamole option, where all users are > shown, mainly whom are logged. And one option when I select one or various > users, I can log out them from Guacamole web application. ¿Which is your > recommendation?, ¿is this posible?,

Guacamole option where all logged users are shown.

2023-05-29 Thread Gabriel Huerta Araujo
> > Another question: > > 3.- There is a requirement to create a Guacamole option, where all users are > shown, mainly whom are logged. And one option when I select one or various > users, I can log out them from Guacamole web application. ¿Which is your > recommendation?, ¿is this posible?,

Users can connect only once to Guacamole Client page.

2023-05-22 Thread Gabriel Huerta Araujo
As I made a change where if a user is logged in, and himself is trying to log in into another computer using Guacamole, how can I achieve when he is putting his credentials, Guacamole application shows a screen message indicating about this? I think this has to be done from Angular side.

RE: Users can connect only once to Guacamole Client page.

2023-05-15 Thread Gabriel Huerta Araujo
Thanks a lot Michael, it works like a charm. -Gabriel -Mensaje original- De: Michael Jumper Enviado el: domingo, 14 de mayo de 2023 12:42 a. m. Para: user@guacamole.apache.org Asunto: Re: Users can connect only once to Guacamole Client page. On 5/13/23 18:32, Gabriel Huerta Araujo

RE: Users can connect only once to Guacamole Client page.

2023-05-13 Thread Gabriel Huerta Araujo
Thanks Michael My observations: >> You should use AbstractUserContext (you'll end up implementing a ton of stub >> functions otherwise), override invalidate(), and implement any remaining >> functions that have no implementation according to >> the JavaDoc: >>

Users can connect only once to Guacamole Client page.

2023-05-12 Thread Gabriel Huerta Araujo
>> To perform an action when a user logs in, you would implement an extension >> containing your own AuthentcationProvider that performs whatever tasks you >> need within getUserContext(): >>

Users can connect only once to Guacamole Client page.

2023-05-11 Thread Gabriel Huerta Araujo
> My question is related to when a user enters into Guacamole web application > in a computer and they should not enter with their same account into another > computer. I would try to change Guacamole > application, question here is where I would do it? That is why I meant there > are two

RE: High availability and users can connect only once to Guacamole Client page.

2023-04-29 Thread Gabriel Huerta Araujo
Nick > If you're asking what would have to change in order to share active > connection information between two systems, that's a fairly complex task. > Currently the JDBC module is the only module that implements > active connection tracking, and it would need to be modified such that it >

RE: High availability and users can connect only once to Guacamole Client page.

2023-04-28 Thread Gabriel Huerta Araujo
once to Guacamole Client page. On Wed, Apr 26, 2023 at 9:52 PM Gabriel Huerta Araujo wrote: > > Hi all > > I have 2 doubts: > > 1.- Guacamole is going to be installed on two servers, ¿is there a way to > manage a high availability scheme (if one is out, the backup server &

RE: High availability and users can connect only once to Guacamole Client page.

2023-04-28 Thread Gabriel Huerta Araujo
Hi all An apology it seems that point 2 is not clear. It is that if a user enters the Guacamole Web application on a device, they cannot do it from another device. -Gabriel -Mensaje original- De: Gabriel Huerta Araujo Enviado el: miércoles, 26 de abril de 2023 07:51 p. m. Para: user

RE: Change to the way of authenticating provided by Guacamole

2023-04-27 Thread Gabriel Huerta Araujo
, 2023, 6:30 PM Nick Couchman mailto:vn...@apache.org>> wrote: On Sat, Apr 22, 2023 at 8:09 PM Gabriel Huerta Araujo mailto:huert...@globalhitss.com>.invalid> wrote: > > Thanks a lot Michael and Nick for your valuable help. > > > > I found out that I was doi

High availability and users can connect only once to Guacamole Client page.

2023-04-26 Thread Gabriel Huerta Araujo
Hi all I have 2 doubts: 1.- Guacamole is going to be installed on two servers, ¿is there a way to manage a high availability scheme (if one is out, the backup server automatically enters)? 2.- if a user accessed the Guacamole page with an account, he can not access the Guacamole page with the

RE: Change to the way of authenticating provided by Guacamole

2023-04-22 Thread Gabriel Huerta Araujo
jar and everything works fine. I think for some reason Guacamole version I had (1.4.0), had some errors. -Gabriel De: Gabriel Huerta Araujo Enviado el: miércoles, 19 de abril de 2023 10:29 p. m. Para: user@guacamole.apache.org Asunto: RE: Change to the way of authenticating provided by Guacamole

RE: Change to the way of authenticating provided by Guacamole

2023-04-19 Thread Gabriel Huerta Araujo
This is class which authenticates, there is just one method just like you estipulate: public class TacacsAuthenticationProvider extends AbstractAuthenticationProvider { private static final String MYSQLAuthenticationProviderString = "mysql"; /** * Logger for this class. */

RE: Change to the way of authenticating provided by Guacamole

2023-04-19 Thread Gabriel Huerta Araujo
How can I get all AuthenticationProviders installed into Guacamole? To be consulted from Tacacs Authentication Provider code? -Gabriel De: Gabriel Huerta Araujo Enviado el: miércoles, 19 de abril de 2023 08:56 a. m. Para: user@guacamole.apache.org Asunto: RE: Change to the way of authenticating

RE: Change to the way of authenticating provided by Guacamole

2023-04-19 Thread Gabriel Huerta Araujo
provided by Guacamole On Tue, Apr 18, 2023, 6:23 PM Gabriel Huerta Araujo mailto:huert...@globalhitss.com.invalid>> wrote: ... It was like this @Override public UserContext getUserContext(AuthenticatedUser authenticatedUser) throws GuacamoleException { // No asso

RE: Change to the way of authenticating provided by Guacamole

2023-04-18 Thread Gabriel Huerta Araujo
, Apr 17, 2023 at 1:19 PM Gabriel Huerta Araujo mailto:huert...@globalhitss.com.invalid>> wrote: In fact web application goes through every Authentication provider, but it does not enter when arrives to Tacacs Authentication Provider (it is previous to MySql), just enter to MySql Authenti

RE: Change to the way of authenticating provided by Guacamole

2023-04-17 Thread Gabriel Huerta Araujo
into Tacacs Authentication Provider? -Gabriel -Mensaje original- De: Gabriel Huerta Araujo Enviado el: lunes, 17 de abril de 2023 09:00 a. m. Para: user@guacamole.apache.org Asunto: RE: Change to the way of authenticating provided by Guacamole Nick How can I make Tacacs authentication

RE: Change to the way of authenticating provided by Guacamole

2023-04-17 Thread Gabriel Huerta Araujo
: Change to the way of authenticating provided by Guacamole On Sat, Apr 15, 2023 at 9:17 PM Gabriel Huerta Araujo wrote: > > I did a test and It does not work > > I put mysql-auto-create-accounts (guacamole properties) with true value. > > In fact Tacacs user is same to DB us

RE: Change to the way of authenticating provided by Guacamole

2023-04-16 Thread Gabriel Huerta Araujo
. Para: user@guacamole.apache.org Asunto: Re: Change to the way of authenticating provided by Guacamole On Sat, Apr 15, 2023 at 9:17 PM Gabriel Huerta Araujo wrote: > > I did a test and It does not work > > I put mysql-auto-create-accounts (guacamole properties) with true value.

RE: Change to the way of authenticating provided by Guacamole

2023-04-15 Thread Gabriel Huerta Araujo
, 15 de abril de 2023 06:56 p. m. Para: user@guacamole.apache.org Asunto: Re: Change to the way of authenticating provided by Guacamole On Sat, Apr 15, 2023 at 8:27 PM Gabriel Huerta Araujo wrote: > > Ok Nick > > Then what I need to do in order to see Active Sessions when I enter wi

RE: Change to the way of authenticating provided by Guacamole

2023-04-15 Thread Gabriel Huerta Araujo
- De: Nick Couchman Enviado el: sábado, 15 de abril de 2023 06:56 p. m. Para: user@guacamole.apache.org Asunto: Re: Change to the way of authenticating provided by Guacamole On Sat, Apr 15, 2023 at 8:27 PM Gabriel Huerta Araujo wrote: > > Ok Nick > > Then what I need to do in order t

RE: Change to the way of authenticating provided by Guacamole

2023-04-15 Thread Gabriel Huerta Araujo
provided by Guacamole On Sat, Apr 15, 2023 at 8:27 PM Gabriel Huerta Araujo wrote: > > Ok Nick > > Then what I need to do in order to see Active Sessions when I enter with > Tacacs authentication? There's nothing you need to do in your Java code to enable this. You only nee

RE: Change to the way of authenticating provided by Guacamole

2023-04-15 Thread Gabriel Huerta Araujo
. -Gabriel -Mensaje original- De: Nick Couchman Enviado el: viernes, 14 de abril de 2023 07:58 p. m. Para: user@guacamole.apache.org Asunto: Re: Change to the way of authenticating provided by Guacamole On Fri, Apr 14, 2023 at 9:38 PM Gabriel Huerta Araujo wrote: > > I hope t

RE: Change to the way of authenticating provided by Guacamole

2023-04-14 Thread Gabriel Huerta Araujo
credentials but with DB credentials. -Gabriel -Mensaje original- De: Nick Couchman Enviado el: viernes, 14 de abril de 2023 06:51 p. m. Para: user@guacamole.apache.org Asunto: Re: Change to the way of authenticating provided by Guacamole On Fri, Apr 14, 2023 at 8:44 PM Gabriel Huerta Araujo

RE: Change to the way of authenticating provided by Guacamole

2023-04-14 Thread Gabriel Huerta Araujo
@guacamole.apache.org Asunto: Re: Change to the way of authenticating provided by Guacamole On Wed, Apr 12, 2023 at 6:14 PM Gabriel Huerta Araujo wrote: > > Nick: > > I think you have misunderstood me. I intended to update the Tacacs > password once this is validated and after t

RE: Change to the way of authenticating provided by Guacamole

2023-04-14 Thread Gabriel Huerta Araujo
Or how can I get access to get method from MySQLInjectorProvider instance? -Gabriel -Mensaje original- De: Gabriel Huerta Araujo Enviado el: viernes, 14 de abril de 2023 05:52 p. m. Para: user@guacamole.apache.org Asunto: RE: Change to the way of authenticating provided by Guacamole Hi

RE: Change to the way of authenticating provided by Guacamole

2023-04-14 Thread Gabriel Huerta Araujo
or field entityMapper [2023-04-14 14:10:03] [info] at UserRecordSet.userService(UserRecordSet.java:39) Any excelente guide for Guice? Or and example where I can use a SQL Select using mybatis -Gabriel -Mensaje original----- De: Gabriel Huerta Araujo Enviado el: miércoles, 12 de abril de 2023 04

RE: Change to the way of authenticating provided by Guacamole

2023-04-12 Thread Gabriel Huerta Araujo
@guacamole.apache.org Asunto: Re: Change to the way of authenticating provided by Guacamole On Wed, Apr 12, 2023 at 4:08 PM Gabriel Huerta Araujo wrote: > > Hi all > > If I update MySQL password saved, replacing it by Tacacs password, is > automatically application updated to see

RE: Change to the way of authenticating provided by Guacamole

2023-04-12 Thread Gabriel Huerta Araujo
Hi all If I update MySQL password saved, replacing it by Tacacs password, is automatically application updated to see Active Sessions? -Gabriel -Mensaje original- De: Gabriel Huerta Araujo Enviado el: martes, 11 de abril de 2023 06:49 p. m. Para: user@guacamole.apache.org Asunto: RE

RE: Change to the way of authenticating provided by Guacamole

2023-04-11 Thread Gabriel Huerta Araujo
. What I need to do in order to see Active sessions with user accesed by Tacacs authentication?. _Gabriel -Mensaje original- De: Gabriel Huerta Araujo Enviado el: martes, 11 de abril de 2023 05:36 p. m. Para: user@guacamole.apache.org Asunto: RE: Change to the way of authenticating

RE: Change to the way of authenticating provided by Guacamole

2023-04-11 Thread Gabriel Huerta Araujo
ERNAME_PASSWORD); } - -Mensaje original- De: Gabriel Huerta Araujo Enviado el: jueves, 6 de abril de 2023 08:34 p. m. Para: user@guacamole.apache.org Asunto: RE: Change to the way of authenticating provided by Guacamole Thanks a lot Nick, I was not available. I will follow your sugge

RE: Change to the way of authenticating provided by Guacamole

2023-04-06 Thread Gabriel Huerta Araujo
, 2023 at 3:01 PM Gabriel Huerta Araujo wrote: > > I am running guacamole in a Linux box. By an IDE with a debugger: ¿A > reference to configure Guacamole into Windows? > There's no reason to switch to Windows - there are plenty of good IDEs with debuggers for Linux. Like NetB

RE: Change to the way of authenticating provided by Guacamole

2023-04-01 Thread Gabriel Huerta Araujo
I am running guacamole in a Linux box. By an IDE with a debugger: ¿A reference to configure Guacamole into Windows? -Gabriel De: Gabriel Huerta Araujo Enviado el: sábado, 1 de abril de 2023 11:45 a. m. Para: user@guacamole.apache.org Asunto: RE: Change to the way of authenticating provided

RE: Change to the way of authenticating provided by Guacamole

2023-04-01 Thread Gabriel Huerta Araujo
by Guacamole On Sat, Apr 1, 2023, 12:21 AM Gabriel Huerta Araujo mailto:huert...@globalhitss.com.invalid>> wrote: I did what log told me to do: “set "skip-if-unavailable: tacacs" within your guacamole.properties” And now when I enter to give my credentials, it works. But how

RE: Change to the way of authenticating provided by Guacamole

2023-04-01 Thread Gabriel Huerta Araujo
abriel" successfully authenticated with Tacacs from XX.XXX.XX.XX. [2023-04-01 01:14:20] [info] 01:14:20.395 [http-nio-8080-exec-3] INFO o.a.g.r.auth.AuthenticationService - User "gabriel" successfully authenticated from XX.XXX.XX.XX. -Gabriel De: Gabriel Huerta Araujo Enviado el:

RE: Change to the way of authenticating provided by Guacamole

2023-04-01 Thread Gabriel Huerta Araujo
de marzo de 2023 08:49 a. m. Para: user@guacamole.apache.org Asunto: Re: Change to the way of authenticating provided by Guacamole On Tue, Mar 14, 2023 at 7:36 PM Gabriel Huerta Araujo mailto:huert...@globalhitss.com.invalid>> wrote: > > I found class SharedAuthenticationProvide

RE: Change to the way of authenticating provided by Guacamole

2023-03-15 Thread Gabriel Huerta Araujo
On Tue, Mar 14, 2023 at 7:36 PM Gabriel Huerta Araujo wrote: > > I found class SharedAuthenticationProviderService, which has below > method(authenticateUser). It receives credentials of Credentials type. Below > is its definition: > > @Override > pub

RE: Change to the way of authenticating provided by Guacamole

2023-03-14 Thread Gabriel Huerta Araujo
enticating provided by Guacamole On Tue, Mar 14, 2023 at 4:04 PM Gabriel Huerta Araujo wrote: > > Here me again. > > One question: > > How can I have a fully functional authentication provider instead of parsing > the guacamole.properties configuration file, and taking such

RE: Change to the way of authenticating provided by Guacamole

2023-03-14 Thread Gabriel Huerta Araujo
Huerta Araujo wrote: > > Hi Michael > > > > Organization uses a Perl script which uses Tacacs as a way to be > authenticaded. This tool is used to measure user productivity, each time they > attend a problem accesing to a server through Guacamole. And the way > Guacamole

RE: Change to the way of authenticating provided by Guacamole

2023-03-13 Thread Gabriel Huerta Araujo
rocess ... used by the organization"? - Mike On Mon, Mar 13, 2023, 10:17 AM Gabriel Huerta Araujo mailto:huert...@globalhitss.com.invalid>> wrote: Hi all I have a request Which components (java, js, html files) should I check for the implementation of authentication by means o

Change to the way of authenticating provided by Guacamole

2023-03-13 Thread Gabriel Huerta Araujo
Hi all I have a request Which components (java, js, html files) should I check for the implementation of authentication by means other than the one proposed by the Guacamole solution? Just to know what is the impact of adapting the authentication process by means used by the organization.

RE: Error when building 1.1.2 Docker: Too many files with unapproved license

2020-08-11 Thread Gabriel Huerta Araujo
Hi Yang In pom.xml file (client project) at line 217 And generate again the client war with mvn clean mvn package. I hope this can be useful. Regards -Mensaje original- De: Yang Yang Enviado el: martes, 11 de agosto de 2020 08:54 a.m. Para:

RE: RDP not working after Guacamole 1.2.0 Upgrade

2020-08-05 Thread Gabriel Huerta Araujo
My user had same problem. Solution is whether using Fedora instead of Ubuntu. Regards. De: Michael Hutterer Enviado el: miércoles, 05 de agosto de 2020 07:33 a.m. Para: user@guacamole.apache.org Asunto: RE: RDP not working after Guacamole 1.2.0 Upgrade Hi everyone, I’m very sorry to bother

RE: Error when enter to Guacamole Web version 1.2.0

2020-08-02 Thread Gabriel Huerta Araujo
I fixed the trouble I had. Getting the last version with git instead of using guacamole-client-1.2.0.tar.gz By the way any guidance to debug Angular JS code? Regards De: Gabriel Huerta Araujo Enviado el: miércoles, 29 de julio de 2020 10:18 p.m. Para: user@guacamole.apache.org Asunto: RE

RE: Error when enter to Guacamole Web version 1.2.0

2020-07-29 Thread Gabriel Huerta Araujo
to Guacamole Web version 1.2.0 On Wed, Jul 29, 2020, 17:41 Gabriel Huerta Araujo mailto:huert...@globalhitss.com.invalid>> wrote: These are the URL’s Request URL: http://10.93.5.144:8080/guacamole/api/session/data/mysql/users/gabriel?token=39FAFDC19262B0EAE881EDDEFDD88B46F77846F8E7C83174A34BBBCCF7

RE: Error when enter to Guacamole Web version 1.2.0

2020-07-29 Thread Gabriel Huerta Araujo
=39FAFDC19262B0EAE881EDDEFDD88B46F77846F8E7C83174A34BBBCCF78246F6 Regarding what you told me, is then correct the responses that application generates has generated? Regards. De: Gabriel Huerta Araujo Enviado el: miércoles, 29 de julio de 2020 07:15 p.m. Para: user@guacamole.apache.org Asunto: RE: Error when enter

RE: Error when enter to Guacamole Web version 1.2.0

2020-07-29 Thread Gabriel Huerta Araujo
enter to Guacamole Web version 1.2.0 On Wed, Jul 29, 2020, 17:02 Gabriel Huerta Araujo mailto:huert...@globalhitss.com.invalid>> wrote: For my user I have two tokens These are their responses Token gabriel?token=8B05F622CBF6CA36C1AF8A805473BB059DF70B9E245832CED820D554621E402D {"usernam

RE: Error when enter to Guacamole Web version 1.2.0

2020-07-29 Thread Gabriel Huerta Araujo
3 p.m. Para: user@guacamole.apache.org Asunto: Re: Error when enter to Guacamole Web version 1.2.0 Have you made any changes to the source code of the web application? How have you deployed things? Is a proxy involved? If you open up browser dev tools and then attempt to log in, what do you se

RE: Error when enter to Guacamole Web version 1.2.0

2020-07-29 Thread Gabriel Huerta Araujo
sion 1.2.0 On Tue, Jul 28, 2020 at 10:07 PM Gabriel Huerta Araujo mailto:huert...@globalhitss.com.invalid>> wrote: Hi everyone: When I have tried to access to Guacamole with my user and password I get following error TypeError: Cannot read property 'mysql' of undefined You'll ne

clipboard size limit

2020-02-06 Thread Gabriel Huerta Araujo
Hi everyone I have a doubt Is there a limit with clipboard size? If yes how can I increase its size, if It had a way to do it? Regards

RE: Update passwords massively

2019-11-21 Thread Gabriel Huerta Araujo
Hi Nick I apreciatte your soon answer. Regards. De: Nick Couchman [mailto:vn...@apache.org] Enviado el: jueves, 21 de noviembre de 2019 02:42 p.m. Para: user@guacamole.apache.org Asunto: Re: Update passwords massively On Thu, Nov 21, 2019 at 10:36 AM Gabriel Huerta Araujo wrote

Update passwords massively

2019-11-21 Thread Gabriel Huerta Araujo
Hi all I have been assigned next work User give me an users file with CVS format, is there something someone else has built to update their password massively? I mean, a program which reads record by record, take user key and update password field with same value and so till the last

RE: Necessity for remove a field from Edit User window

2019-03-01 Thread Gabriel Huerta Araujo
Asunto: Re: Necessity for remove a field from Edit User window On Mon, Feb 25, 2019 at 10:45 AM Gabriel Huerta Araujo wrote: Hi Mike This is what I have (0.9.14) "USER_ATTRIBUTES" : { "FIELD_HEADER_GUAC_EMAIL_ADDRESS"

RE: Necessity for remove a field from Edit User window

2019-02-25 Thread Gabriel Huerta Araujo
: "Profile" }, So in version 0.9.14 I am using I do not see these translations in es.json translation file. Regards. De: Mike Jumper [mailto:mjum...@apache.org] Enviado el: domingo, 24 de febrero de 2019 09:12 p.m. Para: user@guacamole.apache.org Asunto: Re: Necessity for

RE: Necessity for remove a field from Edit User window

2019-02-24 Thread Gabriel Huerta Araujo
By the way how do you make that these fields(their labels in particular) can be translated according to chosen language if they are contained into guacamole_user table and I do not see any reference to them into manageUser.html file? Regards. De: Gabriel Huerta Araujo [mailto:huert

RE: Necessity for remove a field from Edit User window

2019-02-24 Thread Gabriel Huerta Araujo
User window On Sun, Feb 24, 2019 at 2:22 PM Gabriel Huerta Araujo wrote: I have to remove a field from Edit User window where this screen has an option Account restrictions where there are below options. disabled expired access_window_start access_window_end valid_from valid_until

Necesity for remove a field from Edit User window

2019-02-24 Thread Gabriel Huerta Araujo
I have to remove a field from Edit User window where this screen has an option Account restrictions where there are below options. disabled expired access_window_start access_window_end valid_from valid_until timezone Some of them are checkbox, by the way filed expired is presented as

RE: Help to solve a requirement about active connections vs configured connection

2018-11-06 Thread Gabriel Huerta Araujo
10.105.131.51 RAD CNS4 32 False [1000 rows x 6 columns] Thanks a lot for your valuable help. Regards De: Gabriel Huerta Araujo [mailto:huert...@globalhitss.com] Enviado el: martes, 06 de noviembre de 2018 04:42 p.m. Para: 'user@guacamole.apache.org' Asunto: RE: Help to solve

RE: Help to solve a requirement about active connections vs configured connection

2018-11-06 Thread Gabriel Huerta Araujo
localhost/ga # Login #myLoginData = login('guacuser','guacpass') myLoginData = login('gabriel','gabriel') What seems to be the problem? Regards. De: Gabriel Huerta Araujo [mailto:huert...@globalhitss.com] Enviado el: jueves, 01 de noviembre de 2018 07:28 p.m. Para: user@guacamol

RE: Help to solve a requirement about active connections vs configured connection

2018-11-01 Thread Gabriel Huerta Araujo
Thank you so much Nick I’ll check it. If I had a doubt I hope I can continue asking about this matter. Meanwhile have a great night. Regards De: Nick Couchman [mailto:vn...@apache.org] Enviado el: jueves, 01 de noviembre de 2018 06:02 p.m. Para: user@guacamole.apache.org Asunto: Re:

RE: Help to solve a requirement about active connections vs configured connection

2018-11-01 Thread Gabriel Huerta Araujo
://guacamole.apache.org/doc/gug/administration.html#session-management - Mike On Thu, Nov 1, 2018, 10:36 Gabriel Huerta Araujo http://www.avg.com/internet-security> Logotipo de AVG Este correo electrónico ha sido comprobado en busca de virus con el software antivirus AVG. www.avg.com &l

Help to solve a requirement about active connections vs configured connection

2018-11-01 Thread Gabriel Huerta Araujo
Hi I have a doubt about Guacamole. My question is how can I know active sessions and compare them with configured connections in order to know if all configured connections are really used. Or where I could find information in order to make some implementation which accesses REST information