Remove duplicate contentscript.js file from chrome section.
[gssweb.git] / navigator.gssweb.js
index 3027f97..8aa498c 100644 (file)
@@ -1,4 +1,4 @@
-console.log("Loading navigator.gssweb.js - #2");
+console.log("Loading navigator.gssweb.js - #4");
 
 
 var GSSWeb = (function () {
@@ -17,9 +17,8 @@ var GSSWeb = (function () {
     this.serverToken = "";
     this.clientCred = "";
     this.xhr = new XMLHttpRequest();
-    this.xhr.onreadystatechange = this.recvTokenFromServer.bind(this);
 
-    this.gss = new navigator.gss_eap({
+    this.gss = new navigator.gssEap({
       appTag: this.appTag,
       error: this.handleGSSError.bind(this)
     });
@@ -139,12 +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 () {