打开ASP网站出错

发布于 2024-08-23 19:39:02 字数 472 浏览 4 评论 0原文

我们更改了 ASP 网站的服务器,在新设置中浏览网站返回此错误:

msxml3.dll 错误 '80072ee2'

操作超时

/error404.asp,第 41 行 我认为这是返回错误的行:

  Set XML=Server.CreateObject("Msxml2.ServerXMLHTTP.3.0")
  XML.SetOption 2,13056
  XML.SetTimeouts 90000, 90000, 90000, 90000
  XML.Open "POST", website &"/catalog/page.asp?id="& R("CTLMtree_id") &"&rnd="& rnd(), False
  XML.Send(Request.Form)
  Response.Write XML.ResponseTExt
  Set XML=Nothing

We changed the server of our ASP website and in new setting browsing the website returns this error:

msxml3.dll error '80072ee2'

The operation timed out

/error404.asp, line 41
This is lines that I think returns error:

  Set XML=Server.CreateObject("Msxml2.ServerXMLHTTP.3.0")
  XML.SetOption 2,13056
  XML.SetTimeouts 90000, 90000, 90000, 90000
  XML.Open "POST", website &"/catalog/page.asp?id="& R("CTLMtree_id") &"&rnd="& rnd(), False
  XML.Send(Request.Form)
  Response.Write XML.ResponseTExt
  Set XML=Nothing

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

国际总奸 2024-08-30 19:39:02

您确定网站& &"/catalog/page.asp 页面存在?

您确定 Msxml2 dll 已注册吗。

服务器上还有其他 msxml?.dll 吗?尝试另一个版本。

如果增加 < code>SetTimeouts 值?

只是我会尝试的一个想法。
但请格式化您的代码(每行缩进 4 个空格),以便我们至少可以看到实际的代码是什么。

Are you sure that the website & &"/catalog/page.asp page exists ?

Are you sure that the Msxml2 dll has been registered.

Do you have other msxml?.dll's on the server? Try another version.

What happens if you increase the SetTimeouts values ?

Just a things thoughts that I would try.
But please format your code (indent each line with 4 spaces), so that we at least can see what the actual codes is.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文