最近基于.NET 4.5的WebSocket开发了一个服务器应用部署到Windows Server 2012和IIS8上去。调试的时候,每次打开网页就会遇到一个异常:
"Could not load type ‘System.ServiceModel.Activation.HttpModule’ from assembly 'System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'".
以前在IIS 7.5上做开发时听说过这个异常,知道这个异常的根源是: applicationHost.config ( C:\Windows\System32\inetsrv\config)中声明了两个互相冲突的HTTP Module和两个互相冲突的HTTP Handler:
以前在IIS 7.5上做开发时听说过这个异常,知道这个异常的根源是: applicationHost.config ( C:\Windows\System32\inetsrv\config)中声明了两个互相冲突的HTTP Module和两个互相冲突的HTTP Handler:
<modules>
<add name="ServiceModel" type="System.ServiceModel.Activation.HttpModule, System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" preCondition="managedHandler" />
<add name="ServiceModel-4.0" type="System.ServiceModel.Activation.ServiceHttpModule, System.