Owin Startup Class不会在IIS上启动

时间:2016-02-08 22:02:48

标签: iis owin

[assembly: OwinStartup(typeof(Test.TestStartup))]

namespace Test
{
    public class TestStartup
    {
        public void Configuration(IAppBuilder app)
        {
            File.AppendAllText("c:/Test/owin.txt", "started");

            // do stuff
        }
    }
}

我有一个非常简单的OWIN启动类。当我在我的本地运行时,它执行得很好。

当我尝试将此应用程序发布到IIS服务器时,我无法启动它。

应用程序池处于集成模式并使用4.0。

我尝试过包括owin:AutomaticAppStartup =" true"在我的web.config中。

Microsoft.Owin.Host.SystemWeb dll存在于我部署的应用程序的bin目录中。

每个人都可以完全控制“测试”。 。目录

有什么想法吗?我完全陷入困境。

0 个答案:

没有答案