我目前在我的树莓派上运行 Mono JIT 编译器版本 2.10.8.1 (Debian 2.10.8.1-5)。我从 master 分支编译了 nancyfx monorelease 配置。
应用程序按预期启动
Nancy now listening - navigating to http://localhost:8888/nancy/.
Press enter to stop
然后我按如下方式运行测试
pi@raspberrypi ~ $ wget http://localhost:8888/nancy/
--2013-04-13 06:39:12-- http://localhost:8888/nancy/
Resolving localhost (localhost)... 127.0.0.1, ::1
Connecting to localhost (localhost)|127.0.0.1|:8888... connected.
HTTP request sent, awaiting response...
这永远不会完成。它只是坐在那里。
我添加了一些日志记录,我可以看到它处理模块上的路由操作,但它似乎永远不会返回 http 响应。
有没有人见过这个?有没有办法添加更多的异常捕获?
以下没有透露任何信息。
public class LoggingErrorHandler : IErrorHandler
{
private readonly ILog _logger = LogManager.GetLogger(typeof(LoggingErrorHandler));
public bool HandlesStatusCode(HttpStatusCode statusCode)
{
return statusCode == HttpStatusCode.InternalServerError;
}
public bool HandlesStatusCode(HttpStatusCode statusCode, NancyContext context)
{
return statusCode == HttpStatusCode.InternalServerError;
}
public void Handle(HttpStatusCode statusCode, NancyContext context)
{
object errorObject;
context.Items.TryGetValue(NancyEngine.ERROR_EXCEPTION, out errorObject);
var error = errorObject as Exception;
_logger.Error("Unhandled error", error);
}
}
有任何想法吗 ?
谢谢