Nancy的Windows服务无法启动主机

时间:2016-02-23 12:50:36

标签: c# windows-services nancy

我开发了一个Windows服务,其任务实际上是启动具有特定urlport的主机。以下就是我现在所拥有的。

Program.cs的

static void Main()
{
    ServiceBase[] ServicesToRun;
    ServicesToRun = new ServiceBase[] 
    { 
         new WindowsDxService() 
    };
    ServiceBase.Run(ServicesToRun);
}

ProjectInstaller.cs

[RunInstaller(true)]
public partial class ProjectInstaller : System.Configuration.Install.Installer
{
    public ProjectInstaller()
    {
        InitializeComponent();
    }
}

WindowsDxService.cs

public partial class WindowsDxService : ServiceBase
{
    public WindowsDxService()
    {
        InitializeComponent();
    }

    protected override void OnStart(string[] args)
    {
        var url = "http://127.0.0.1:9000";
        using (var host = new NancyHost(new Uri(url)))
        {
            host.Start();
        }
    }
}

serviceProcessInstaller1文件中的serviceInstaller1ProjectInstaller.cs [Design]配置。

serviceProcessInstaller1
     Account=LocalSystem
serviceInstaller1
     StartType=Automatic

Library.cs

public class Library : NancyModule
{
     public Library()
     {
         Get["/"] = parameters =>
         {
             return "Hello world";
         };
         Get["jsontest"] = parameters =>
         {
             var test = new
             {
                 Name = "Guruprasad Rao",
                 Twitter="@kshkrao3",
                 Occupation="Software Developer"
             };
             return Response.AsJson(test);
         };
     }
}

基本上我跟着 this tutorial ,它实际上显示了如何使用我成功的Console application,但我希望将其作为Windows Service实际显示系统启动时,使用指定的host启动port。该服务已成功启动并正在运行,但每当我在同一系统中浏览url时,它都不显示该页面,这意味着我们的基本 This webpage is not available 消息。我还需要做什么配置才能启动host?希望得到帮助。

1 个答案:

答案 0 :(得分:5)

您在启动服务时正在处置主机。我会建议这样的事情:

public partial class WindowsDxService : ServiceBase
{
    private Host host;

    public WindowsDxService()
    {
        InitializeComponent();
    }

    protected override void OnStart(string[] args)
    {
        this.host = new NancyHost(...)
        this.host.Start();
    }

    protected override void OnStop()
    {
        this.host.Stop();
        this.host.Dispose();
    }
}

如果使用TopShelf库,您可能会发现编写服务要容易得多。