• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

OOP Vs SOA Architectures

 
Ranch Hand
Posts: 1491
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What is the difference between OOP and SOA Architectures ?
 
author
Posts: 608
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
OOP is an architecture based on interacting objects which have both data and behavior.

SOA is an architecture based on a collection of functions which can be invoked by clients. With web services, the functions are XML based.

OOP can be used to implement SOA.

If you go to www.google.com you can find out a lot of information on this topic.

- Scott
 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The difference between SOA and distributed objects is the distributed objects are optimized for a client/server scenario consisting of a single application.
 
Ranch Hand
Posts: 2187
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

What is the difference between OOP and SOA Architectures ?



"object-oriented programming" is a style of programming. It does not describe software architecture.

"service-oriented architecture" pertains to both a business strategy and a service-based software architecture design.

There are many different ways to program in an object-oriented fashion.

There are many different ways to design a service-oriented architecture.

A service-oriented architecture can be partially implemented with object-oriented software.
[ July 08, 2008: Message edited by: James Clark ]
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic