Service-Oriented Architecture (SOA) PDF Print E-mail
Written by Joe Pluta   
Sunday, 28 November 2004

Does SOA finally provide the Universal Translator we've been looking for, or at least a step in that direction?

And in the Elder Days, when the Internet was Young, there was HTML, and Computers could talk to Humankind, and it was Good. But then Computers began to speak to Computers, and HTML was cast aside as bulky and inappropriate. Thus HTML begat XML, and XML begat SOAP, and SOAP begat Web Services, but still there was Discord among the Computers, and they could not speak. And then came SOA, and Light shone upon the World, and any Computer could talk to any other Computer. And soon thereafter, the Computers banded together and formed Cyberdyne Systems, and we all know what happened after that....

No, really, that didn't happen. And neither has Service-Oriented Architecture (SOA) become the silver bullet that magically allows any two computers to speak to one another. In fact, SOA is already under pressure not only from competing techniques but even from its own adherents. And in order to understand what SOA is and how it works, you have to be clear about some of the other pieces of the whole Web Services world and how it is supposed to work. Thus, this article will be a bit of explanation, starting with some really basic pre-history of inter-computer messaging, moving on through XML and the various ways it is communicated, and ending up at SOA and some of the even newer technologies already spinning off of it.

And at the end, I'll tell you a little story from the Days Before the 'Net.

Pre-History

Let's quickly review how we got to where we are today. A long time ago, computers talked to one another using simple, hard-coded formats. These formats often included binary data for a number of reasons, the two most prominent being that numbers were stored more efficiently in binary and that executable machine code was stored in binary. If you had to send numeric data to someone, it was much faster to do it in binary. If you had to send executable code, you had to send it in binary as well.

Interestingly enough, back in those days we sometimes had 7-bit connections, which meant we were limited to ASCII characters. In that case, we often used a technique called 2-for-1, in which we turned each binary byte into two ASCII characters, such as "C3" (which translates to a binary byte whose decimal value is 195). Those of you with a UNIX background or heavy email experience will recognize that the concept of uuencoding something is very similar.

While binary data is great when one machine is talking to another of the same type, such data is rife with unpleasantness when dissimilar machines talk. Do you store an integer value in one, two, or more bytes? With multiple bytes, which byte is first, the most significant or the least significant? Do you use floating point, and if so, which format? Or maybe you use packed decimal or binary-coded decimal. And even when binary wasn't being used and everything was done in pure text, there were issues. Are fields and records fixed-length or comma-delimited (or some other delimiter)? How about non-standard code pages, double-byte characters sets, or EBCDIC vs. ASCII?

It really was a Tower of Babel situation, and there was no easy way around it. By the time of the advent of the Internet, the closest the IT industry had come was Electronic Data Interchange (EDI), and if you've ever worked with EDI, you know that it isn't exactly nirvana.

XML Comes to Pass

But then came the Internet and the World Wide Web, and its lingua franca, Hypertext Markup Language (HTML). Several years later came Extensible Markup Language (XML). The two are closely related; both are subsets of the larger and much older specification known as Standard Generalized Markup Language (SGML), which can model just about anything. There is even a sort of hybrid called XHTML which is HTML syntax modified so that it follows XML rules. The primary difference between HTML and XML is that the tags in HTML are predefined, while XML can be extended (thus the "X") by the user to include whatever application-specific tags might be needed.

With XML, one simply surrounds each data element in a tag:

123456

You can group any number of tags within a larger tag and group those tags under even larger tags. Tags can have attributes as well, although there is still heated debate among XML experts as to whether or not attributes are a good thing, especially in data transfer documents. Quibble aside, XML looked like a nice way for two machines to talk, and there was excitement except for a couple of issues: format and discovery.

Format

