Asp.net routing integration function requires asp.net compatibility with webapi 0.6.0 compatibility and asp.net compatibility

using asp.net webapi v0.6.0 I get this error on startup. Asp.net support is included for the site. I’m trying to fix this for a couple of days and frankly don’t even know where to start.

Any help would be appreciated

+6
source share
1 answer

Try adding below to system.servicemodel in web.config

<serviceHostingEnvironment aspNetCompatibilityEnabled="true"/> 
+4
source

Source: https://habr.com/ru/post/915322/


All Articles