Hello,
I've made a decent working Spring Boot app, that uses Guacamole to
connect to other computers and I would like to implement a recording
feature. From what I saw in guide I can't really tell how can I tell the
server to record particular session. From what I understand I should
send some additional parameters to the tunnel, or do something in
configuration file on the guacd or guacamole container (however then all
sessions would be recorded I think).
This is how tunnel is created:
/GuacamoleConfiguration config = new GuacamoleConfiguration();//
// config.setProtocol("vnc");//
//config.setParameter("hostname",ipaddress);//
// config.setParameter("port", "5900");//
// config.setParameter("password", "supersecret");//
////
////
// GuacamoleSocket socket = new
ConfiguredGuacamoleSocket(//
// new
InetGuacamoleSocket("proxyaddress.company.com", 4822),//
// config//
// );/
I think that i should have some additional /config.setParameter/ lines
but I am not sure. Would appreciate some insight on this manner.
Kind regards,
Michael