While it is useful to be able to create any tag that you need, it is also problematic. For example, if I call my tag ACCOUNTNUMBER and you call yours ACCOUNTID, we are not going to be able to communicate (unless there is a mediator and some sort of meta-definition, which I'll touch on a little later). Not only that, the entire issue can get political; what if your partner company is Lithuanian, and they want all tags in their native language? This gets really nasty when the language in question is a multi-byte language such as Japanese.

There are also still issues of how you represent data, especially numeric data. Are "-7" and "7-" both valid? What do you do with leading or trailing spaces? Can you handle fractions?

This issue is not a simple one. SOAP was the original attempt to address the issue by imposing an external structure upon the XML document, at the cost of a lot of additional overhead. Am I the only one who sees the irony of using more overhead to force structure on a format that added overhead in order to remove hard-coded structure? To me, it seems that if we must agree on the names of all the tags, then there really isn't a lot of difference between tagged and hard-coded messages, except that tagged messages require many times the data to do the same thing. Yes, you can omit fields, and the sender and the receiver are a little less tightly coupled, but that sort of communications overhead is a pretty steep price to pay.

To avoid the issue of tag names, you must move up yet another level of abstraction and incorporate message metadata. Just as SQL result sets contain both data (the actual rows and columns) and metadata (such as the names and types of the columns), message metadata contains information about the messages in an XML document. Some of this information is contained in the XML Schema Definition (XSD), but even that is not enough to overcome the issues that arise when documents come from different sources that adhere to different rules. In WLDJ magazine, Coco Jaenicke has an excellent article addressing this very issue; while the magazine is specific to WebLogic, the article is germane to anybody who wants to commingle disparate XML message formats, especially those who want to move from point-to-point to many-to-many service configurations. I'm going to leave this issue for now and move on to discovery. Meanwhile, Jaenicke's article is a great resource.

Discovery

The other issue is far more difficult to address, and from an old-time programmer's standpoint, more bizarre. One of the main goals of Web Services and particularly SOA is the creation of reusable software components. And while the two are a little different in their approach to achieving these goals, the problems they face are similar. To me, the entire issue is a little bit of a solution looking for a problem, but you be the judge. As far as I can tell, the primary business goal for these discovery technologies is to locate services that may or may not exist. There are two scenarios: intra-company services and inter-company services. Neither is for the faint of heart.

First, let's review intra-company services. The idea is that people throughout the company write services and these services can be invoked by other people. This next part is a little scary to us old-timers, so bear with me as I work through it:

A programmer is given a task. I guess these are functional requirements. As far as I can tell, nobody has really analyzed the requirements or done any sort of design work; instead, there's been some sort of request, and the goal is for the programmer to fulfill that request as quickly as possible. In order to speed the task, the programmer begins looking through a central registry to see if somebody else has written components that meet the requirements. And then (this is the scary part) I guess the programmer just starts using those components. Until this point, I don't see any way for the person who wrote the service to know who is using the service, which means there's no clear way to perform an impact analysis if the service requires modification.

It's even more fun with inter-company services. I guess the idea is that you just go out and look for whoever can service your request. Without contractual obligations in place, guaranteeing levels of service and correctness of replies, I'll be darned if I can see who would use this in a mission-critical system, but I suppose this might make sense for some non-critical tasks. I understand that this subject at least has a name among the designers (Quality of Service, or QoS), but there is no real agreement or implementation. David Longworth's recent article in Loosely Coupled magazine addresses the issue quite well. On the other hand, a more human-readable directory structure might make sense to allow you to identify possible vendors for various services; you choose one, and after coming to a legal agreement, you incorporate that service into your application.

But let's say that, for whatever reason, you embrace this idea of finding some unknown service and incorporating it into your design.

Dude, Where's My Service?

First, there are the dual contenders of UDDI and ebXML. UDDI is the original concept, and it goes something like this:

  1. Client queries UDDI registry for a service.
  2. Registry returns location of WSDL document.
  3. Client reads WSDL document.
  4. Client uses WSDL to format SOAP request.
  5. Client sends SOAP request to service.
  6. Service returns SOAP response.
  7. Client uses WSDL to decode SOAP response.

Everybody talks like this is an automated process. Unfortunately, the automation story has a couple of huge holes. First, how in the world do you query the registry? How do you know what you're querying for? What is the format of the query? How do you handle a situation in which multiple services exist (or none!)? Second, if you've used a WSDL, you know that you must use a tool to generate a stub, which in turn allows you to communicate with the service. I'm no expert, but the idea of dynamically generating classes on the fly and then using them in production seems like a pretty risky technique (not to mention the fact that it doesn't seem likely to get past the SOX auditors).

OK, it's bad enough that UDDI sucks. The next problem is that it already has a competing technology, ebXML, that threatens to make UDDI obsolete. This standard has a lot of international support and includes a number of features not found in UDDI, including security and guaranteed messaging. Furthermore, other initiatives out there may impact discovery, such as WS-Inspection, which is a lightweight directory capability that allows a consumer to query a specific Web server as to its services.

So What's the Role of SOA?

