This week's book giveaway is in the Raspberry Pi forum.
We're giving away four copies of Getting started with Java on the Raspberry Pi and have Frank DelPorte on-line!
See this thread for details.
Win a copy of Getting started with Java on the Raspberry Pi this week in the Raspberry Pi forum!
  • Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Jeanne Boyarsky
Sheriffs:
  • Rob Spoor
  • Devaka Cooray
  • Liutauras Vilda
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Piet Souris

What are the many ways to implement SOA?

 
Ranch Hand
Posts: 273
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,

I have read in JavaWorld that Web Services is one way to implement SOA? May I know what are the other ways?

Thanks,
Guru
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
There was a discussion about this not too long ago in this very forum: here.
 
Gurumurthy Ramamurthy
Ranch Hand
Posts: 273
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Guys,

I have just found out that:

REST (REpresention State Transfer) is another way to implement SOA.

Thanks,
Guru
 
Ulf Dittmer
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Well, REST is a just a different way of implementing web services, so I wouldn't say it's a different way (besides WS) to implement SOA.
 
Bartender
Posts: 2968
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Gurumurthy Ramamurthy:
REST (REpresentional State Transfer) is another way to implement SOA.



Thomas Erl describes in his book Service-Oriented Architecture (SOA): Concepts, Technology, and Design (amazon US) what he believes the important characteristics of contemporary SOA are (p.55):


Contemporary SOA is generally:

  • based on open standards
  • architecturally composable
  • capable of improving QoS

  • Contemporary SOA supports, fosters, or promotes:
  • vendor diversity
  • intrinsic interoperability
  • discoverability
  • federation
  • inherent reusability
  • extensibility
  • service-oriented business modeling
  • layers of abstraction
  • enterprise loose coupling
  • organizational agility



  • In many cases standards do not yet exist for RESTful web services to offer some of these characteristics. Some may actually argue that SOA embraces complexity while RESTful design strives for simplicity. RESTful design allows for algorithmic resources - however it also seeks to replace the RPC-thinking prevalent in service-oriented architecture with resource-oriented thinking (a service can be a resource - but a resource doesn't have to be a service).
    In many cases SOA is assumed to be implemented with SOAP-based web services. This doesn't mean that RESTful web services are inferior to SOAP-based web services, they just pursue different objectives.
    That being said, RESTful web services can be used to achieve the some of the principles that made SOA initially so desirable (p. 37):
  • Loose Coupling
  • Service Contract
  • Autonomy
  • Abstraction
  • Reusability
  • Composability
  • Statelessness
  • Discoverability

  •  
    Let's go to the waterfront with this tiny ad:
    Low Tech Laboratory
    https://www.kickstarter.com/projects/paulwheaton/low-tech-0
    reply
      Bookmark Topic Watch Topic
    • New Topic