如果安全认证失败,IDispatchMessageInspector不会被触发?

发布于 2024-11-30 17:09:18 字数 227 浏览 0 评论 0原文

我实现 IDispatchMessageInspector 接口来记录原始请求/响应消息。我通过 IEndpointBehavior 接口应用它。它在大多数场景下都能发挥良好的作用。但我发现当身份验证失败时,消息不再被记录。(我在 basicHttpBinding 中使用 TransportWithMessageCredential)。于是我开始调试WCF服务,发现检查器没有被调用。这个案子会发生什么情况呢?

提前致谢。

I implement the IDispatchMessageInspector interface to log the raw request/response message. I apply it via the IEndpointBehavior interface. It works well in most secenarios. But I find the messages does not be logged any more when the authentication fail.(I use TransportWithMessageCredential in the basicHttpBinding). So I start to debug the WCF service and find the inspector doesn't be invoked. What happen to this case?

Thanks in advanced.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

櫻之舞 2024-12-07 17:09:18

身份验证发生在处理任何请求之前,一旦身份验证失败,服务将不会处理任何请求,当然,IDispatchMessageInspector 也不会被调用。

当身份验证发生时,客户端不会向服务发送任何请求。如果您确实想记录原始消息,则可以将自定义 BindingElement 插入到绑定中。

The authentication happens before processing any request, once authentication fails, the service won't process any request, of course, IDispatchMessageInspector won't be invoked.

And when the authentication happens, the client won't send any request to the service. If you do want to log the raw message, you may insert a custom BindingElement into the binding.

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