博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IIS 部署WCF时遇到这么个错:
阅读量:5890 次
发布时间:2019-06-19

本文共 819 字,大约阅读时间需要 2 分钟。

转(http://blog.csdn.net/vic0228/article/details/48806405)   

部署WCF时遇到这么个错:

"The service cannot be activated because it does not ASP compatibility. ASP compatibility is enabled for this application. Turn off ASP compatibility mode in the web.config or add the AspNetCompatibilityRequirements attribute to the service type with RequirementsMode setting as 'Allowed' or 'Required'." 

    长长的一大串看着很吓人,但按其中的提示来操作就行了,第一种“Turn off ASP.NET compatibility mode in the web.config”,在web配置文件里搜“serviceHostingEnvironment”,默认的配置是这样的

 

把前面那个true改成false即可。正确如下

如果配置文件里没有这句加上即可,加在system.serviceModel中。或者第二种即在契约类名头部加段配置就行,记得先引用相应的命名空间,不然无法提示,按照提示设置成Allowed或者Required.这两种方式选择其中一种设置即可。

参考:

https://stackoverflow.com/questions/2375361/wcf-hosted-in-a-web-application-and-compatibility-mode

转载于:https://www.cnblogs.com/lhyqzx/p/7156208.html

你可能感兴趣的文章
gitlab 完整部署实例
查看>>
GNS关于IPS&ASA&PIX&Junos的配置
查看>>
影响企业信息化成败的几点因素
查看>>
SCCM 2016 配置管理系列(Part8)
查看>>
struts中的xwork源码下载地址
查看>>
ABP理论学习之仓储
查看>>
我的友情链接
查看>>
CentOS图形界面和命令行切换
查看>>
HTML5通信机制与html5地理信息定位(gps)
查看>>
加快ALTER TABLE 操作速度
查看>>
PHP 程序员的技术成长规划
查看>>
python基础教程_学习笔记19:标准库:一些最爱——集合、堆和双端队列
查看>>
js replace,正则截取字符串内容
查看>>
作业2
查看>>
nginx的信号量
查看>>
云im php,网易云IM
查看>>
DEFERRED_SEGMENT_CREATION
查看>>
Ada boost学习
查看>>
开源 java CMS - FreeCMS2.3字典管理
查看>>
block,inline和inline-block概念和区别
查看>>