Re: Guacamole update: on-screen keyboard and printing

2022-01-13 Thread Hankins, Jonathan
I believe it introduces the .setpdfwrite command, so you would need to remove it too: https://www.ghostscript.com/doc/current/Use.htm -c token ... > -c string ...Interprets arguments as PostScript code *up to the next > argument that begins with "-" followed by a non-digit*, or with "@". For >

Re: Guacamole update: on-screen keyboard and printing

2022-01-13 Thread Vieri
Thanks, Jonathan. With guacd GIT there's only one place to delete which is: --- a/src/protocols/rdp/print-job.c 2022-01-13 23:56:09.624104530 +0100 +++ b/src/protocols/rdp/print-job.c 2022-01-14 00:11:11.980761279 +0100 @@ -46,7 +46,6 @@ "-sDEVICE=pdfwrite", "-sOutputFile=-",   

Re: Guacamole update: on-screen keyboard and printing

2022-01-13 Thread Hankins, Jonathan
FWIW, .setpdfwrite was deprecated in gs 9.5.0 (2019-08-13) and removed in gs 9.5.4 (2021-02-12). Quick googling shows that the removal has broken various projects that involve PDF and use gs over the last year. Vieri, if you are building guacd yourself, it's trivial to remove it:

Re: Guacamole update: on-screen keyboard and printing

2022-01-13 Thread Vieri
On Thursday, January 13, 2022, 11:30:41 PM GMT+1, Vieri wrote: > It looks like the issue lies in GhostScript itself > Error: /undefined in .setpdfwrite > That option is indeed passed to "gs" in the case of the print filter command > used by the RDP support I downgraded to

Re: Guacamole update: on-screen keyboard and printing

2022-01-13 Thread Vieri
On Thursday, January 13, 2022, 11:22:57 PM GMT+1, Mike Jumper wrote: > It looks like the issue lies in GhostScript itself > Error: /undefined in .setpdfwrite > That option is indeed passed to "gs" in the case of the print filter command > used by the RDP support Well, that's "good" news!

Re: Guacamole update: on-screen keyboard and printing

2022-01-13 Thread Mike Jumper
On Thu, Jan 13, 2022 at 2:46 AM Vieri wrote: > > On Thursday, January 13, 2022, 09:55:26 AM GMT+1, Mike Jumper > wrote: > > >> I can even send the "empty" PDF file that the client downloads if that can > >> be of any help. > > > > Sure - I'd be interested to see the content received. > > I'm

Re: *LONG* Directly using SQL tables

2022-01-13 Thread Hankins, Jonathan
The docs indicate that the only thing required for auto-create to work, once it's enabled, is for a successful authentication from another extension, so I would expect that it should be creating accounts for you if they are successfully authenticating against LDAP. Haven't tested in our

Re: *LONG* Directly using SQL tables

2022-01-13 Thread Nick Couchman
On Thu, Jan 13, 2022 at 12:52 PM Jim Rx wrote: > Thanks for your response Craig. > > Python may be the next step, although there is a learning curve for us. > I'll keep this handy. > > Python is one option, but really you can use anything that allows you to interact with a REST API. Python is

Re: *LONG* Directly using SQL tables

2022-01-13 Thread Jim Rx
Thanks for your response Craig.   Python may be the next step, although there is a learning curve for us. I'll keep this handy.   Thanks   Jim     Sent: Thursday, January 13, 2022 at 11:46 AM From: "Craig Sawyer" To: user@guacamole.apache.org Subject: Re: *LONG* Directly using SQL tables

Re: *LONG* Directly using SQL tables

2022-01-13 Thread Craig Sawyer
What we do, instead of altering the DB directly, is use the API. There is some python code running around, like https://github.com/pschmitt/guacapy to make changes to Guac. I'm guessing that code will need to be updated for 1.4.0 by adding "Content-Type":"application/x-www-form-urlencoded" to

