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

XML related topics

 
Ranch Hand
Posts: 62
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I am new to XML. I just want to know more about the following listed topics as, when, where and what to use and where to store these files in tomcat server(for eg xsl files).
DTD's
Schema
XSL
XSLT
SAX Parser
DOM /JDOM
XML file
what is a style sheet?
SOAP
JAXP
Xerces
XALAN
JAX
XSchema
XPath
XSP
I have come across these above listed topics related to XML work. If any one could please explain what these topic mean, when and in what situation to use.
I am simple situation here. I want to fetch the data from database and convert the fetched data into xml document and display this xml document data on the webpage and again fetching the user entered data from the webpage and converting into xml document and then storing back into the database.
In order to do the above listed simple situation, what all should i use/download.
I would appreciate your help.
Thanks,
 
Sheriff
Posts: 5782
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Checkout http://www.w3schools.com You will find good explanations for many of the topics in your list.
 
Ranch Hand
Posts: 112
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
www.w3.org
can't miss this..
 
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Refer to: http://www.javaranch.com/ubb/Forum31/HTML/001231.html
 
Ranch Hand
Posts: 47
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

I want to fetch the data from database and convert the fetched data into xml document


For this u need to first figure out which data base u would be using and which programming language if the answer is Microsoft then SQL Server2000 and ADO(.net) provides u with the API so that u can directly get the data in XML else u can use any Programming language (java ...) and any data base query the database get the result and convert the result to an XML document by using the Programming language and appropiate parser
u would need parser which can be free downloaded from the net once u decide which one u would be using

display this xml document data on the webpage and again fetching the user entered data from the webpage


for this u can use XSL(T) to render the information as HTML page and get the information back from the user or u can use a programm in ur language of choice and a parser.

converting into xml document and then storing back into the database


again u would need a program , parser to convert the data into appropiate sql satements and insert(update) data in the database

In order to do the above listed simple situation, what all should i use/download.


u would need a parser for sure and u r good to go


------------------
-AJ
Sun Certified Java Programmer
Microsoft Certified Software Developer
 
Does this tiny ad smell okay to you?
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic