Pass ALL parameters through connect, allowing arbitrary additional parameters to be used for authentication. Previously, only an "id" parameter was passed to connect, and the contents of that parameter was the entire query string.

This commit is contained in:
Michael Jumper
2012-03-23 01:00:43 -07:00
parent 2d15986886
commit 12d206e73d
2 changed files with 7 additions and 5 deletions

View File

@@ -128,11 +128,13 @@
try {
// Get ID
var id = window.location.search.substring(1);
// Get entire query string, and pass to connect().
// Normally, only the "id" parameter is required, but
// all parameters should be preserved and passed on for
// the sake of authentication.
// Connect client
guac.connect("id=" + id);
var connect_string = window.location.search.substring(1);
guac.connect(connect_string);
}
catch (e) {

View File

@@ -116,7 +116,7 @@
// If only one connection, redirect to that.
if (configs.length == 1) {
window.location.href = "client.xhtml?" + encodeURIComponent(configs[0].id);
window.location.href = "client.xhtml?id=" + encodeURIComponent(configs[0].id);
return;
}