Re: *LONG* Directly using SQL tables

2022-01-13 Thread Jim Rx
  Johnathan,   Thanks for your reply.   I checked and you are right -- the import into the guacamole_entity table was successful, but there are no corresponding entries being created in the guacamole_user table.   We are using LDAP, and we have the auto-create option

Re: Linux VNC server that provides copy/paste and file transfer?

2022-01-13 Thread Nick Couchman
On Thu, Jan 13, 2022 at 11:20 AM Dustin Lang wrote: > Hi all, > > I am finding that, with Ubuntu 18.04 packages, > > tigervncserver (1.9.0) *does* do copy/paste > tigervnc-standalone-server (1.7.0) does NOT do copy/paste to guacamole > tightvncserver (1.3.10) does NOT do copy/paste > > It seems

Re: Guacamole update: on-screen keyboard and printing

2022-01-13 Thread Vieri
On Thursday, January 13, 2022, 11:46:38 AM GMT+1, Vieri wrote: >> Are you saying that if you run the 1.3.0 guacd with the 1.4.0 webapp, the >> problem disappears? > > No, in my case rolling back means going back to using my old server which has > both guacd and client at 1.3.0. > > I can

Re: *LONG* Directly using SQL tables

2022-01-13 Thread Hankins, Jonathan
I am using Postgres, but one thing I noticed that's different with my setup is I am not specifying the entity_id -- it is an auto-increment field in MySQL (serial in Postgres). I think you don't have anything in the guacamole_user table for the entities you are creating. Have a look at:

Linux VNC server that provides copy/paste and file transfer?

2022-01-13 Thread Dustin Lang
Hi all, I am finding that, with Ubuntu 18.04 packages, tigervncserver (1.9.0) *does* do copy/paste tigervnc-standalone-server (1.7.0) does NOT do copy/paste to guacamole tightvncserver (1.3.10) does NOT do copy/paste and I am finding that the file transfer menu is entirely absent in all three.

Re: guacamole 1.3 stopped working

2022-01-13 Thread Nick Couchman
On Thu, Jan 13, 2022 at 7:21 AM R Batchen wrote: > Hello, > > I have a ubuntu18 with guacamole and guacd 1.3 on docker compose that just > stooped working and i cannot find what is the issue, it has been working > fine for 2 years and i havent done any change, > when we try to connect to

guacamole 1.3 stopped working

2022-01-13 Thread R Batchen
Hello, I have a ubuntu18 with guacamole and guacd 1.3 on docker compose that just stooped working and i cannot find what is the issue, it has been working fine for 2 years and i havent done any change, when we try to connect to guacamole we see this error : [image: image.png] Also the guacd

Re: Guacamole update: on-screen keyboard and printing

2022-01-13 Thread Vieri
On Thursday, January 13, 2022, 09:55:26 AM GMT+1, Mike Jumper wrote: >> I can even send the "empty" PDF file that the client downloads if that can >> be of any help. > > Sure - I'd be interested to see the content received. I'm attaching the PDF. You should see "printer test" on the first

Re: Guacamole update: on-screen keyboard and printing

2022-01-13 Thread Mike Jumper
On Tue, Jan 11, 2022, 22:19 Vieri wrote: > On Tuesday, January 11, 2022, 11:43:54 PM GMT+1, Mike Jumper < > mjum...@apache.org> wrote: > > > Are you running a copy of the webapp that has been modified from the > mainline .war in any way? > > > No, these are the exact commands I run on my

Re: Guacamole update: on-screen keyboard and printing

2022-01-13 Thread Vieri
On Wednesday, January 12, 2022, 05:34:17 PM GMT+1, Vieri wrote: > > I have ghostscript-gpl-9.55.0. > > So I guess gs is not the issue here. > > Any suggestions? Hi, This has become a security issue for me because I cannot upgrade to 1.4.0 as my users require virtual printing to PDF. I'm