In WCF, does a timeout on a request-response operation fault the channel at the client’s end?
If a server times out when sending a response, is the channel faulted at the server’s end?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, a timeout will fault the channel – and there’s always only one channel linking a client and a server – the server doesn’t have a channel of its own…
You basically have:
There’s really only one channel which connects the two bits. As for timeouts – if both ends define a different value for the same timeout, the smaller value will “win” and become relevant – the higher value (on the other end) isn’t taken into account.