Quantcast
Channel: CodingThis.com
Viewing all articles
Browse latest Browse all 10

Exception Handling and Using Transactions in WCF Service

$
0
0

Exception handling – WCF perspective

WCF service is a programming paradigm that offers a common platform for writing service contracts using Microsoft provided CLR environment where heterogeneous platforms/clients technology may consume these contracts. So propagation of exception details occurred in service to the client applications must happen in a platform-agnostic manner so that a client application can also get to know exactly what went wrong in the service.

About FaultException

FaultException is the exception class defined in System.ServiceModel and inherits CommunicationException class. In general it represents a SOAP fault. The constructor accepts two main arguments (reason which is a string and a FaultCode object). In the example below we are making use of this class.

Pic1

Using FaultException class for catching Soap fault

The concern in this approach is that while writing the exception handling routine; the developer has to think of every possible exception that can result from the underlying code. Otherwise a catch-all exception (as shown above after the highlighted block) can be written. But in that case also very limited information on how the exception occurred can be made available to the client application.

A better way – strongly typed Faults

We can define our Fault contracts (just like Data contracts) that will contain more relevant information about the source and reason for the SOAP faults (as shown below).

Replacing FaultException with FaultContracts with strongly typed counterparts

Replacing FaultException with FaultContracts with strongly typed counterparts

In the client side we will need to catch the exception as shown below:

Propagating exception details through FaultContract in client application

Propagating exception details through FaultContract in client application

Important Note: During development phase; “includeExceptionDetailInFaults” must be set to true so that the service method can return the fault details to the client application (as shown in the following image) Otherwise a generic exception description is returned.

IncludeExceptionDetailInFaults must be set to true in order to get details from client

IncludeExceptionDetailInFaults must be set to true in order to get details from client

This attribute can also be changed from individual service implementation using ServiceBehavior attribute as shown below.

Overriding of includeExceptionDetailInFaults attribute through ServiceBehavior

Overriding of includeExceptionDetailInFaults attribute through ServiceBehavior

 

 

 

 

Important Note: This option has been provided mainly for the ease of debugging purpose during development phase. It is strongly discouraged to put this setting on while releasing a service in production as it can expose severe security risks.

An introduction to transaction handling in WCF service

Handling of transaction contains the same flavor of ACID property in WCF world as with any other programming constructs. Here we need to take some crucial decision as to which mode of transaction our service needs to implement:

Option 1: Service side only – in this case transaction has to be within the scope of the service method only and it is not needed to propagate to the client.

Option 2: Client side only – in this case transaction has to be implemented only within the client method and service does not need to participate in it.

Option 3: Client/Service both – this option is used when transaction is initiated either in service or in client side but it is needed to be propagated to the other in order to commit the whole operation.

The fulcrum of transaction control lies with a binding configuration item called “TransactionFlow”. One more point to be noted that this option is available only with the following bindings – NetTcpBinding, NetNamedPipeBinding, wsHttpBinding (we will use this as shown in Pic 6), wsDualHttpBinding and wsFederationHttpBinding.

“transactionFlow” attribute is present with “wsHttpBinding”

“transactionFlow” attribute is present with “wsHttpBinding”

Next step is to make the operation contract transaction aware as shown in following figure:

Setting TransactionFlow attribute in OperationContract

Setting TransactionFlow attribute in OperationContract

An operation contract can have three different types of values in TransactionFlow:

  1. Allowed – this is the case where transaction may be flowed from client to service or vice versa; this corresponds to the option 3 transaction mode mentioned above (the service will try to use a transaction scope from client call and if it is not there the scope will get created).
  2. Mandatory – this option is used when transactional flow must exists between service and client method consuming the service; this corresponds to option 2 (service will always expect a transaction scope to be flown from client method).
  3. NotAllowed – this is the default option where transaction flow does not exist between service method and client method. This corresponds to option 1 (in this case service will create its own transaction scope whether the client has its separate scope created or not).

Next important thing is to make the operation behavior act according to the transaction methodology. We need to specify TransactionScopeRequired property of OperationBehavior to true in order to make it transaction aware as shown in the following image:

Setting TransactionScopeRequired property to true in OperationBehavior

Setting TransactionScopeRequired property to true in OperationBehavior

Now, as we have mentioned in OperationContract stage that TransactionFlowOption is allowed; so we are using the scope in client method call (as shown in following image).

Assigning the scope at client level and allowing the scope to flow to service method

Assigning the scope at client level and allowing the scope to flow to service method

Here, TransactionScope is a class in System.Transactions namespace.

Conclusion

To summarize, Appropriate exception handling using FaultContract and implementing robust transaction implementation ensures proper flowing of data from client method to service method and vice versa.

 

The post Exception Handling and Using Transactions in WCF Service appeared first on CodingThis.com.


Viewing all articles
Browse latest Browse all 10

Trending Articles