• 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

Parser and xslt Processor

 
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
what is the differnce between parser and xslt processor .Do all parser contain xslt processor .what are the processor and parser used in Jaxp 1.3

Thanks in Advance
 
Ranch Hand
Posts: 378
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
An XML parser is a software component that can read an XML document and pass the data in it to an application.

An XSLT processor is basically an XML application, which requires an underlying XML parser. The XSLT processor applies an XSL file (an Extensible Stylesheet Language file) to an XML file of a certain grammar and transforms it to a different XML grammar or a non XML format.

JAXP 1.3 (J2SE 1.5) reference implementation is, Parser Xerces J, stylesheet processor Xalan J. Check here
[ October 13, 2008: Message edited by: Gamini Sirisena ]
 
You can't expect to wield supreme executive power just because
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic