projects
/
mkws-moved-to-github.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
666f99f
)
Better diagnostics when SP authentication fails.
author
Mike Taylor
<mike@indexdata.com>
Mon, 7 Jul 2014 11:05:11 +0000
(12:05 +0100)
committer
Mike Taylor
<mike@indexdata.com>
Mon, 7 Jul 2014 11:05:11 +0000
(12:05 +0100)
src/mkws-core.js
patch
|
blob
|
history
diff --git
a/src/mkws-core.js
b/src/mkws-core.js
index
d56b1e7
..
c718071
100644
(file)
--- a/
src/mkws-core.js
+++ b/
src/mkws-core.js
@@
-441,7
+441,8
@@
mkws.pagerNext = function(tname) {
}
var status = $(data).find("status");
if (status.text() != "OK") {
- alert("service proxy auth response status: " + status.text() + ", give up!");
+ var message = $(data).find("message");
+ alert("Service Proxy authentication response: " + status.text() + " (" + message.text() + ")");
return;
}