IDispatchMessageInspector::AfterReceiveRequest Name of call service.
Posted
by jitm
on Stack Overflow
See other posts from Stack Overflow
or by jitm
Published on 2010-03-22T15:17:18Z
Indexed on
2010/03/22
15:41 UTC
Read the original article
Hit count: 540
c#
Hello, I implemented IDispatchMessageInspector
and in method AfterReceiveRequest
I can receive name of method (action) that calling from client like this request.Headers.Action
. Can I found name of service that where this method was implemented? For example I have service Test
and two methods Start
and Stop
and request.Headers.Action for this method like this request.Headers.Action "http://bla.my.com/Start
" and "http://bla.my.com/Start
" How Can I found name Test
and possible this or impossible?
© Stack Overflow or respective owner