how do i show XML in the browser ?
<%@ page contentType="text/html; charset=iso-8859-1
..................
.....................
<table>
HTML TAGS ARE HERE
</table>
...........
out.println("Content-type: text/xml");
string xml=bean.getXMLdata();
out.println(xml); // but this is not coming to the browser !!
how do i show XML then ?

