How to get up to speed on SOA? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T11:54:32Zhttp://stackoverflow.com/feeds/question/125831http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/125831/how-to-get-up-to-speed-on-soa6How to get up to speed on SOA?paul2008-09-24T07:28:08Z2008-09-29T10:09:13Z
<p>I've been given the task of laying the groundwork of a SOA for my client. The goal is to open up various processes in an end-client independent way and also to make data available offline e.g. for reps visiting customers.</p>
<p>I do have extensive experience with J2EE (Websphere) and web services but I would appreciate advice on how to build up such an SOA. </p>
<p>Where are the pitfalls? What about security? How finely granulated should services be? etc.</p>
<p>Links to tutorials and book recommendations would also be useful.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/125831/how-to-get-up-to-speed-on-soa/125882#1258823Answer by Sklivvz for How to get up to speed on SOA?Sklivvz2008-09-24T07:44:12Z2008-09-24T07:44:12Z<p><strong>Pitfalls</strong></p>
<ul>
<li>Versioning/backwards compatibility: it gets really hard to change a contract once you have loads of clients. I have seen many sites version the APIs by introducing the version in the URL</li>
</ul>
<p><strong>Granularity</strong></p>
<ul>
<li>Each service should be reasonly self-contained (don't expect people to do 3 calls before they get what they need)</li>
</ul>
<p><strong>Platform Independence</strong></p>
<ul>
<li>Try to give more than one way of accessing your APIs (WS, JSON, REST...)</li>
</ul>
http://stackoverflow.com/questions/125831/how-to-get-up-to-speed-on-soa/125978#1259780Answer by lms for How to get up to speed on SOA?lms2008-09-24T08:13:03Z2008-09-24T08:13:03Z<p>Get an ESB (enterprise service bus): Mulesource is a good choice (Opensource, Mature, yet bleeding edge) . Once you understand it, you will understand SOA.</p>
http://stackoverflow.com/questions/125831/how-to-get-up-to-speed-on-soa/126030#1260304Answer by slim for How to get up to speed on SOA?slim2008-09-24T08:29:35Z2008-09-24T08:29:35Z<p>People can't agree on what SOA actually means.</p>
<p><a href="http://martinfowler.com/bliki/ServiceOrientedAmbiguity.html" rel="nofollow">http://martinfowler.com/bliki/ServiceOrientedAmbiguity.html</a></p>
<p>(although consensus may have grown since that was written)</p>
<p>I suggest quizzing your client to find out exactly what they mean - if anything. Then give them something that <em>actually provides business value</em>, while ticking any SOA boxes that might coincide with that effort.</p>
http://stackoverflow.com/questions/125831/how-to-get-up-to-speed-on-soa/126585#1265853Answer by paul for How to get up to speed on SOA?paul2008-09-24T11:28:50Z2008-09-24T11:28:50Z<p>Found this IBM Redbook <a href="http://www.redbooks.ibm.com/redbooks/pdfs/sg246303.pdf?bcsi_scan_77D14932094FE69C=0&bcsi_scan_filename=sg246303.pdf" rel="nofollow">(#sg246303</a>) which is quite a good introduction to the basics of SOA.</p>
http://stackoverflow.com/questions/125831/how-to-get-up-to-speed-on-soa/128337#1283371Answer by MattMcKnight for How to get up to speed on SOA?MattMcKnight2008-09-24T16:54:02Z2008-09-24T16:54:02Z<blockquote>
<p>The goal is to open up various
processes in an end-client independent
way and also to make data available
offline e.g. for reps visiting
customers.</p>
</blockquote>
<p>The second half of that isn't really an SOA topic, it's more of a replication to mobile devices problem. I would stay far, far away from trying implement a buzzword and focus on the problems that you are stating. Web services are good way to open up process to client independent ways. </p>
http://stackoverflow.com/questions/125831/how-to-get-up-to-speed-on-soa/136508#1365084Answer by Alan for How to get up to speed on SOA?Alan2008-09-25T22:09:26Z2008-09-25T22:09:26Z<p>Call me a SOA-skeptic. Fowler's lament still seems right on.</p>
<p>I would focus on the more general problem: your client has 2 or more applications that have to collaborate together. Look at old school integration patterns.</p>
<p><a href="http://www.eaipatterns.com/" rel="nofollow"><img src="http://rcm-images.amazon.com/images/I/51tVn4YqQUL._SL110_.jpg" alt="EIP image" /></a></p>
http://stackoverflow.com/questions/125831/how-to-get-up-to-speed-on-soa/148163#1481632Answer by James Strachan for How to get up to speed on SOA?James Strachan2008-09-29T10:09:13Z2008-09-29T10:09:13Z<p>As Alan said, I'd start reading the <a href="http://www.enterpriseintegrationpatterns.com/" rel="nofollow">Enterprise Integration Patterns book</a>. There are a number of ways to implement them either using a messaging system directly such as JMS or using open source projects like <a href="http://activemq.apache.org/camel/" rel="nofollow">Apache Camel</a>, for example see the <a href="http://activemq.apache.org/camel/enterprise-integration-patterns.html" rel="nofollow">pattern catalogue</a>.</p>
<p>I'd also look at understanding how to build good RESTful services using JAX-RS with <a href="https://jersey.dev.java.net/" rel="nofollow">Jersey</a> as a simple way to expose resources for your systems to anyone on the web from any language/platform easily without falling into the SOAP/WS-* deathstar :)</p>