Resolve Error: The service cannot be activated because it does not support ASP.NET compatibility.

Error Message:

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

Solution:
Turn off aspNetCompatibilityEnabled in web.config like the following.
<serviceHostingEnvironment aspNetCompatibilityEnabled="false">

If aspNetCompatibilityEnabled must be true(that may be used by other services).
You have to add the following attribute for the service class.
<AspNetCompatibilityRequirements(RequirementsMode:=AspNetCompatibilityRequirementsMode.Allowed)> _
    Public Class XXXService
    ... ...

posted @ 2011-06-28 14:56  sayo.net  阅读(756)  评论(0编辑  收藏  举报