I'm looking for a way to log both requests and responses in a WCF REST service. The WCF REST starter kit comes with a RequestInterceptor class which can be used to intercept requests, but there does not seem to be an equivalent for responses. Ideally, I'd like to be able to intercept a response just before it's sent over the wire, e.g. when the underlying service method returns. Any suggestions?
|
|
Notice that if you want to intercept the raw message, and not the parameters, you can inject your implementation of IDispatchMessageInspector instead of the IParameterInspector extension point that Dani suggests. |
||
|
|
|
|
There is a technic in WCF: you create InstrumentedOperationAttribute that derives from Attribute, IOperationBehavior. Inside you implement:
and the ServerPI() class is what does the magic: you do everything you need in beforecall and aftercall methods:
|
||
|
|
