Global Application_Start 未触发使用命名管道调用我的服务
我有一个在命名管道上运行的服务。该服务应该在启动时执行一些操作,因此我在 Global.asax 中定义了它。现在我发现这不是服务第一次收到呼叫时的情况。使用命名管道有什么不同吗?
protected void Application_Start(object sender, EventArgs e)
{
Log.Information("Application_Start().");
DoSomeStuff();
}
I have a service running on Named Pipes. The service should do some stuff on startup, so I defined this in the Global.asax. Now I am experiencing that this is not being when the service receives it first call. Is using Named Pipes different in this way?
protected void Application_Start(object sender, EventArgs e)
{
Log.Information("Application_Start().");
DoSomeStuff();
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来源
Source