Thanks Veniamin Fichin, Can you copy paste your code that solves the problem?
The output encoding of view.jsp page was hard-coded "utf-8" value. I changed it to be more flexible by lookling into session attribute which was set previously. Code snipped follows.
--- view.jsp: ---
<%
String encoding=(String)session.getAttribute("tHAVW07QUf");
if (session!=null) {
response.setContentType("text/html; charset="+encoding);
}
%>
<%@ page pageEncoding="utf-8" info="Test: localized parameters"%>
<!-- ... JSP body ... -->--- / view.jsp: ---
Session attribute setting you can see in source code. But bear in mind that this fix works with POST method only (at least for me).
Regards Yair Fine
2all: have anybody interested in this topic tried that .war? What's the results?
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
