X-Git-Url: http://www.project-moonshot.org/gitweb/?p=gssweb.git;a=blobdiff_plain;f=navigator.gssweb.js;fp=navigator.gssweb.js;h=8aa498c2afa5152784d96e4e03bc90359ce90116;hp=9d773cc410286cf8d5f93fcbd51917fe38dcdf0d;hb=f16b37480737915a2fdff3f5cc70dfb5eef969f7;hpb=b4266691f6ba342f0ff2988130d3e9cf09ce2183 diff --git a/navigator.gssweb.js b/navigator.gssweb.js index 9d773cc..8aa498c 100644 --- a/navigator.gssweb.js +++ b/navigator.gssweb.js @@ -1,4 +1,4 @@ -console.log("Loading navigator.gssweb.js - #2"); +console.log("Loading navigator.gssweb.js - #4"); var GSSWeb = (function () { @@ -138,13 +138,19 @@ var GSSWeb = (function () { var msg = "nonce=" + this.nonce + "&token=" + encodeURIComponent(this.clientToken); + this.xhr.open("POST", this.serverPath, true); + this.xhr.setRequestHeader( 'Content-Type', 'application/x-www-form-urlencoded' ); this.xhr.onreadystatechange = this.recvTokenFromServer.bind(this); + this.xhr.send(msg); + if (this.xhr.readyStatus <= 2) + console.log("Error sending POST, readyStatus =" + this.xhr.readyStatus + + ", msg = '" + msg + "'"); }; GSSWeb.prototype.recvTokenFromServer = function () {