I have large JSP page, and there is XML creation on it.
For debug purpose i need to write that XML to console.
What is the easiest way to do this from JSP?
thank you very much on your time and energy, best regards
EXAMPLE:
...
My.jsp
...
<portfolio>
<stock>
<symbol><c:out value="${bean.prop1}"/></symbol>
<name><c:out value="${bean.prop2}"/></name>
<price><c:out value="${bean.prop3}"/></price>
</stock>
</portfolio>
...
....
Now i want to print entire XML to console to see if it is OK