X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=tools%2Fhtdocs%2Fmkws.js;h=144d2de477c896580095d8fafead11c8fa481a69;hb=9c7195162561ca11d57775a6fd5ef42f82cde3f4;hp=5db8b455c422afbcbaf3a025cd61d13809473563;hpb=8259da8a123505e6e13532297ed87e7ceecb4f3b;p=mkws-moved-to-github.git 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; }); }