Service Oriented Architecture: How would you define it - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T21:11:45Zhttp://stackoverflow.com/feeds/question/59537http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/59537/service-oriented-architecture-how-would-you-define-it11Service Oriented Architecture: How would you define itCraig H2008-09-12T17:10:36Z2009-01-01T07:54:30Z
<p>Service Oriented Architecture seems to be more and more of a hot quote these days, but after asking around the office I have found that I seem to get many different definitions for it. How would you guys define SOA? What would you consider the official definition?</p>
http://stackoverflow.com/questions/59537/service-oriented-architecture-how-would-you-define-it/59542#595423Answer by Mark Cidade for Service Oriented Architecture: How would you define itMark Cidade2008-09-12T17:15:04Z2008-09-12T17:15:04Z<p>An SOA design includes components (i.e., <em>services</em>) that can be used by code regardless of implementation (i.e., any OS or langauge). A single instance of a service may also be used by multiple applications, whereas, e.g., a DLL would have to be duplicated for each app and require the same implementation technology as the linking application.</p>
<p>Services in an SOA design are usually implemented as interoperable web services.</p>
http://stackoverflow.com/questions/59537/service-oriented-architecture-how-would-you-define-it/59543#5954317Answer by Ryan Lanciaux for Service Oriented Architecture: How would you define itRyan Lanciaux2008-09-12T17:15:14Z2008-09-12T17:15:14Z<p>As Martin Fowler says, it means different things to different people. His article on the topic is pretty good although it isn't quite a definition.</p>
<p><a href="http://martinfowler.com/bliki/ServiceOrientedAmbiguity.html" rel="nofollow">http://martinfowler.com/bliki/ServiceOrientedAmbiguity.html</a></p>
<p>It may explain, the difficulty coming up with a concrete definition.</p>
http://stackoverflow.com/questions/59537/service-oriented-architecture-how-would-you-define-it/59550#595503Answer by Tyler for Service Oriented Architecture: How would you define itTyler2008-09-12T17:19:33Z2008-09-12T17:19:33Z<p>I'd go with:</p>
<blockquote>
<p>Defining a series of stateless, client
agnostic business operations created
to be leveraged in multiple
applications.</p>
</blockquote>
http://stackoverflow.com/questions/59537/service-oriented-architecture-how-would-you-define-it/59555#595557Answer by Shog9 for Service Oriented Architecture: How would you define itShog92008-09-12T17:23:04Z2008-09-12T17:23:04Z<blockquote>
<p>How would you guys define SOA?</p>
</blockquote>
<p>A vague marketing term, on a fast train to the bustling burg of Meaninglessville. Used as a stand-in for more precise pattern names. See also: Web 2.0...</p>
http://stackoverflow.com/questions/59537/service-oriented-architecture-how-would-you-define-it/65132#651320Answer by Vincent Fazio for Service Oriented Architecture: How would you define itVincent Fazio2008-09-15T17:54:33Z2008-09-15T17:54:33Z<p>I attempted to define SOA in <a href="http://vincentfazio.blogspot.com/2008/07/something-old-something-new.html" rel="nofollow">one of my blog posts</a>. Here's an excerpt...</p>
<blockquote>
<p>For years it's been standard practice to separate functionality into functions, classes, and modules. The idea has always been that these smaller, highly specialized components are easier to share and maintain than monolithic blocks of code.</p>
<p>Functionally, SOA is not much different. The goals are the same - reusability and easy maintenance. The biggest difference - in the case of a web service SOA - is that the shared library included in your application is replaced with an HTTP call. </p>
</blockquote>
http://stackoverflow.com/questions/59537/service-oriented-architecture-how-would-you-define-it/65329#653291Answer by blackwing for Service Oriented Architecture: How would you define itblackwing2008-09-15T18:16:02Z2008-09-15T18:16:02Z<p>There isn't an official definition as Ryan mentioned eariler. However, I find Thomas Erl's view of the whole service-orientation quite well-structured and relevant. Here is the definition of SOA from his <a href="http://www.soaglossary.com/" rel="nofollow">SOA Glossary</a> (<a href="http://www.soaglossary.com/service_oriented_architecture.asp" rel="nofollow">more</a>):</p>
<blockquote>
<p>Service-oriented architecture represents an architectural model that aims to enhance the agility and cost-effectiveness of an enterprise while reducing the overall burden of IT on an organization.</p>
</blockquote>
<p>Thomas Erl is the author of many SOA titles most of them receiving endorsement from SOA vendors including IBM, Oracle, and Microsoft. The nice thing about <a href="http://www.soabooks.com/" rel="nofollow">his books</a> is that they are as SOA vendor independent as possible. It means you learn more about service-orientation itself and less about some vendor's middleware that supports SOA.</p>
http://stackoverflow.com/questions/59537/service-oriented-architecture-how-would-you-define-it/92665#926654Answer by masterd for Service Oriented Architecture: How would you define itmasterd2008-09-18T13:46:49Z2008-09-18T13:46:49Z<p>Wikipedia: "A SOA is a software architecture that uses loosely coupled software services to support the requirements of business processes and software users. Resources on a network in an SOA enviroment are made available as independent services that can be accessed without knowledge of their underlying platform implementation."</p>
<p>SOA is not that new, but it has potential to achieve some amazing things. But the organization has to be ready for it: the business has to think in processes and that's the big problem</p>
http://stackoverflow.com/questions/59537/service-oriented-architecture-how-would-you-define-it/128386#1283860Answer by MattMcKnight for Service Oriented Architecture: How would you define itMattMcKnight2008-09-24T17:03:21Z2008-09-24T17:03:21Z<p>I agree with all of the people that point you to Fowler on this. Basically it runs like this: service oriented architecture got a reputation as being good, so anything that people want to be associated with good they call SOA. In reality it has a lot of downsides and can create a Service Oriented Gridlock or Dependency Oriented Architecture.</p>
<p>Here's my go at a definition:
Service Oriented Architecture is a systems integration and code reuse approach where applications are dependent on connecting to services provided by other running applications across the network. This is distinct from component architectures, where software components are shared statically between applications in the form of libraries or SDKs, for example. </p>
http://stackoverflow.com/questions/59537/service-oriented-architecture-how-would-you-define-it/404696#4046961Answer by Subramanian for Service Oriented Architecture: How would you define itSubramanian2009-01-01T07:54:30Z2009-01-01T07:54:30Z<p>A clarification here - "Service Oriented Architecture is a <strong>systems integration</strong> and code reuse approach where applications are dependent on <strong>connecting to services provided by other running applications across the network</strong>." </p>
<p>I have a scenario where two j2ee applications have been integrated using event driven messaging. Here the above phrases of <strong>systems integration</strong> and <strong>connecting to services provided by other running applications across the network</strong> hold good. Can i call this SOA ?</p>
<p>The following principles would hold good here
1) statelessness
2) message oriented - loosely coupled infact de-coupled
3) extensible.</p>
<p>However, the following do not apply
1) platform independence - neither of the applications being integrated has been designed to work in a different platform.
2) The applications are plain j2ee applications which have not been designed with all soa concepts.</p>