If my service encounters an error, I want that thread to return an error and terminate, but later requests should still work fine. How do I do this? If I have an unhandled exception, it will get passed back to the client, but then the service stops.
Share
What kind of unhandled exception? Unless the exception is a terminating exception (Stack Overflow or the like), the ServiceHost should continue to respond to subsequent requests.