|
Posted by Siva. (Jun 17, 2014) |
|
SOA or Service oriented architecture is an architecture style for building business applications by means of services. Application comprises collection of services which communicate through messages. |
|
Posted by Gaurav Rastogi. (Mar 03, 2014) |
|
Posted by Gaurav Rastogi. (Mar 03, 2014) |
|
SOA stands for service oriented architecture Principle of SOA 1) Loosely coupled : our client application and WCF service should be loosely coupled.suppose client send the request but the service is down but in that case also our client should work does not throw the exception. 2) Contracts & versioning in WCF service : In our WCF service we can implement the contracts that can be implemented to the implemneted class so with the help of contract we can publish the operation to the client rather than the complete implementation. We are also having the flexibility of versioning in service contract. 3)Security: The message which travel from client to service and service to client should be encrypted and digitally signed. 4) Boundaries are explicit : It means that we should call our service only when it is required the unnecessary call to the service should be avoided. |