我编写了一个 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