Reading XML File on the Server

Hello Everyone,I have some data in XML file located on the server. I want to read. I dont know how to do it. Can someone please help me? I am new to XML.
[168 byte] By [sandeep.sandeep] at [2007-9-30 17:29:42]
# 1
Hello Everyone,I have some data in XML file located on the server. I want to read that data and save it in Oracle table. I dont know how to do it. Can someone please help me? I am new to XML.
sandeep.sandeep at 2007-7-6 13:52:36 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...
# 2
Parse the XML file in a JSP.Store the xml data in Oracle database with XML SQL Utility.
dvohra09 at 2007-7-6 13:52:36 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...
# 3

You should go through a SAX 2 tutorial and learn the JAXP API. Basically, with SAX 2 you create a content handler class that will read through the XML file. There are methods for different types of events that occur when reading the markup; you could put the code that stores the data in Oracle in one or more of these methods. A next step would be to pick up DOM basics as well as JDOM stuff. This will help you make decisions on what technologies to use for XML processing. You can post specific problems and issues to these forums as you go. Good luck!

AMPHIGIS_X at 2007-7-6 13:52:36 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...
# 4
Thanks alot both of you for your help
sandeep.sandeep at 2007-7-6 13:52:36 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...