views:

93

answers:

1

I need to know what operation is being invoked by examining a request Message object in an IDispatchMessageInspector.

What is the best way to do this?

+1  A: 

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.

tomasr
My aim is to do this: http://stackoverflow.com/questions/1686246/prepending-some-text-to-a-wcf-response-message-body. Thanks for the input.
Ries