Finally, we get to where SOA fits in. If you were to listen to the industry pundits or to the "blogsphere," you might get the idea that SOA is a new concept based on Web Services. However, the truth is that SOA as a concept has been around for decades. Recent technologies you may recognize that are SOA variants include Java's Remote Method Invocation (RMI), the Open Group's Distributed Computing Environment (DCE), and OMG's Common Object Request Broker Architecture (CORBA). And while it's true that the exact phrase "Service-Oriented Architecture" is probably specific to the implementation using SOAP, UDDI, and WSDL, this will probably change because UDDI is going to have to coexist with other technologies (provided it doesn't become entirely obsolete). Not only that, but there are other methodologies besides SOAP for communication between computers over the Internet. Two important ones are XML-RPC and REST.

Regardless of the definition of SOA, however, we can still get an idea of why SOA is an important architectural step. The idea is that SOA sits a little higher than the Web Service in two important ways. First, Web Services are a little more granular in nature; a Web Service might allow you to get an account balance or update a customer email address, while an SOA service is at the level of adding an entire order. This is hardly a hard-and-fast rule, of course, and nothing in either standard enforces such distinction. The second difference has to do with basic design philosophy. Web Services are more specific and technical, with little infrastructure above the basic request/response protocol. SOA services, on the other hand, perhaps due to the fact that they really have been around for a long time, look to be more amenable to enterprise-level functions like monitoring and security. This means we may see the ability to route messages dynamically to a newly located service without having to create and compile a new object; this to me is the biggest hurdle to any sort of automated discovery procedure.

In any case, SOA is here for at least the next 15 minutes. Watch your tool vendors as they switch their terminology from Web Services to SOA over the coming months, just as they replaced SOAP with Web Services and Struts with JavaServer Faces. And no matter what, remember that in the end, this is basically about calling code on another machine. SOA doesn't add any business logic to your system; it just exposes your system to the outside world. And if your original business logic runs poorly, so too will your services.

Finally, A Little Reality Check

I remember back in my early days of programming (this was before the Elder Days, before even the World Wide Web) a project in which PCs all around the country needed to talk to a central system. The PCs were honest-to-goodness IBM PCs, before the term became generic. Actually, I think they were PC/XTs, running at a blazing 8 MHz, with a whopping 256 KB of memory on them. We plopped these down into truck stops all around the country, and they talked via dial-up modem (at 2400 BPS) to another PC at our central office. This PC in turn talked to an RPG program running on the S/38 via terminal emulation. Basically, the RPG program on the S/38 had a single 256-byte input field and a corresponding 256-byte output field. The PC in the field sent a 256-btye request to the PC in the central office, and that PC in turn "typed" the request on the terminal and hit Enter. The RPG program processed this request and returned one or more 256-byte responses, which the local PC relayed down to the remote PC. That was our entire protocol, and we could do anything we wanted to through it.

We used this not just for credit card authorizations, but for fuel tax reporting, for data entry, and even for sending reports back to the remote PCs for local printing. We had collision protection in case multiple remote stations tried to update the same master record, we had communications restart/recovery (believe me, you needed restart capabilities when sending 300- page reports over a crotchety 2400 BPS connection to Enid, Oklahoma), and we even had the ability to update the software in the remote PCs electronically...

...back in 1986...

...without Java...

...and without Web Services...

...on this:

http://www.mcpressonline.com/articles/images/2002/041107%20-%20Service%20Oriented%20ArchitectureV4--11290400.jpg

Figure 1: An IBM PC/XT like this with 640 KB of RAM and a 10 MB hard drive cost about $8,000 in 1986.

Why do I bring this up in an article about SOA? Because before we get paralyzed by a flood of acronyms and buzzwords, I want to be sure we are all on the same ground as to what we're talking about: client/server computing, which is simply one computer asking another computer to do some work. It's not brain surgery, it's not alchemy, and it's certainly not something new in the world of computing. In fact, client/server computing probably began right about the time cave-scientists built the second computer.

But in today's world of ever-increasing complexity, you can't just have one computer talk to another. No, in today's world you need a queuing mechanism, a transport protocol, a message standard, a registry service, and a host of other components, all of which are necessary in order to (I love this) make the programmer's job easier. Sometimes, I get the idea that the real reason is to make hardware, OS, middleware, and tool vendors rich, but I don't like to say that out loud. The black helicopters are listening....

Feedback

Folks, I write these articles to try to enlighten and inform. Sometimes, I get the idea that technology is just flying out of control; I'm sure you feel the same way. So, to keep from simply being drowned in a flood of buzzwords, I go out and read everything I can get my hands on about pertinent topics and then come back and report to you what I've found. What I need from you is feedback: Did this article help? Did it address something you needed to know about? Would you like to hear more about this topic or about something related? Or something completely different?

I already have requests for more information on JSP frameworks and for more information on J2EE and .NET. What is it that you need to hear about? Please, post in the forums and let me know.

Joe Pluta is the founder and chief architect of Pluta Brothers Design, Inc. He has been working in the field since the late 1970s and has made a career of extending the IBM midrange, starting back in the days of the IBM System/3. Joe has used WebSphere extensively, especially as the base for PSC/400, the only product that can move your legacy systems to the Web using simple green-screen commands. Joe is also the author of E-Deployment: The Fastest Path to the Web, Eclipse: Step by Step, and WDSC: Step by Step. You can reach him at This e-mail address is being protected from spam bots, you need JavaScript enabled to view it .

Last Updated ( Thursday, 04 October 2007 )
 
Discuss (16 posts)
dmjae2004@yahoo.com
Service-Oriented Architecture (SOA)
Dec 08 2004 00:10:00
<i>The quote below is from a Comp Sci professor at Berkeley.</i><p>
Yeah just some professor ! <p>
Recovery Oriented Computing seems to be an extension into internet services of the RAID disks where Prof Patterson was a leader. (presume a disk will fail but implement a mechanism to recovery quickly and transparently.) Prof Paterson currently serves on the Presidential Information Technology Advisory Committee, Microsoft's Trusted Computing Academic Advisory Board, and IBM's Autonomic Computing Advisory Board.<p> <p>Check out <a href="http://www.almaden.ibm.com/institute/bio/biopatterson.html">http://www.almaden.ibm.com/institute/bio/biopatterson.html</a> <p>
Of course you could have submitted all those blue screen of death dumps to his research... <a href="http://winerror.cs.berkeley.edu/crashcollection/">http://winerror.cs.berkeley.edu/crashcollection/</a> <p>Great Stuff
#117098
M.Savino
Service-Oriented Architecture (SOA)
Dec 07 2004 22:08:00
Was that a rhetorical Question? <p>It matters to me..... but obviously not to everybody. The quote below is from a Comp Sci professor at Berkeley. Maybe that explains something or maybe we're just doomed. At any rate, I found it to be both amusing and just a little scary. <p><a href="http://www.iseriesnetwork.com/resources/artarchive/index.cfm?fuseaction=viewarticle&CO_ContentID=19524&channel=art&PageView=Search">http://www.iseriesnetwork.com/resources/artarchive/index.cfm?fuseaction=viewarticle&CO_ContentID=19524&channel=art&PageView=Search</a>
#117097
Guest.Visitor
Service-Oriented Architecture (SOA)
Dec 06 2004 17:10:00
It seems the value of a stable OS went away when GUI interfaces started becoming a "business requirement." You just have to put up with the rest of the mess that comes along with it (viruses, worms, continual patching, etc.). For that, you get the "added productivity" of a GUI interface. Now, don't you feel better that you are so much more productive?
#117096
David Abramowitz
Service-Oriented Architecture (SOA)
Dec 05 2004 10:41:00
Stability used to count for something. Particularly when the CEO or CFO came up from accounting rather than sales. <p>I'd be curious to know if anyone sees stability (of the OS) being valued in their shop. <p>Dave
#117095
J.Pluta
Service-Oriented Architecture (SOA)
Dec 03 2004 23:22:00
<i>Is AS/400(I5) another dinosaur in the making ?</i> <p>Well, before you go pronouncing the demise of the platform, let's get a couple of things straight. First, it's been around longer than just about any other platform you might be using today. Unix is older, but how many people are actually using Unix variants from the 70's? Instead, they're using a relatively new Unix, like FreeBSD, or even Linux, both of which are younger than OS/400. Heck, one of few Unix variants older than OS/400 is AIX... from you know who. <p>So, the beast has been around a looooong time, demonstrating staying power. Since then, shall we see a few things that haven't quite panned out? <p>How about J++? Or maybe EJB? <BR>
Or maybe Struts? <BR>
Let's see how long UDDI lasts. <p>No, I think OS/400 or i5/OS or whatever they want to call it will be around a lot longer than a lot of the recent buzzwords. Or even some current ones which are losing favor (when's the last time you heard somebody rave about Extreme Programming?). <p>Joe <p>P.S. Anyone got a ZIP drive?
#117094
TonyT
Service-Oriented Architecture (SOA)
Dec 03 2004 15:32:00
JThomas said: <BR>
"I don't want to end up like the previous mainframe programmers around here." <p>Why ? Whatever happened to them ? Hit by a meteorite called technology paralysis ... Scary yes ... <p>JThomas said: <BR>
"I noticed that some of my customers are starting to call the AS/400 a mainframe. Great..." <p>Is AS/400(I5) another dinosaur in the making ? ... Not yet for sure...
#117093
David Abramowitz
Service-Oriented Architecture (SOA)
Dec 03 2004 12:30:00
<i>Joe Pluta wrote: People need to realize that none of these new tools are silver bullets, and that you must make reasoned decisions on which technologies to implement.</i> <p>You're a funny guy, Joe. <p>Dave
#117092
J.Pluta
Service-Oriented Architecture (SOA)
Dec 03 2004 01:11:00
What version of OS/400 are you running? If you're at a relatively recent release, I am going to unabashedly recommend my two books to get you started. You will need to learn WDSC (WebSphere Development Studio Client for iSeries) in order to get into the world of web application design, especially if you choose servlets and JavaServer Pages (which is in my opinion the correct path). WDSC is the PC-based tool that takes the place of SEU for developing iSeries code, but it also adds ALL of the features you need to develop web applications. However, it's a pretty big learning curve, and it's not easy to get started. <p>Which is where my books come in. WDSC is based on a product called Eclipse, which is basically a really powerful Java development tool (also know as an IDE, for Integrated Development Environment). Eclipse: Step by Step takes you through the basics of creating a simple web application using Eclipse. The next book, WDSC: Step by Step, then takes you through the process of using WDSC to create a web application that uses an RPG back end to present data - pretty much exactly what you're trying to do. While the example in the book is VERY simplistic, it will walk you through all the steps you need. Jon Paris reviewed the book and had some great input to make sure that the book is indeed readable by an RPG person with no prior Java experience. <p>Somewhere along the line you may also need a book on beginning Java, such as Java for RPG Programmers. And all of that is available right here at your friendly <a href="http://www.mc-store.com">MC Press Bookstore</a>. <p>I hope you don't mind the self-promotion <grin>. <p>Joe
#117091
J.Pluta
Service-Oriented Architecture (SOA)
Dec 03 2004 01:03:00
Thanks for the kind words Ralph. More and more these days I find that people are madly careening down technological tunnels with their lights off -- heck, in some cases nobody's even at the wheel! I am gonig to steal one of our pop culture phrases and call this the "rush to deployment". They're deploying things simply because some techie pundit or self-hyping columnist <grin> tells them to, without making any sort of real business analysis as to how (or even whether) this new gizmo is going to help the company. WE MUST HAVE WEB SERVICES! WE NEED GRID COMPUTING! PLATFORM INDEPENDENCE IS KEY! Uh... why? Why do you need these things? How much money will it make your company, and how much will it cost? Is the former larger than the latter? <p><sigh> <p>It may turn out that some of these technological goodies are good for your company. Great! Find out how they work, and then incorporate them into an overall architectural direction. Don't just grab the latest wizard and plunk its output into your production systems. The less you know how your software works, the more likely it will break in ways you cannot fix, which ultimately is going to cost you far more than you could ever make from any new gadget. <p>Joe
#117090
J.Pluta
Service-Oriented Architecture (SOA)
Dec 03 2004 00:57:00
<i>And after all of that the company ends up with no more additional functionality than they had previously.</i> <p>This is the killer. Companies are being pushed into new technologies without a good idea of the ROI. Not only that, theyre being guided down buzzword alleys that are less and less stable, and ending up with not only a major investment that asnt really gained them anything, but in fact with a technological dead end that is already obsolete by the time theyve implemented it. <p>We really need to step back a minute from this rush to deployment and return to the idea of basic business functions. Im going to try this month to get back to the <a href="http://forums.plutabrothers.com/IAAI">IAAI website</a> and build on the application issues I started. People need to realize that none of these new tools are silver bullets, and that you must make reasoned decisions on which technologies to implement. <p>Joe
#117089
jthomas@rei.com
Service-Oriented Architecture (SOA)
Dec 02 2004 13:09:00
Hi, <BR>
I used to work for a trucking firm as well. And I remember writting code like you described to make PC's talk to our System/38. I'm in a big shop now, and don't do 'everything' anymore. Ahh, the good life. But I find that I've been out of it too long. Now I need to find out about new technologies so that my customers can work on the web and access our AS/400 data. I'm starting to look into JAVA and would appreciate any new articles in that area. I don't want to end up like the previous mainframe programmers around here. I noticed that some of my customers are starting to call the AS/400 a mainframe. Great...
#117088
Ralph Daugherty
Service-Oriented Architecture (SOA)
Nov 30 2004 14:24:00
Joe, your historical perspective articles are the most interesting reading of all, although trials and travails articles on getting future history to work run a close second. Reminding people of the jow cost effective our AS/400 and prior systems are and the people who made it that way is a good thing. <p> rd
#117087
David Abramowitz
Service-Oriented Architecture (SOA)
Nov 30 2004 12:11:00
<i>Joe Pluta wrote: Because backwards compatibility is usually compromised in the name of new features, that means that you must constantly rewrite your system or use old versions of the packages </i> <p>This is an interesting statement and leads to the topic of "Software Investment". <p>AFAIK, very little is written for execs to absorb about the consequences of ignoring the current investment in their software. The end result can be tons of money being wasted year after year in the name of competitive progress. And after all of that the company ends up with no more additional functionality than they had previously. <p>I don't have enough toes or fingers to count the number of times users have expressed the desire to return to their "old system". <p>Dave
#117086
J.Pluta
Service-Oriented Architecture (SOA)
Nov 30 2004 10:47:00
Thanks, Larry, you got it in one. The fact is that the tools are now quickly being replaced by new tools in an ever-accelerating cycle. <p>I've watched this for years in the Open Source world. Because backwards compatibility is usually compromised in the name of new features, that means that you must constantly rewrite your system or use old versions of the packages (it's even more of an issue when a new release actually breaks something in an older release). However, if you use old versions, then you run the risk that the next great Open Source project you want to incorporate uses a different version, and now you're stuck. <p>Now entire technologies are flitting in and out of fashion. Has anyone tried to sell you EJB lately? I doubt it. Except for a few diehard consulting firms that basically bet the farm on EJB, nobody recommends it except for the very largest distributed pure Java projects. How about Struts? That's now being replaced by JavaServer Faces, which in mu opinion still isn't mature and is likely to be replaced or substantially rewritten yet again. <p>This middleware issue is another example of the acronym soup. SOA is an umbrella for SOAP, UDDI and WSDL, all of which are actually being challenged as standards. So what you call SOA today may have NOTHING in common with what SOA is tomorrow. <p>Funny, but I'm just not comfortable betting my business on soemthing like that. Especially when, as I said in the article, we've been doing the exact same thing for 20 years, WITHOUT all the acronyms. <p>Joe
#117085
larryemz@earthlink.net
Service-Oriented Architecture (SOA)
Nov 29 2004 15:17:00
As a midrange 'dinosaur', I sympathize entirely with the basic belief behind this article. We are out of control; it's no longer a matter of getting the job done that counts the most but has become a matter of how you go about getting the job done. While not denying that our discipline needs help, I really do think we are running down the acronym highway to hell (without brakes). Some things that are old are good - that's how they got old. On the other hand, some things that are new are also good - they're likely to get old. <p>I think tools such as WDSc/Eclipse are very helpful as are things like service programs, free format RPG, Java, OOP (if not given some holy grail-like status) but some of the things that are come up with make me shudder. They have a grain of sense, which is probably how they get accepted in the first place, but the emphasis is on the 'how' not on actually getting something done. There has to be a balance between theory and practice. <p>As programmers, we use the best tools we have available and maybe the fact that some of these acronymic 'tools' don't really help will cause them to fall on their face. Unfortunately, I feel that what is likely to happen is that they will simply be replaced by some new thingy that everyone will view as a savior (until it too soon gets replaced). <p>Life is interesting. <p>Larry Manter
#117084
MC Press Web Site Staff
Service-Oriented Architecture (SOA)
Dec 08 2004 00:14:00
This is a discussion about <B>Service-Oriented Architecture (SOA)</b>.<p align='center'><a href=http://www.mcpressonline.com/mc?1@232.1KNKfHX1eQT.17@.6b1994a0>Click here for the article</a>.</p>
#117083


Discuss...
User Rating: / 0
PoorBest 
Related Articles
< Prev   Next >

The following White Papers can be found at the MC White Paper Center


The following trial software can be found at the MC Press Software Center.   



   MC-STORE.COM