Global Application_Start 未触发使用命名管道调用我的服务

发布于 2024-12-06 10:45:41 字数 252 浏览 0 评论 0原文

我有一个在命名管道上运行的服务。该服务应该在启动时执行一些操作,因此我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浪漫人生路 2024-12-13 10:45:41

非 HTTP 终结点不通过 IIS 处理管道,而是直接路由到 WCF 运行时。这意味着您不能使用 HttpModule 来预处理或后处理请求。此外,HttpApplication 类 (global.asax) 的 Application_Start 和 Application_End 不会触发。因此,如果您想运行此类服务的启动或清理代码,则必须使用 ServiceHost 类的事件。

来源

Non-HTTP endpoints do not pass the IIS processing pipeline and will get routed directly to the WCF runtime. This means that you can't use an HttpModule to pre- or post-process requests. In addition, the Application_Start and Application_End of the HttpApplication class (global.asax) don't fire. So if you want to run startup or cleanup code for such services, you have to use the events of the ServiceHost class.

Source

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文