You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@guacamole.apache.org by mj...@apache.org on 2017/09/23 20:26:08 UTC

[1/2] incubator-guacamole-client git commit: GUACAMOLE-385: Proper MIME type for tunnel write operations

Repository: incubator-guacamole-client
Updated Branches:
  refs/heads/master 0e2da5a2a -> b90a98946


GUACAMOLE-385: Proper MIME type for tunnel write operations


Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/commit/3fbf176a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/tree/3fbf176a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/diff/3fbf176a

Branch: refs/heads/master
Commit: 3fbf176a15b8bf850f511f9c279222e2a333250c
Parents: 0e2da5a
Author: Ignasi Barrera <na...@apache.org>
Authored: Sat Sep 23 20:55:36 2017 +0200
Committer: Ignasi Barrera <na...@apache.org>
Committed: Sat Sep 23 20:57:11 2017 +0200

----------------------------------------------------------------------
 guacamole-common-js/src/main/webapp/modules/Tunnel.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/blob/3fbf176a/guacamole-common-js/src/main/webapp/modules/Tunnel.js
----------------------------------------------------------------------
diff --git a/guacamole-common-js/src/main/webapp/modules/Tunnel.js b/guacamole-common-js/src/main/webapp/modules/Tunnel.js
index cc5fbbb..508aa4c 100644
--- a/guacamole-common-js/src/main/webapp/modules/Tunnel.js
+++ b/guacamole-common-js/src/main/webapp/modules/Tunnel.js
@@ -306,7 +306,7 @@ Guacamole.HTTPTunnel = function(tunnelURL, crossDomain) {
             var message_xmlhttprequest = new XMLHttpRequest();
             message_xmlhttprequest.open("POST", TUNNEL_WRITE + tunnel.uuid);
             message_xmlhttprequest.withCredentials = withCredentials;
-            message_xmlhttprequest.setRequestHeader("Content-type", "application/x-www-form-urlencoded; charset=UTF-8");
+            message_xmlhttprequest.setRequestHeader("Content-type", "application/octet-stream");
 
             // Once response received, send next queued event.
             message_xmlhttprequest.onreadystatechange = function() {


[2/2] incubator-guacamole-client git commit: GUACAMOLE-385: Merge proper mimetype for HTTP tunnel write operations.

Posted by mj...@apache.org.
GUACAMOLE-385: Merge proper mimetype for HTTP tunnel write operations.


Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/commit/b90a9894
Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/tree/b90a9894
Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/diff/b90a9894

Branch: refs/heads/master
Commit: b90a98946359c9b0b7e4af8571034961d47322fa
Parents: 0e2da5a 3fbf176
Author: Michael Jumper <mj...@apache.org>
Authored: Sat Sep 23 13:23:51 2017 -0700
Committer: Michael Jumper <mj...@apache.org>
Committed: Sat Sep 23 13:23:51 2017 -0700

----------------------------------------------------------------------
 guacamole-common-js/src/main/webapp/modules/Tunnel.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------