Library tutorials & articles
Building a Web Service - The Beginning
XML
The idea that I can describe XML adequately in a couple of paragraphs is ludicrous. The subject is complex enough that books are devoted so just the basic structure and usage. In my opinion, the reason for this difficulty it that XML is both flexible and extensible. So it can be used in almost any situation where data needs to be stored or transferred. Still, I'm brave (or stupid) enough to give a brief definition a try.
My two second description of XML has always been 'comma-delimited files on steroids'. My reason? The purpose of a CSV file is to store information so that another application can read/import it. This works fine, so long as the receiving application is aware of the structure of the incoming file. The best that CSV files can offer in this area is to place field names at the top of each column. So the possibility for problems of interpretation (or at least situations that require programmer-to-programmer discussions) exists. XML improves on this by applying a more rigorously enforced structure to the data. The order in which the data is physically laid out in the document is irrelevant, but each data field is named, so that it is easier to find. And when you combine XML data with DTDs or Schemas, the type and range of data are now subject to validation. Certainly a superior mechanism than CSV files.
For the most part, our use of XML will be to package up the data that needs
to be send to the web service for processing and to receive back the results.
As such, our XML documents will be relatively straightforward. But your complexity
may vary, depending on the solution that you're trying to provide.
Related articles
Related discussion
-
Error Capture
by Slicksim (4 replies)
-
MOS Protocol - Anyone used it?
by alexnavarro38 (5 replies)
-
AJAX: SimpleWebServices is not defined
by Freon22 (2 replies)
-
Read HSQLDB data into a webpage
by joe90 (3 replies)
-
Dynamically Named Web Services
by dgiard (0 replies)
Related podcasts
-
Java Posse #202 - Newscast for Aug 22nd 2008
Newcast for August 22nd, 2008Fully formatted shownotes can always be found at http://javaposse.com Sadly, Java does not run on the Mars LanderThe Golden Gate Project http://research.sun.com/projects/goldengate/Space surveillance radar http://www.sun.com/aboutsun/pr/2008-04/sunflash Google has r...
Hi everyone, i'm doing a project for job seekers, I don't know much on Java server pages, can anyone provide some support to me by sending me useful links of sample codes. Have great work loads.Thanks, Regards Nilz![Smiley Face [:)]](/emoticons/emotion-1a.gif)
It is very nice. I feel like I got what I needed, just introduction on Webservices.
Adding some more examples will do much better.
The second part to this article will be published in a few days
Very good intro but I am now left wanting more, a link to an example would have been good.
This thread is for discussions of Building a Web Service - The Beginning.