我没有仅使用HTTP功能MQMessaging,因此不需要设置我的app主机和监听端口(此时)。我确实希望所有的管道都是默认的,即IoC等。
这可能吗?仅供参考,我现在正在使用Topshelf来引导服务,它似乎工作正常,我只是不需要监听HTTP请求。
谢谢你, 斯蒂芬
public class Program
{
public static void Main()
{
HostFactory.Run(x =>
{
x.Service<AppHost>(s =>
{
s.ConstructUsing(name => new AppHost());
s.WhenStarted(ah =>
{
ah.Init();
ah.Start("http://*:8088/");
"Lead message processor listening at http://localhost:8088 ".Print();
});
s.WhenStopped(ah => ah.Stop());
});
x.RunAsLocalSystem();
x.SetDescription("Processes all messages for the Leads application.");
x.SetDisplayName("Leads Message Processor");
x.SetServiceName("LOLeadsProcessor");
});
}
}
public class AppHost : AppSelfHostBase
{
public AppHost()
: base("LO.Leads.Processor", typeof(HelloService).Assembly)
{
// Logging
LogManager.LogFactory = new NLogFactory();
}
public override void Configure(Container container)
{
//RabbitMQ
container.Register<IMessageService>(c => new RabbitMqServer("cdev-9010.example.com", "test", "test")
{
AutoReconnect = true,
DisablePriorityQueues = true,
});
RabbitMqServer mqServer = (RabbitMqServer)container.Resolve<IMessageService>();
mqServer.RegisterHandler<HelloIntro>(m =>
{
return new HelloIntroResponse { Result = "Hello, {0}!".Fmt(m.GetBody().Name) };
});
mqServer.Start();
}
}
答案 0 :(得分:2)
在Windows服务中托管ServiceStack与任何其他.NET应用程序没有什么特别之处,这最终是一个偏好问题。以下是Windows Service内部ServiceStack应用程序的几个现有示例(即没有TopShelf):
自托管AppSelfHostBase
通常是Windows服务将继承的内容,但如果您不需要支持HTTP请求,则只需继承BasicAppHost
或公共ServiceStackHost
(所有ServiceStack主机都继承的。)