mminnder
12 years agoOccasional Contributor
How to silently handle msxml3.dll access is denied error
When trying to parse through a list of service calls, one of them is failing telling me access is denied, it kills my whole project, making me unable to see the rest of the services working.
Any other errors in calls will toss me an error code and I handle it nicely, this one just keeps wrecking me, and I don't seem to know how to catch it before it explodes. If anyone helps me, I'll give them a cookie.
code:
if(isPost == false)
{
mixedURLS = mixedURLS + "?" + params;
xhr.open("GET",mixedURLS,false);
xhr.send(); //This is where it breaks
}
else
{
xhr.open("POST",mixedURLS,false);
xhr.send(params);
}
Any other errors in calls will toss me an error code and I handle it nicely, this one just keeps wrecking me, and I don't seem to know how to catch it before it explodes. If anyone helps me, I'll give them a cookie.
code:
if(isPost == false)
{
mixedURLS = mixedURLS + "?" + params;
xhr.open("GET",mixedURLS,false);
xhr.send(); //This is where it breaks
}
else
{
xhr.open("POST",mixedURLS,false);
xhr.send(params);
}