Hi there,
I was wondering : what's the reason why XmlHttpServletResponse forces
the response to UTF-8, explicitly ignoring the page's encoding ?
I had a project in utf-8 that ran just fine (even with all accents and
fancy stuff we have here in France), but I have to switch it to
windows-1252 for some unavoidable reason. Everything has been
converted to windows-1252, including the filter I use to force
encoding in http requests. The only non-working things are PPR calls.
I tracked modifications of http Response objects down to
XmlHttpServletResponse :
...
_contentType = "text/xml;charset=utf-8";
...
So, did I miss something, or PPR actually only works for iso8859-1 /
utf-8 apps ?
Regards,
Cedric Durmont