• 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
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

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 ]
 
I'm doing laundry! Look how clean this tiny ad is:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic