paulvinders
5 years agoContributor
Calling webservices
Hi, w're calling urls in the appserver in the following way: function verifyUrl(url) { var httpObj = Sys.OleObject("MSXML2.ServerXMLHTTP.6.0"); httpObj.open("GET", url, true); httpObj.s...
- 5 years ago
The solution is:
httpObj.open("GET", url, false);
instead of
httpObj.open("GET", url, true);
sincerely
P. Vinders
SOPTIM AG