目录

问题案例

解决问题

参考资料

问题案例

今天在win2008+IIS7.5的环境中部署WCF服务后,一直出现无法打开的页面。具体错误信息如下:

HTTP 错误 500.19 - Internal Server Error
无法访问请求的页面,因为该页的相关配置数据无效。
详细错误信息
模块 DynamicCompressionModule
通知 SendResponse
处理程序 StaticFile
错误代码 0x8007007e
请求的 URL ***
物理路径 C:\ECG2.0\eWECGService
登录方法 匿名
登录用户 匿名
最可能的原因:
工作进程无法读取 applicationhost.config 或 web.config 文件。
applicationhost.config 或 web.config 文件中存在格式错误的 XML。
由于 NTFS 权限不正确,服务器无法访问 applicationhost.config 或 web.config 文件。
可尝试的操作:
查询事件日志中有关配置文件不可读的原因的信息。
确保为应用程序池指定的用户标识或通过身份验证的用户具有访问 web.config 文件的必需权限。

解决问题

#Remove/Disable the XPress compression scheme from the configuration using the command below:%windir%\system32\inetsrv\appcmd.exe set config -section:system.webServer/httpCompression /-[name='xpress']

参考资料

地址:http://blogs.msdn.com/b/webtopics/archive/2010/03/08/troubleshooting-http-500-19-errors-in-iis-7.aspx

Error Message:HTTP Error 500.19 - Internal Server Error
The requested page cannot be accessed because the related configuration data for the page is invalid. Module DynamicCompressionModule
Notification SendResponse
Handler StaticFile
Error Code 0x8007007e
Requested URL http://localhost:80/
Physical Path C:\inetpub\wwwroot
Logon Method Anonymous
Logon User AnonymousReason:Error Code 0x8007007e is:ERROR_MOD_NOT_FOUND - The specified module could not be found.This problem occurs because the ApplicationHost.config file or the Web.config file references a module that is invalid or that does not exist. To resolve this problem: In the ApplicationHost.config file or in the Web.config file, locate the module reference or the DLL reference that is invalid, and then fix the reference. To determine which module reference is incorrect, enable Failed Request Tracing, and then reproduce the problem.For above specific error (mentioned in this example), DynamicCompressionModule module is causing the trouble. This is because of the XPress compression scheme module (suscomp.dll) which gets installed with WSUS. Since Compression schemes are defined globally and try to load in every application Pool, it will result in this error when 64bit version of suscomp.dll attempts to load in an application pool which is running in 32bit mode.This module entry looks like:<scheme name="xpress" doStaticCompression="false" doDynamicCompression="true"
dll="C:\Windows\system32\inetsrv\suscomp.dll" staticCompressionLevel="10"
dynamicCompressionLevel="0" />Hence to get rid of this problem:Ø Remove/Disable the XPress compression scheme from the configuration using the command below:%windir%\system32\inetsrv\appcmd.exe set config -section:system.webServer/httpCompression /-[name='xpress']ORØ Add an attribute of "precondition= "64bitness" for this module entry so that it loads only in 64bit application pools

Refer this blog for more details on Preconditions in IIS7ORØ Use a 32bit version of suscomp.dll***************************************

转载于:https://www.cnblogs.com/xiaotiannet/p/3406879.html

