From 9c7195162561ca11d57775a6fd5ef42f82cde3f4 Mon Sep 17 00:00:00 2001 From: Wolfram Schneider Date: Thu, 29 Aug 2013 14:15:39 +0200 Subject: [PATCH] log if Service proxy auth HTTP request was successfully done --- tools/htdocs/mkws.js | 4 ++++ 1 file changed, 4 insertions(+) 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; }); } -- 1.7.10.4