> Mike, you lost me a bit. If Tomcat is serving an xhtml facelet or > jsp, not sure how to tweak it to change the mime-type.
For jsp:
response.setContentType("text/xml");
or
response.setContentType("application/xml");
You can use Firebug to inspect the content-type on the response header.

