| Author |
Problem in creating XML using DOM
|
riya das
Greenhorn
Joined: Sep 16, 2011
Posts: 8
|
|
Hi All,
I am writing a servlet code which is supposed to retrieve data from a hashmap, then create an XML file and send it to a javascript that has AJAX functions.
I am using DOM to achieve this. My problem is when I convert the DOM file back into the string to be sent to the javascript, it is not getting formatted properly.
e.g. if i have created a DOM file like <customer><fname>abc</fname><lname>xyz</lname></customer>, the corresponding string turns into:
<customer><fname>abcxyz</fname></lname></customer>.
I am sure I am missing out something very basic here, but I am not sure what.
Would be glad if anybody can help !
Here's my code for the same:
|
 |
James Boswell
Ranch Hand
Joined: Nov 09, 2011
Posts: 657
|
|
On line 20, you have:
Change this to:
|
 |
riya das
Greenhorn
Joined: Sep 16, 2011
Posts: 8
|
|
Dont know how I missed such a stupid mistake and was stuck on it for hours ! :-S
Thank you so much James ! You saved my day !
|
 |
James Boswell
Ranch Hand
Joined: Nov 09, 2011
Posts: 657
|
|
|
No problem riya
|
 |
 |
|
|
subject: Problem in creating XML using DOM
|
|
|