0

通过 Fiddler 向 Kestrel 发出请求时,以下请求成功。

GET http://192.168.1.148:5000/ HTTP/1.1
Host: 192.168.1.148:5000
Connection: keep-alive

通过 NETMF Emulator 发出请求时,以下请求失败。

GET http://192.168.1.148:5000 HTTP/1.1
Host: 192.168.1.148:5000
Connection: keep-alive

这是 ASP.NET Core 错误消息。该错误似乎与日志记录有关!

Request finished in 24788.6203ms 500
fail: Microsoft.AspNet.Server.Kestrel[13]
An unhandled exception was thrown by the application.
System.AggregateException: An error occurred while writing to logger(s).

---> System.ArgumentException: Parameter name: value

at Microsoft.AspNet.Http.PathString..ctor(String value)
at Microsoft.AspNet.Http.Internal.DefaultHttpRequest.get_Path()
at Microsoft.AspNet.Hosting.Internal.HostingLoggerExtensions
    .HostingRequestStarting.ToString()
at Microsoft.Extensions.Logging.Console.ConsoleLogger.Log(
    LogLevel logLevel, Int32 eventId, Object state, 
    Exception exception, Func`3 formatter)
at Microsoft.Extensions.Logging.Logger.Log(
    LogLevel logLevel, Int32 eventId, Object state, 
    Exception exception, Func`3 formatter)

--- End of inner exception stack trace ---

at Microsoft.Extensions.Logging.Logger.Log(
    LogLevel logLevel, Int32 eventId, Object state, 
    Exception exception, Func`3 formatter)
at Microsoft.AspNet.Hosting.Internal.HostingLoggerExtensions
    .RequestStarting(ILogger logger, HttpContext httpContext)
at Microsoft.AspNet.Hosting.Internal.HostingEngine
    .<>c__DisplayClass32_0.<<Start>b__0>d.MoveNext()

--- End of stack trace from previous location where exception was thrown ---

at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter
    .HandleNonSuccessAndDebuggerNotification(Task task)
at Microsoft.AspNet.Server.Kestrel.Http.Frame
    .<RequestProcessingAsync>d__79.MoveNext()

---> (Inner Exception #0) System.ArgumentException: Parameter name: value

at Microsoft.AspNet.Http.PathString..ctor(String value)
at Microsoft.AspNet.Http.Internal.DefaultHttpRequest.get_Path()
at Microsoft.AspNet.Hosting.Internal.HostingLoggerExtensions
    .HostingRequestStarting.ToString()
at Microsoft.Extensions.Logging.Console.ConsoleLogger.Log(
    LogLevel logLevel, Int32 eventId, Object state, 
    Exception exception, Func`3 formatter)
at Microsoft.Extensions.Logging.Logger.Log(
    LogLevel logLevel, Int32 eventId, Object state, 
    Exception exception, Func`3 formatter)<---

这是整个 ASP.NET Core 程序。

using System;
using Microsoft.AspNet.Builder;
using Microsoft.AspNet.Http;
using Microsoft.Extensions.Logging;

namespace EmptyApplication01
{
    public class Startup
    {
        public void Configure(
            IApplicationBuilder app, 
            ILoggerFactory loggerFactory)
        {
            loggerFactory.AddConsole(minLevel: LogLevel.Verbose);

            app.Run(async (context) =>
            {
                var logger = loggerFactory.CreateLogger("CatchAll");
                logger.LogInformation(DateTime.Now.ToString());

                await context.Response.WriteAsync("head, body");
            });
        }
    }
}
4

2 回答 2

1

我已经想通了。如果 AbsoluteURL 在路径中,Kestrel 将中断。为了使它工作,这是解决方法

    app.Use(next => async context => {

                 // get the frame from kestrel and then but the path by removing the hostname 
                var Frame = (Microsoft.AspNet.Server.Kestrel.Http.Frame)context.Features;

                var newpath = Frame.RequestUri.Replace("http://" + context.Request.Host.Value, "");
                context.Request.Path = newpath;

                // Invoke the rest of the pipeline.
                await next(context);

    });
于 2016-04-06T22:28:53.390 回答
0

关闭日志记录解决了这个问题。这可能是 ASP.NET 日志记录实现中的一个错误。

using Microsoft.AspNet.Builder;
using Microsoft.AspNet.Http;
using System;

namespace EmptyApplication01
{
    public class Startup
    {
        public void Configure(IApplicationBuilder app)
        {
            app.Run(async (context) =>
            {
                // no more logging!
                System.Console.WriteLine(DateTime.Now.ToString());
                await context.Response.WriteAsync("head, body");
            });
        }
    }
}
于 2016-02-18T22:51:35.837 回答