Hi Mike, yes, of course!
I am trying to integrate Guacamole into my bachelor thesis project (a web app of it's own). I already have user authentication and because I would like to have a seamless integration of a "Remote Desktop" feature within my web app, using the existing Guacamole web app did not make sense. That's why my starting point was the excellent tutorial https://guacamole.incubator.apache.org/doc/gug/writing-you-own-guacamole-app.html I now have a GuacamoleHTTPTunnelServlet - basically as described in the tutorial, just with more config options, as well as a WebSocket equivalent and both work impressively well, even in combination with 3D CAD software. I am now trying to implement a session sharing feature. And after stumbling across another code of yours, I would try the following for all but the first clients: > GuacamoleConfiguration config = new GuacamoleConfiguration(); > config.setConnectionID(previouslyStoredId); > GuacamoleSocket socket = new ConfiguredGuacamoleSocket(new > InetGuacamoleSocket(guacamoleHost, guacamolePort), config); Does that sound about right? -- View this message in context: http://apache-guacamole-incubating-users.2363388.n4.nabble.com/RemoteFX-Session-Sharing-tp1080p1086.html Sent from the Apache Guacamole (incubating) - Users mailing list archive at Nabble.com.
