• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Memory Limitation using XML Data Binding

 
Greenhorn
Posts: 15
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,
I'm new to XML, so be gentle.
I have started to read up on SAX,DOM and XML Data Binding.
Is XML Data Binding as quick SAX ?.
Is there a max. XML size limitation with Data Binding ?.
Is Exolab Castor XML the one to use?.
 
Sheriff
Posts: 5782
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
JAXB( the XML databinding initiative from Sun ) makes use of DOM and promises to be more slightly more efficient. Since data binding involves making sure the objects are in-sync with the XML instance, it clearly leverages on DOM rather than SAX.
Any answer(s) to your question(s) will be a mere repitition of JAXB Faq on Sun website, an excellent resource on XML databinding. The ambitious JAXPack initiative from Sun will include JAXB package among other goodies. I suggest that you checkout the documentation.
Cheers!
------------------
Ajith Kallambella M.
Sun Certified Programmer for the Java�2 Platform.
IBM Certified Developer - XML and Related Technologies, V1.
Co-author of Java 2 Certification Passport
 
Dave Lawrence
Greenhorn
Posts: 15
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Ajith
 
reply
    Bookmark Topic Watch Topic
  • New Topic