Stefan Tilkov's Random Stuff

What's so New About SOA?

A great discussion going on at Ted Neward’s about whether, and if so, how, a service differs from a simple RPC interface. (Incidentally, there’s a very similar discussion going on in the SOA mailing list.) Since Ted’s weblog software keeps throwing exceptions when I try to leave a comment there, I’ll just post it here.

I think there is a difference between a service and, say, a component, and I hate the argument that an SOA is what we have been doing with CORBA, DCOM, and RPC. If you define SOA so that it is compatible with those approaches, I agree that it would be “just a buzzword”.

To me, there is a pretty clear distinction between a service and an RPC procedure, an EJB session bean or a DCE interface. Let me try to enumerate some points:

  1. A service has no association to a particular programming model; instead, it is defined by the logical protocol you use to talk to it. This protocol includes the definition of the messages you use to communicate with it, and the patterns those messages are exchanged in. Request/Response is perfectly fine, as is one-way fire and forget.

  2. Messages are explicit, not just an implementation detail of how your parameters are marshalled. Ideally, the messages themselves have business semantics on their own, without being tied to any particular operation. Re-use of existing business vocabularies, such as e.g. UBL, is possible simply by exchanging a message as defined by its Schema there.

  3. There is a way to address non-functional aspects, such as message correlation in asynchronous scenarios, transaction or process contexts, independently of the business semantics (e.g. within SOAP headers in the case of Web services), and this method is open to extension not just by middleware or toolkit vendors, but by users.

  4. Policy governs how parties such as a service provider and a service consumer communicate, with negotiation ideally taking place at the latest possible time (during runtime).

And to offer some answers to your questions: If I used some other term as an example, let’s say “component”, I could argue that a Web browser, a Web server and a database all are “components”. In the same way, they are all “services”. True, but utterly useless.

So IMO, the database, the Web server, and the Web browser are definitely not services.

Comments

On September 10, 2004 5:11 PM, Daniel said:

It seems to me that the most salient new feature of services vs. components is discovery. With stuff like WSDL and UDDI on the horizon, services advertise their capabilities and their interfaces. Although it was possible with components, it was always ad-hoc and thus not widely interoperable. Now, not only services are built with discovery in mind from the ground up, but there is a standard way to discover what a service provides.