You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@guacamole.apache.org by murat <gr...@gmail.com> on 2019/02/14 23:03:31 UTC

Guacamole Protocol Active Connection Read Only

Hi,

Is it possible to set a connected session as read-only as below;

writer.writeInstruction(
            new GuacamoleInstruction(
                "read-only",
                String.valueOf(Boolean.TRUE)
                )
            
        ); 



--
Sent from: http://apache-guacamole-general-user-mailing-list.2363388.n4.nabble.com/

Re: Guacamole Protocol Active Connection Read Only

Posted by Mike Jumper <mj...@apache.org>.
On Thu, Feb 14, 2019, 15:03 murat <grupsiteonur@gmail.com wrote:

> Hi,
>
> Is it possible to set a connected session as read-only as below;
>
> writer.writeInstruction(
>             new GuacamoleInstruction(
>                 "read-only",
>                 String.valueOf(Boolean.TRUE)
>                 )
>
>         );
>

No. "read-only" is not an instruction.

http://guacamole.apache.org/doc/gug/protocol-reference.html

You can either configure the connection to be read-only from the start
(using the parameters provided for the protocol in use), or filter the
instructions received by the connected users, selectively denying
interaction.

- Mike