Could not load type System.ServiceModel.Activation.HttpModule解决办法
等注册完成后网站就可以打开了。
win2008下提示未能从程序集“System.ServiceModel, Version=3.0.0.0问题解决 
在Windows Server 2008中的IIS服务器中部署WCF服务程序时,通过浏览器访问报出如下错误:
未能从程序集“System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089”中加载类型“System.ServiceModel.Activation.HttpModule”。
原因:
这是因为先安装了 .NET Framework 4,随后启用了 .NET Framework 3.5 WCF HTTP 激活,则会发生此错误。
解决办法:
微软官方对该问题也作了解答:http://msdn.microsoft.com/zh-cn/library/aa751852.aspx
只需要已管理员用户在cmd中运行aspnet_regiis.exe -i -enable即可。
Could not load type System.ServiceModel.Activation.HttpModule解决办法的更多相关文章
- Could not load type 'System.ServiceModel.Activation.HttpModule' from assembly 'System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'
		Could not load type 'System.ServiceModel.Activation.HttpModule' from assembly 'System.ServiceModel, ... 
- 解决:Could not load type 'System.ServiceModel.Activation.HttpModule' from assemb
		解决:Could not load type 'System.ServiceModel.Activation.HttpModule' from assembly 'System.ServiceMode ... 
- Could not load type ‘System.ServiceModel.Activation.HttpModule’ from&
		1. 部署网站到IIS7.5,Window 2008的时候出现这个错误 2. 错误信息 Server Error in ‘/’ Application. Could not load type ‘ ... 
- Could not load type 'System.ServiceModel.Activation.HttpModule' from assembly 'System.ServiceModel, Version=3.0.0.0,"解决办法
		这是因为先安装了 .NET Framework 4,随后启用了 .NET Framework 3.5 WCF HTTP 激活,则会发生此错误. 只需要已管理员用户在cmd中运行aspnet_regii ... 
- 解决:Could not load type 'System.ServiceModel.Activation.HttpModule' from assembly 'System.ServiceMode
		版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明.本文链接:https://blog.csdn.net/Eric_K1m/article/deta ... 
- 部署网站出现System.ServiceModel.Activation.HttpModule错误
		1. 部署网站到IIS7.5,Window 2008的时候出现这个错误 2. 错误信息 Server Error in '/' Application. Could not load type 'Sy ... 
- [IIS] 不能加载类型System.ServiceModel.Activation.HttpModule
		Could not load type ‘System.ServiceModel.Activation.HttpModule’ from assembly ‘System.ServiceModel, ... 
- 解决未能从程序集xxx中加载类型System.ServiceModel.Activation.HttpModule的问题
		在IIS中运行网站时,出现错误: 未能从程序集“System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c ... 
- IIS8之System.ServiceModel.Activation.HttpModule錯誤處理
		在Windows Server 2012 R2上安装一个WCF服务,怎么弄都是报System.ServiceModel.Activation.HttpModule錯誤 经过不懈尝次及查找资料,终于找到 ... 
随机推荐
- nodejs运用passport和passport-local分离本地登录
			var express = require('express'); var cookieParser = require('cookie-parser'); var bodyParser = requ ... 
- Ubuntu创建快捷方式
			正常安装putty不成功:sudo apt-get install putty 总是报网络方面的错,我只好从官网下载源码自己编译.还是很容易的,找到unix目录,然后执行:make -f Makefi ... 
- IBM中枪后,下一个是谁?
			冯强/文 在之前的博文<信息战第二弹:中国对美国咨询公司Say no>我以前提到对美国咨询服务公司在国企开展业务的限制.有可能波及IBM.Microsoft.Google.CISCO.Or ... 
- Android采用HttpClient下载图片
			在上一章中谈到Android采用HttpURLConnection下载图片,本章使用HttpClient下载图片 HttpURLConnection与HttpClient的差别: HttpClient ... 
- jquery数字验证大小比较
			$("#rewardForm").validate({ rules: { "reward": { ... 
- sql两表联合查询
			SELECT yt_fault_componentId FROM yt_fault_component a join yt_fault_assembly b on a.yt_fault_assembl ... 
- 深度优先搜索——迷宫问题(华为oj)
			题目描述: 定义一个二维数组N*M(其中2<=N<=10;2<=M<=10),如5 × 5数组下所示: int maze[5][5] = { 0, 1, 0, 0, 0, 0, ... 
- 今年暑假不AC1
			Description "今年暑假不AC?" "是的." "那你干什么呢?" "看世界杯呀,笨蛋!" " ... 
- Spark源码学习2
			转自:http://www.cnblogs.com/hseagle/p/3673123.html 在源码阅读时,需要重点把握以下两大主线. 静态view 即 RDD, transformation a ... 
- IE7.JS解决IE兼容性问题方法
			转自:http://code.google.com/p/ie7-js/ 使IE5,IE6兼容到IE7模式(推荐) <!--[if lt IE 7]> <script src=&quo ... 
