On Thu, Feb 14, 2019, 15:03 murat <[email protected] 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
