Hi,
I am using the following in my jsp page
<% response.setContentType("application/xhtml+xml"); %>
and the page renders properly except that some characters do not render correctly, for example the "copyright" character/symbol.
However, if I use:
<% response.setContentType("application/xhtml+xml;charset=UTF-8"); %>
Internet explorer renders the page as XML document (xml tree displayed) but the good thing is that all characters are resolved and displayed correctly.
Can anyone shed some light on this?
Thanks.