Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>SOA is way to develop service oriented applications and WCF is technology which can be used to develop service oriented applications. BUT SOA defines strict rules (known as SOA tenets) for applications. If you don't follow these rules you are building services but these services do not conform to SOA. </p> <p>WCF allows you to develop plenty of types of services. You can develop interoperable SOAP services which conform to SOA or which doesn't. You can develop pure .NET services with non interoperable features and you can develop REST services.</p> <p>Moreover in SOA service can have different meaning than in WCF. In WCF service is collection of functionality exposed on endpoints. In SOA the service can be whole application (set of WCF like services) - difference between small and big SOA.</p> <p>SOA tenets are:</p> <ul> <li>Boundaries are explicit - service doesn't share anything with other services (even database tables and data can't be shared)</li> <li>Services are autonomous - each service is independent, can be separately deployed and versioned</li> <li>Services share schema and contract, not class - services are described in WSDL, transported data are described in XSD, orchestrations (aggregation) are described in BPEL</li> <li>Services compatibility is based upon policy - WSDL contains WS-Policies to describe configuration needed for interoperability</li> </ul> <p>As you see especially first two tenets can be easily violated when building WCF service.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload