登陆WinWebMail的Web页面时,IE中显示“The requested resource is in use.”,在网上搜索了一下,找到几个处理办法。主要的意思都是DCOM的问题,一个个试过发现还是不行。试过一些方法后终于回复正常,处理方法如下:
执行下面三个命令:
regsvr32 jscript.dll
regsvr32 vbscript.dll
regsvr32 oleaut32.dll
重启IIS服务。
---------------------------------------
关于这个错误,下面的处理方法比较全面。
导致"The requested resource is in use"的几个原因及解决方法
伊瓦对以下部分英文说明已经进行简要翻译和备注
2. If site is in Medium Protection level(应用程序保护已经设置为"中") it uses COM+ and IWAM account. a. Launch DCOMCNFG.EXE (from START --> RUN) b. Click on the Default Properties tab. c. Under Default Authentication Level, be sure it's set to Connect (most likely it's on NONE). d. Under Default Impersonation Level, make sure it's set to Identify. e. Be sure DCOM is enabled on the machine (the first box should be checked). (尝试在dos模式下运行DCOMCNFG.EXE,点击Default Properties tab,在 Default Authentication Level,设置为Identify,并确认DCOM是被开启的)
3. Permission problem with IWAM account. You can install regmon & filemon from www.sysinternals.com and log the details and see whether any access denied occurs. (解决方法:检查系统IWAM帐号权限是否有作过改动,并将他恢复,可以从www.sysinternals.com 下载 regmon和filemon进行检查)
4. the oleaut32.dll is unregistered for somereason. Problem occured once after installing PC Anywhere. (解决方法:重新注册oleaut32.dll组件,dos模式下运行regsvr32 oleaut32.dll)
5. 瑞星杀毒软件也可能导致此情况,卸载之后可以(解决方法:暂停瑞星的时时监测/服务,然后重新启动iis)
6.http://support.microsoft.com/default.aspx?scid=kb;EN-US;q182059 (Cache ISAPI Application Option Causes ASP to Return Error) (解决方法:在iis中找到Cache ISAPI Application这个选项,然后开启他)
7.Try installing Windows Scripting 5.6 . (同方法1)
8. http://www.aspfaq.com/show.asp?id=2356 Check your code, make sure all objects are closed and set to nothing. This includes any command or ADOX objects using an Active.Connection property, make sure this property is set to nothing as well. If you are using thisPage.NavigateURL method, use response.redirect or server.transfer instead - avoid the thisPage object. Install the latest service packs and security releases (see Article #2151), and make sure you have the most recent MDAC refresh (Microsoft Data Downloads). If you have 'Cache ASP applications' checked, try unchecking it temporarily (see KB #182059 for more information). Try changing the address space and/or isolation settings for the application / site in question. Try dropping and re-creating the application. In addition to these suggestions, if you are getting Event ID 36 in your event log, see Article #2226. If you are getting 'The RPC Server is Unavailable', make sure you are not accessing a machine with an underscore in the name, and otherwise follow the suggestions in Article #2147 -- most importantly to restore the IWAM account.