Hello, I'm trying to write an extension that will allow me, for each and every WCF operation I run, if it returns with a timeout error, to start a new proxy and try again (once).
I know that Michelle Leroux Bustamante wrote a code-gen'ed proxy that does the same, but I'm trying to do this without having to modify or replace the service client (I am handed down the proxy from the service provider).
Is this possible? From looking at IClientMessageIntercepter , which I believe to be the extension point I need, I couldn't figure out how to anything except modifying the message, or commenting (i.e logging) about the message.
Please help, Thanks - Assaf.