• 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

Begginer XML question

 
Ranch Hand
Posts: 34
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm trying to write my first XML application. I read about Xerces, SAX, JAXP, etc. but it's not clear to me what are their differeneces or how are they related. Is it possible to ask you for a 1 line description of what these mean. Based on that I guess I will be able to explore in more detail the one that looks better for what I'm triying to do.

Thanks

Fernando
 
Author and all-around good cowpoke
Posts: 13078
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think you need to go read a tutorial such as this one. It contains the kind of introductory material you ask for plus working example code.
Bill
 
Fernando Margueirat
Ranch Hand
Posts: 34
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks William. I'll give it a look.

Fernando
 
Ranch Hand
Posts: 2308
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
JAXP is a xml processing framework containing interfaces.Various implemenrations are available for those interfaces.Xceres is apaches xml parser and it conforms to JAXP.

And SAX and DOM are two parsers , again in this case also these are interfaces and left to vendors to implement.
 
reply
    Bookmark Topic Watch Topic
  • New Topic