• 无法激活服务,因为它不支持 ASP.NET 兼容性


    wcf错误:

    无法激活服务,因为它不支持 ASP.NET 兼容性。已为此应用程序启用了 ASP.NET 兼容性。请在 web.config 中关闭 ASP.NET 兼容性模式,或将 AspNetCompatibilityRequirements 特性添加到服务类型且同时将 RequirementsMode 设置为“Allowed”或“Required”。

    错误(表象)原因

    一般是因为程序添加了启用了AJAX的WCF服务,在添加WCF服务,浏览WCF服务时出现以上错误,而浏览AJAX的WCF服务不报错。在没有添加AJAX的WCF服务时也不报错。

    解决:

    1.

            web.config中 添加或修改

        <system.serviceModel>

                     <serviceHostingEnvironment aspNetCompatibilityEnabled="fales"  multipleSiteBindingsEnabled="true" />

        </system.serviceModel>

    2.在服务前添加:[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)](启用了AJAXD的WCF服务是默认添加的)

    另:当前已禁用此服务的元数据发布错误

    解决:在web.config中添加:

        <system.serviceModel>

            <behaviors>

                <serviceBehaviors>                 <behavior name="">                     <serviceMetadata httpGetEnabled="true" />                 </behavior>             </serviceBehaviors>         </behaviors>

        </system.serviceModel>

  • 相关阅读:
    OC练习题
    如何将字符串@“ abc123.xyz789”倒置
    整数转换成字符串倒叙放在数组中遍历
    查找名字中有王的姓
    查询单词里包含的字符串
    OC7考核
    OC考核测试题
    OC6考核
    OC5考核
    KH8
  • 原文地址:https://www.cnblogs.com/ChineseMoonGod/p/5542133.html
Copyright © 2020-2023  润新知