强烈向大家推荐一个好网站,【我要自学网】,教程由在校老师录制,有办公会计、平面设计、室内设计、机械设计、网页编程、影视动画等教程.....让你足不出门,都可以体验学校的专业教育!
ASP网站部署https证书后,网站后台生成提示msxml3.dll 错误 '800c0005' 系统未找到指定的资源错误,经过检查分析是Microsoft.XMLHTTP控件请求https的问题,这个控件无法访问请求https的链接资源,导致生成出错。
解决办法:
先把请求的URL修改回http,在服务器里面修改hosts文件,C:\Windows\System32\drivers\etc\hosts里面添加一行 127.0.0.1 www.lnmpweb.cn,然后在web.config里面添加以下规则,处理以后就能正常生成了。
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="301" stopProcessing="true"> <match url="^(.*)$" ignoreCase="false" /> <conditions logicalGrouping="MatchAll"> <add input="{HTTPS}" pattern="^on$" negate="true" /> <add input="%{REMOTE_ADDR}&%" pattern="127.0.0.1" negate="true" /> </conditions> <action type="Redirect" url="https://www.lnmpweb.cn/{R:1}" redirectType="Permanent" /> </rule> </rules> </rewrite> <httpErrors errorMode="Custom" /> </system.webServer> </configuration>
原理总结:
由于Microsoft.XMLHTTP控件无法请求https资源,网站又启用了并强制跳转到了https,所以导致生成时无法通过,修改hosts文件将生成请求全部指向服务器端本地,再通过web.config规则文件里面排除127.0.0.1的请求,达到即不影响生成,又不影响https访问网站的需求。