vote up 0 vote down star

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?

flag

74% accept rate

1 Answer

vote up 1 vote down check

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.

link|flag
My aim is to do this: stackoverflow.com/questions/1686246/…. Thanks for the input. – Ries Nov 6 at 12:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.