vote up 1 vote down star
1

I have the standard error handing in place in my service:

  • I have an IErrorHandler hooked to the service to handle unexpected errors during service execution.
  • I have try/catch blocks in all my service methods to handle expected cases.

However, there are cases where exceptions are thrown on the server and neither is called.

Here is a case where the server exception is not sent to the IErrorHandler:

  • Set the receiveTimout on the server binding to 5 seconds.

  • On the client do this:

.

Service1Client sc = new Service1Client();
ICommunicationObject o = sc as ICommunicationObject;

o.Open(); // open channel

sc.GetData(10); // do a first call

Thread.Sleep(10000); // wait longer than the server receiveTimeout

sc.GetData(10); // Attempt another call: server throws a FaulException

In that case, the error is thrown on the server but I cannot find a way to handle it (and log it). I know an error is raised because if I attach a debugger on the server process and break on all exceptions, the debugger breaks.

I have found other similar cases where low level errors are not passed to my program.

Where can I hook my code to ensure that I can handle ALL exceptions that occur on the server before they are returned to the client app? Should I implement my own IChannel or some other low level interface?

Thanks

UPDATE Sep 21 2009: See this thread on the Microsoft WCF Forum. I'll probably have to implement my own Channel if I want to handle this type of exception. I'll update this post again when I have more info.

flag

74% accept rate
The receiveTimeout server binding should not be in play here - it would only if it took longer than 5 seconds to receive response from the call to GetData(). Your client sleeping for 10 seconds has no effect. Assuming the initial test service that and updating server binding to set receiveTimeout to 5 seconds does not reproduce the problem. What is the fault your receiving on the client? I would actually suspect a misconfigured server binding/behavior, especially if you are not breaking in the service in your code. Enable WCF debugging on client/service and see what it shows. – Zach Bonham Aug 13 at 13:37
As described in the MSDN, the server receiveTimeout is the max amount of time that the server will wait for an idle open channel. In that case the amount of time is exceed. The exception on the client is a MessageSecurityException that has an inner FautException. The inner FaultException states that the receiveTimeout has exceeded. – Sly Aug 13 at 14:04
Interesting. I guess that also might be a clue on why it worked on the first call and not the second. Can you forward a link to the documentation your referring to on receiveTimeout? I'm afraid my understanding of this value is flawed. The docs I refer to are msdn.microsoft.com/en-us/library/…, thanks! – Zach Bonham Aug 13 at 16:23
Here is the doc : msdn.microsoft.com/en-us/library/…. – Sly Aug 13 at 17:49
@Zach: I'm not puzzled by the fact that the 2nd call does not work. This is way I expect. What puzzles me it that I can't seem to find a way to be notified about it on the server. In the end, my client's apps know more about the errors that occur on my server than I do. – Sly Aug 13 at 18:06
show 1 more comment

3 Answers

vote up 1 vote down

Use FaultContracts. Then the fault can be handled at the client end.

http://msdn.microsoft.com/en-us/library/ms732013.aspx

http://www.c-sharpcorner.com/UploadFile/ankithakur/ExceptionHandlingWCF12282007072617AM/ExceptionHandlingWCF.aspx

This is also much better for debugging, since often you will be developing a client and don't want to bring down the server for debugging purposes.

On the client end, use try/catch blocks to catch all exceptions/faults. There are definitely errors that can't be detected on the server end, such as a communication problem, so you need to handle errors on the client end anyways.

If you want centralized error handling, you can create a service that takes messages about all errors, send the error to that server, and have it log that. This can be useful if you want to create a centralized message tracing/performance analysis/logging tool and have a large number of application processors, servers, clients etc.

link|flag
I do use FaultContracts as well. But in this specific case, the error happens way before the operation execution. So I don't even have a chance to convert the exception into a FaultException<T>. – Sly Aug 13 at 14:07
vote up 0 vote down

Set up diagnostic tracing and check the logs with Service Trace Viewer Tool. Link contains information about configuring tracing as well.

link|flag
I did; I do see the error on the server in the trace. I don't want to "trace" these cases, I want to "handle" them. – Sly Aug 13 at 14:09
The tracing will help understand where and why the exceptions are occurring is what I think he meant (trace both client and service). Correctly handling exceptions at the operation level (try/catch/throw faultexception) and an IErrorHandler should cover your bases (at least I thought). Where that might fall down is a bug in the IErrorHandler implementation or a problem with the service configuration so that the exception handling itself has an error and doesn't accurately report the problem. Definitely interested to know if this doesn't cover all bases tho! – Zach Bonham Aug 13 at 16:27
How would you "handle" this exception? – John Saunders Aug 13 at 16:43
@John: At the very minimum, I will log the error in my own centralized error database. We log all errors that occur on our servers. Then, we can regularly analyze all the logs and find potential problems to work on. Our customers don't always report it when they have a problem with web services so we have to be proactive. I may also want to return a different exception to the client in some specific scenarios. – Sly Aug 13 at 18:03
vote up 0 vote down

The point is - if the server is not reachable or can't handle the message, there won't be an error on the server - the error will pop up on the client ("TimeoutException" or others).

So in those cases, having the IErrorHandler on the server really isn't gonna help - since the error really happens on the client (no connection can be made, due to network down, or typo in server's address or sstuff like that).

So on the client side, you definitely also have to use try....catch around all your server calls.

Marc

link|flag
Not correct. It's the server that refuses to handle the call because the receiveTimeout has expired. Therefore the exception is raised by the server. As I wrote, I can attach the debugger on the server process and then I see the exception being raised; the problem is that it's not passed to a handler before it's returned to the client. I need a way to handle this exception on the server. – Sly Aug 13 at 14:00
OK, you're right for the receiveTImeout - but other errors (esp. communication errors) might happen as the client is attempting to connect, and won't ever reach the server, and in these cases, the IErrorHandler on the server obviously is of no use, really. – marc_s Aug 13 at 15:58
That's right; in some cases (server is down for example), the error will only occur on the client. But for those cases where it occurs on the server, I need to make sure I handle them all. – Sly Aug 13 at 17:52

Your Answer

Get an OpenID
or

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