编程语言
首页 > 编程语言> > c#-在ASP .NET MVC 4中运行Owin应用

c#-在ASP .NET MVC 4中运行Owin应用

作者:互联网

我有一个ASP .NET MVC 4项目,在这里我试图集成一个Owin应用程序以仅在特定路径上运行,所以所有以owin-api / *开头的请求都将由Owin管道Microsoft.Owin.Host.SystemWeb处理. .OwinHttpHandler和其他请求由MVC管道System.Web.Handlers.TransferRequestHandler

为此,我需要执行以下操作:

在Web.config中

<appSettings>
    <add key="owin:appStartup" value="StartupServer.Startup"/>
</appSettings>   
<system.webServer>
        <handlers>
            <remove name="ExtensionlessUrlHandler-Integrated-4.0" />
            <remove name="OPTIONSVerbHandler" />
            <remove name="TRACEVerbHandler" />
            <add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
            <add  name="Owin" verb="*" path="owin-api/*" type="Microsoft.Owin.Host.SystemWeb.OwinHttpHandler, Microsoft.Owin.Host.SystemWeb" />
        </handlers>
</system.webServer>

启动类:

namespace StartupServer
{

    public class Startup
    {
        public void Configuration(IAppBuilder app)
        {
            app.Run(context =>
            {
                return context.Response.WriteAsync("Owin API");
            });
        }
    }
}

但是,“ Owin API”现在是每个请求的输出.如何仅在Web.config中指定的路径owin-api / *时告诉IIS使用OwinHttpHandler?

解决方法:

app.Run()将没有下一个中间件引用的中间件插入OWIN管道.因此,您可能希望将其替换为app.Use().

您可以检测到URL并以此为依据.例如:

app.Use(async (context, next) =>
{
    if (context.Request.Uri.AbsolutePath.StartsWith("/owin-api"))
    {
        await context.Response.WriteAsync("Owin API");
    }
    await next();
});

标签:katana,owin,asp-net-mvc-4,asp-net,c
来源: https://codeday.me/bug/20191026/1937375.html