From: Wolfram Schneider Date: Thu, 29 Aug 2013 12:15:39 +0000 (+0200) Subject: log if Service proxy auth HTTP request was successfully done X-Git-Tag: 0.9.1~202^2~35 X-Git-Url: http://git.indexdata.com/?a=commitdiff_plain;ds=sidebyside;h=9c7195162561ca11d57775a6fd5ef42f82cde3f4;p=mkws-moved-to-github.git log if Service proxy auth HTTP request was successfully done --- diff --git a/tools/htdocs/mkws.js b/tools/htdocs/mkws.js index 5db8b45..144d2de 100644 --- a/tools/htdocs/mkws.js +++ b/tools/htdocs/mkws.js @@ -752,6 +752,7 @@ function mkws_service_proxy_auth(auth_url) { alert("HTTP call for authentication failed: " + err) return; }); + request.get(null, function(data) { if (!$.isXMLDoc(data)) { alert("service proxy auth response document is not valid XML document, give up!"); @@ -762,6 +763,9 @@ function mkws_service_proxy_auth(auth_url) { alert("service proxy auth repsonse status: " + status.text() + ", give up!"); return; } + + debug("Service proxy auth successfully done"); + mkws.service_proxy_auth = true; }); }