This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
What is JATO ?? It is quite hard to keep the pace and learn about all these new acronyms - some half a dozen of them take birth every week Can you provide some links to JATO ?? Thanks! ------------------ Ajith Kallambella M. Sun Certified Programmer for the Java�2 Platform. IBM Certified Developer - XML and Related Technologies, V1.
Open Group Certified Distinguished IT Architect. Open Group Certified Master IT Architect. Sun Certified Architect (SCEA).
Daniel Olson
Ranch Hand
Joined: Jan 05, 2001
Posts: 81
posted
0
Here is a link http://www.krumel.com/jato/index.html One of the features listed on the site is that it is built on JDOM. This is the summary from the index page: Jato is an open-sourced, XML based non-procedural language for transforming any XML document to/from any set of Java objects. Non-procedural languages describe the operations to perform, leaving the algorithms for implementing the operations to an interpreter. A Jato script expresses the relationships between XML elements and Java objects and frees the developer from writing iteration loops, recursive routines, error checking code, and many other error prone, verbose, and monotonous XML parsing chores.
JDOM is a library that is a replacement for and compatible with the existing DOM interface. JATO is a translator to create Java classes directly from XML. JATA is an open source version of what JAXB will do. Best wishes, - Mike
Michael Daconta<BR>mdaconta@aol.com<BR>Author of <A HREF="http://www.amazon.com/exec/obidos/ASIN/0672316536/ref=ase_electricporkchop/107-2476442-4883722" TARGET=_blank rel="nofollow">XML Development with Java 2</A>.
Anil Vupputuri
Ranch Hand
Joined: Oct 31, 2000
Posts: 527
posted
0
So JATO doesnt have capability of rendering XML document like JDOM does.Its only conversion of XML-to-Java and Java-to-XML so if we want to parse XML, needs to be done through DOM/SAX API's is it right..