Hi every body ....i have the following xml data and would like to get the data from the xml file and like to peerform crud operations dynamically can anybody pls give the suggestions how to do using servlets or jsp
Code:<?xml version="1.0" encoding="UTF-8" ?> <schema name="db" version="1.1"> <types> <fieldType name="string" class="solr.StrField" sortMissingLast="true" omitNorms="true"/> <fieldType name="boolean" class="solr.BoolField" sortMissingLast="true" omitNorms="true"/> </types> <fields> <field name="name" type="string" indexed="true" stored="true" /> <field name="authorname" type="string" indexed="true" stored="true" /> <field name="description" type="string" indexed="true" stored="true" /> </fields> </schema>
i need the following output
from the child node fields
name type indexed stored
--------------------------------------------
name string true true edit remove
autohrname string true true edit remove
description string true true edit remove
:
:
etc....
if click on edit i should be able to over write if i click on remove i should be able to delete the content from xml file
Thanks&Regards


Reply With Quote
Bookmarks