如何使用 MessageInspector 在 WCF 上实现编排
我有一个 WCF 服务,我使用 MessageInspector (继承 IDispatchMessageInspector)检查它,
我想在运行服务之前做一些事情,结果我不想运行服务。
我想阻止客户端调用,但客户端没有收到异常。
你能帮助我吗
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此方案类似于 MSDN WCF 论坛中标题为“IDispatchMessageInspector.AfterReceiveRequest - 跳过操作并手动生成自定义响应”。如果这是您所需要的(当您在检查器中收到消息时,您决定要跳过服务操作,但向客户端返回消息并且客户端不应该看到异常),那么这个答案应该适用于你也是。请注意,您需要以与客户端期望的格式相同的格式创建响应消息,否则您将遇到异常。
此代码使用三个(许多)WCF 扩展点来实现该场景:一个消息检查器(正如您所提到的您正在使用的)、一个消息格式化程序和一个操作调用程序。我在关于 WCF 扩展性的持续系列博客中介绍了它们,网址为 http://blogs.msdn.com/b/carlosfigueira/archive/2011/03/14/wcf-extensibility.aspx。
This scenario looks like the post in the MSDN WCF forum entitled "IDispatchMessageInspector.AfterReceiveRequest - skip operation and manually generate custom response instead". If this is what you need (when you receive a message in the inspector, you decide that you want to skip the service operation, but return a message to the client and the client should not see an exception), then this answer should work for you as well. Notice that you'll need to create the response message in the same format as the client expects, otherwise you'll have an exception.
This code uses three of the (many) WCF extensibility points to achieve that scenario, a message inspector (as you've mentioned you're using), a message formatter and an operation invoker. I've blogged about them in an ongoing series about WCF extensibility at http://blogs.msdn.com/b/carlosfigueira/archive/2011/03/14/wcf-extensibility.aspx.