Forum Discussion

mminnder's avatar
mminnder
Occasional Contributor
12 years ago

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);

    }

2 Replies

  • mminnder's avatar
    mminnder
    Occasional Contributor
    Hey,



    Thanks, I'll look into the try catch. Yeah, basically I wanted to catch the error as it happened and try to figure out exactly what's wrong with it. I think the issue might be that it's an https call, my program isn't fit to handle those, but I basically ripped the non working urls out and set them aside for now, my program is otherwise working fine, it's specifically a url issue, and only happens twice.



    Thanks for the reply, I'll tell you how things go.