Re: Guacamole client .onrequired

2025-04-02 Thread Gal Sabas
Yes that works! Thank you!! Get Outlook for Mac <https://aka.ms/GetOutlookForMac> From: Lukáš Raška Date: Wednesday, 2 April 2025 at 18:22 To: user@guacamole.apache.org Subject: Re: Guacamole client .onrequired Hi, you need to follow similar logic as within ManagedClient, which Nick a

Re: Guacamole client .onrequired

2025-04-02 Thread Lukáš Raška
t see a way to use my > guacamole-common utils to implement this functionality. > > > > Any ideas? > > > > Get Outlook for Mac <https://aka.ms/GetOutlookForMac> > > > > *From: *Gal Sabas > *Date: *Monday, 31 March 2025 at 13:28 > *To: *user@guacamole

Re: Guacamole client .onrequired

2025-04-02 Thread Gal Sabas
Monday, 31 March 2025 at 13:28 To: user@guacamole.apache.org Subject: Re: Guacamole client .onrequired I see that guacamole-client uses ‘ManagedClient.sendArguments’ but sendArguments’ needs to receive ManagedClient so I’m not sure how to use it in my code. Get Outlook for Mac

Re: Guacamole client .onrequired

2025-03-31 Thread Gal Sabas
: user@guacamole.apache.org Subject: Re: Guacamole client .onrequired On Wed, Mar 26, 2025 at 4:07 AM Gal Sabas wrote: Hi, I have my own web-client that is based on guacamole-client. I’m trying to add support to the “required” request for parameter prompting, I added this code to my client: let client

Re: Guacamole client .onrequired

2025-03-26 Thread Nick Couchman
On Wed, Mar 26, 2025 at 4:07 AM Gal Sabas wrote: > Hi, > > > > I have my own web-client that is based on guacamole-client. > > I’m trying to add support to the “required” request for parameter > prompting, I added this code to my client: > > > > let client = new Guacamole.Client(tunnel) > > clien

Guacamole client .onrequired

2025-03-26 Thread Gal Sabas
Hi, I have my own web-client that is based on guacamole-client. I’m trying to add support to the “required” request for parameter prompting, I added this code to my client: let client = new Guacamole.Client(tunnel) client.onrequired = function(params) { … client.send(credentials); } For some re