1

我编写了一个 Nancy自托管应用程序。这旨在作为没有任何客户端接口的 API 运行。因此,它是一个通过TopShelf部署的控制台应用程序(参见下面的代码)

只要我在标准 http 上运行,一切都可以正常工作。但是我需要通过在https上运行它来保护这个 API (参见下面的 SSL 设置部分)

一旦我通过 https 运行服务,该服务在第一次调用后就会挂起。需要明确的是,第一个电话工作正常,我收到了正确的回复。Howvere 一定是出了问题,因为第二个调用挂起并且只在超时后返回。

这是 Nancy 自助托管中的错误还是我在代码/设置中犯了错误?

谢谢。

控制台应用程序

public class Program
{
    [STAThread]
    public static void Main()
    {
        HostFactory.Run(config => {
            config.Service<SelfHost>(service =>
            {
                service.ConstructUsing(name => new SelfHost());
                service.WhenStarted(s=> s.Start());
                service.WhenStopped(s=> s.Stop());
            });
            config.RunAsLocalSystem();
            config.StartAutomatically();
        });
    }
}

自托管控制器

public class SelfHost
{
    private NancyHost nancyHost;

    public void Start()
    {
        var config = new HostConfiguration { 
            UnhandledExceptionCallback = e => Log.Error("Self Host Exception", e) 
        };
        nancyHost = new NancyHost(config, new Uri("https://myurl.com:8081"));
        nancyHost.Start();
    }

    public void Stop()
    {
        nancyHost.Stop();
    }
}

南希模块

public class RootModule : NancyModule
{
    public RootModule()
    {
        Get["/"] = _ =>
        {
            return "Service is Running";
        };
    }
}

SSL 设置

netsh http add sslcert ipport=0.0.0.0:8081 certhash=XXXX880f5e33288a4c88bb1d321d88d44d2XXXX appid={xxxxxxxx-e7e9-xxxx-94dd-5634a472f42d}
netsh http add urlacl url=https://myurl.com:8081/ user=MYDOMAIN\my-admin-user

编辑 1

遵循@Steven Robbins 的建议,我现在使用预发布的 nuget 包重新编译。不幸的是,最新的预发布包并没有解决这个问题,但是我现在确实有一些非常有趣的日志信息。

日志

//First Call - success
12:51:10|GET| /
12:51:10|OK | Service is Running    

//Second Call failure                                                                                                                                                                                                                        
12:51:12|Self Host Exception
12:51:12| Method    :AsyncProcessClientCertificate
12:51:12| Message   :Element not found

//Restart Service
12:51:41|Stopping Service
12:51:41|Self Host Exception
12:51:41| Method    :EndGetContext
12:51:41| Message   :The I/O operation has been aborted because of either a thread exit or an application request
12:51:41|Self Host Exception
12:51:41| Method    :EndGetContext
12:51:41| Message   :The I/O operation has been aborted because of either a thread exit or an application request

12:51:43|Starting on https://myurl.net:8081
4

1 回答 1

5

如果您将配置对象传递给 NancyHost 构造函数,您可以挂钩未捕获的错误 - 您可能会发现由于客户端证书所做的更改而爆炸,该更改将在 0.18 中修复,但如果您现在可以得到修复从 CI 提要中获取它:

http://www.myget.org/gallery/nancyfx

于 2013-06-10T09:58:42.263 回答