Hey folks. I've recently updated to Vista, but with it I've started having problems with on of my scripts.
Basically put, I'm trying to send data to a web server on my network. This used to work fine on XP but now it doesnt. The offending code is this:
code:
http = new ActiveXObject("Microsoft.XMLHTTP");
http.open("GET", url, true, user, pass);
http.send(sendthis);
I'm presuming that the problem is that the required ActiveX control doesnt exist on Vista, so I'm looking for a Vista alternative. can anyone give me any pointers?
Cheers guys
Leroux