Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

A collegue of mine needs to implement custom logging of WCF messages, for debugging purposes, but also for traceability (logged data will be saved for future reference and verification).

Examples like this one, Capture XML In WCF Service, shows how to do this for the host, but he needs it for the client application.

Can anyone help me/him with some pointers to what to look for, or where to start?

Since we need to talk to a database to log the data, a simple configuration change to log to a file on disk, like this MSDN example, Configure Message Logging, is not enough for our needs.

This is a C# 3.0 application for .NET 3.5.

share|improve this question
What's the client app? There's a mutlitude of client apps that could be talking to a WCF service so the logging is going to depend wholly on what's available on the client. – sipwiz Oct 2 '09 at 13:00
It's for .NET 3.5 and C# 3.0, sorry for missing that, have added tags and edited the question. – Lasse V. Karlsen Oct 2 '09 at 13:01

1 Answer

up vote 2 down vote accepted

The example you cited: it is very similar/dual for the client. Instead of IDispatchMessageInspector, there's IClientMessageInspector. Instead of IServiceBehavior, use IEndpointBehavior, etc. The OM will steer you in the right direction.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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