Mapping a WCF request message to the underlying operation
I need to know what operation is being invoked by examining a request Message object in an IDispatchMessageInspector.
开发者_如何学JAVAWhat is the best way to do this?
There's really no 100% sure way of doing this, because IDispatchMessageInspector.AfterReceiveRequest() runs before the dispatcher has matched the message to an actual operation on the service. That said, if you're using the default IDispatchOperationSelector, then it's possible to build a map that matches SOAP Action names with operation names during ApplyDispatchBehavior(). I have a blog post that talks a little bit about this here.
There's a bit of an example of how to build this map on some code here.
精彩评论