我有一个Web API项目以及内置的帮助网站。当我在本地启动项目时,帮助网站主页显示没有问题。但是当我使用fiddler向API控制器发送REST POST请求时,我得到以下响应。
The following errors occurred while attempting to load the app.
- No assembly found containing an OwinStartupAttribute.
- No assembly found containing a Startup or [AssemblyName].Startup class.
To disable OWIN startup discovery, add the appSetting owin:AutomaticAppStartup with a value of "false" in your web.config.
To specify the OWIN startup Assembly, Class, or Method, add the appSetting owin:AppStartup with the fully qualified startup class or configuration method name in your web.config.
我尝试使用错误消息中的建议解决但没有快乐。
它在测试服务器上运行正常。
有人可以建议为什么只在REST请求中返回此错误,而不是在帮助网站启动时以及有关如何解决的任何提示?