Tag Archives: SOAP

.NET Exceptions Vs WCF Faults

Exception is a .NET mechanism used to communicate problems encountered during the execution of a program. Various .NET languages allows us to throw, catch/handle or possibly ignore exceptions so that it can be further propagated up to the call stack. C# sample code for handling exception in .NET applications below explains it as:  int x = 0;  int result… Read More »