sc wrote:
Just curious why I don't need to do setCharacterEncoding when I do response.setContentType("text/xml; charset=UTF-8");
You *do* need to call it, if you want to be sure things will work everywhere. There are various reasons it might work OK without doing that, most likely being that the particular JVM you're testing on is already using UTF-8 as the default output encoding.
Always be explicit about character encodings to ensure portability. L. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]