Re: installation issue msxml3.dll error '80070005' Access is denied

  •  05-24-2010, 10:13 AM

    Re: installation issue msxml3.dll error '80070005' Access is denied

    changing the section using XMLHTTP to using MSXML2 gets me a little further to fail at "unknown error! thumb.aspx does not work correctly":
     
    //var xh=new ActiveXObject("Microsoft.XMLHTTP");
    var xh=new ActiveXObject("MSXML2.ServerXMLHTTP");
    xh.setOption(2, 13056);
    xh.open("POST",url+"?job="+escape(jobfile),false);
    xh.send("");
     
    FAIL :-(
View Complete Thread