IIS7.5 错误代码0x8007007e HTTP 错误 500.19相关推荐

  1. IIS7.5 错误代码0x8007007e HTTP 错误 500.19

    今天在win2008+IIS7.5的环境中部署WCF服务后,一直出现无法打开的页面.具体错误信息如下: HTTP 错误 500.19 - Internal Server Error 无法访问请求的页面 ...

  2. A网站引用B服务器虚拟目录文件导致:网站部署到IIS7上出现HTTP 错误 500.19(由于权限不足而无法读取配置文件)的问题

    A网站引用B服务器共享目录(虚拟目录)导致:网站部署到IIS7上出现HTTP 错误 500.19(由于权限不足而无法读取配置文件)的问题 本攻略并不是本机的部署导致的HTTP 错误 500.19 问题 ...

  3. HTTP 错误 500.19,错误代码0x800700b7的解决办法

    HTTP 错误 500.19 - Internal Server Error 无法访问请求的页面,因为该页的相关配置数据无效. 错误代码:0x800700b7 配置错误:在唯一密钥属性"va ...

  4. HTTP 错误 500.19 - Internal Server Error 无法访问请求的页面,因为该页的相关配置数据无效——错误代码:0x8007000d

    报错图片: 最近在课上学习IIS发布.NET Core项目出现HTTP错误500.19 - Internal Server Error 无法访问请求的页面,因为该页的相关配置数据无效--错误代码:0x ...

  5. HTTP 错误500.19 - 错误代码 0x80070021

    HTTP 错误500.19 - 错误代码 0x80070021 1.错误描述 HTTP 错误500.19 -Internal Server Error 无法访问请求的页面,因为该页的相关配置数据无效. ...

  6. IIS发布.NET Core项目出现HTTP错误500.19 - Internal Server Error[错误代码:0x8007000d]

    IIS发布.NET Core项目出现HTTP错误500.19 - Internal Server Error[错误代码:0x8007000d] IIS管理器浏览网站,页面显示情况: 尝试添加所有权限的 ...

  7. .net core项目iis10上出现 HTTP 错误 500.19,错误代码:0x8007000d

    转载:https://www.cnblogs.com/breakus/p/10475246.html .net core项目iis10上出现 HTTP 错误 500.19,错误代码:0x8007000 ...

  8. IIS 部署.NET Core项目时出现HTTP 错误 500.19,错误代码:0x8007000d

    IIS 部署.NET Core项目时出现HTTP 错误 500.19,错误代码:0x8007000d 解决方案: 1.打开IIS按照步骤点击红框 2.查看模块中是否存在AspNetCoreModule ...

  9. nginx启动完访问网页出现HTTP 错误 500.19 - Internal Server Error错误代码0x80070003 无法读取配置文件

    HTTP 错误 500.19 - Internal Server Error 无法访问请求的页面,因为该页的相关配置数据无效. 详细错误信息: 模块    IIS Web Core 通知    未知 ...

最新文章

  1. Oracle 升级10.2.0.5.4 OPatch 报错Patch 12419392 Optional component(s) missing 解决方法
  2. 皮一皮:这剧透的太厉害了...
  3. 提高语音识别成功率的解决方案思路一
  4. 【挑战极限】最短AJAX创建代码
  5. C++中char*与wchar_t*之间的转换
  6. 天气预报Dom解析(转)
  7. java8 stringbuilder_有了Java8的“+”真的可以不要StringBuilder了吗
  8. Teamcenter开发问题之-- relation 无法创建 and 无法check in
  9. [Swift]LeetCode831. 隐藏个人信息 | Masking Personal Information
  10. 步步为营 .NET三层架构解析 三、SQLHelper设计
  11. 正确的python变量名_Python变量的命名
  12. Objective-C学习之路-由浅入深
  13. 新员工入职表_舞钢农商银行:组织新招录员工开展反假币培训
  14. 传奇程序员云风:从创业到被招安,细数我这20年程序人生
  15. Python爬取煎蛋网多页的图片
  16. ue4 点击某一物体触发事件_UE4引擎——姜小白修炼记(三)
  17. 浅谈sketch插件开发(三)
  18. elementUI Drawer 抽屉打开时表单自动聚焦问题解决
  19. 微信小程序毕业设计论文求职招聘|兼职管理系统+后台管理项目源代码
  20. Redux 的基本使用

热门文章

  1. 在Microsoft Azure上使用IBM Endpoint Manager和IBM PureApplication Software启用许可证扫描
  2. Linux向日葵同步剪贴板,远程桌面可双向复制粘贴图片 向日葵客户端9.0.3更新
  3. 安装linux显示没有定义根文件系统,XP用Wubi安装Ubuntu提示“没有定义根文件系统,请返回分区菜单...
  4. 计算机网络实验-实验四 无线网络的设计
  5. ubuntu下shutdown命令详解
  6. scanf 接收 空格 输入_scanf函数可以输入空白符
  7. flutter Web QQ登录
  8. ios realm 文件_iOS数据持久化方案-Realm的使用
  9. Linux小小白入门教程(一):Linux简介
  10. 数学对象(Math)