Thank you for your answer, I'm actually using a VNC server, so if I understood correctly I can't do the sendSize with my client if I'm using VNC ? If that's the case is there another way I can do it ? ----- Mail d’origine ----- De: Michael Jumper <[email protected]> À: [email protected] Envoyé: Wed, 12 Jul 2023 19:14:27 +0200 (CEST) Objet: Re: Fullscreen mode
On 7/12/23 07:11, Fatima Ezzahra Jaber wrote: > Hello, > > I have created my own guacamole application and I can see my remote > desktop on my web page, bu I need it to go full screen, I tried using > the*|Element.requestFullscreen()|*method but it only makes my display go > on fullscreen, but the guacamole display's size doesn't change. Does > guacamole handle fullscreen mode and is there an instruction or a way to > do that? > Changes in display size are communicated with the sendSize() function of Guacamole.Client: https://guacamole.apache.org/doc/guacamole-common-js/Guacamole.Client.html#sendSize This sends a "size" instruction informing the server that the client's desired display size has changed: https://guacamole.apache.org/doc/gug/protocol-reference.html#client-size-instruction It is still on the underlying protocol to honor that request: * The terminal-based protocols (SSH, telnet, Kubernetes) will automatically honor resize requests without additional configuration. * RDP requires that you specify how it should handle resize requests: https://guacamole.apache.org/doc/gug/configuring-guacamole.html#rdp-display-settings * Client-initiated resize is not available for VNC. - Mike --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] -- JABER Fatima Ezzahra 2A SEOC Grenoble-INP Phelma Tél : +33 (0) 6 05 93 50 23 --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
