Hi I have a problem handling exceptions in wcf. I have a service like this one: [ServiceContract] public i开发者_StackOverflow中文版nterface IAddressService
In my RESTful services layer, any exceptions that bubble up to me are caught as Fault Exceptions. Within th开发者_Go百科at FaultException, there\'s a custom XML message that contains <errorNumber&g
I have a WCF service being called as part of a transaction. If the service is called twice (often happening during debugging) I want a FaultException to be thrown by the service but the overall tra开