我有一个简单的asp经典程序,当用户单击复选框时更新xml文件。它在我的开发服务器中运行良好,但当我在主服务器中部署它时显示
msxml3.dll错误'80070005'访问被拒绝
(错误在objXMLDoc.Save Server.MapPath(xmlfile)中)。我已经检查了权限,它与我的开发服务器完全相同。
下面的是xml文件
<notification>
<staff>
<pin>P001</pin>
<allow>1</allow>
</staff>
<staff>
<pin>P002</pin>
<allow>0</allow>
</staff>
</notification>
和用于更新xml的asp经典代码
if Request.Form("updatebtn") = "Remove in Cc" then
Set objXMLDoc = Server.CreateObject("MSXML2.DOMDocument.3.0")
objXMLDoc.async = False
objXMLDoc.load Server.MapPath(xmlfile)
For Each xmlpin In objXMLDoc.documentElement.selectNodes("staff")
pin = xmlpin.selectSingleNode("pin").text
allow = xmlpin.selectSingleNode("allow").text
if allow = 1 then
if Request.Form("chk_" & pin) = "on" then
Response.Write(pin & "<br/>")
Set nodeBook = xmlpin.selectSingleNode("allow")
nodeBook.Text = 0
objXMLDoc.Save Server.MapPath(xmlfile) ' error when saving the xml
end if
end if
next
Response.Redirect("notification.asp")
end if
有没有我忽略的设置?
非常感谢您的帮助
答案 0 :(得分:1)
您必须检查该网站运行的IIS应用程序池使用的是哪个用户(可能是IUSR_xy)。
请确保此用户在保存XML文件的文件夹中具有“OVERWRITE”权限(在文件夹安全设置中)。
我遇到过一次问题,我的应用程序可能会创建一个新文件,但由于这个原因无法覆盖它。