this has got nothing to do with Seam. a common way to solve this problem is to 
write a filter like this:


  | public class SetCharacterEncodingFilter implements Filter {
  |    public void doFilter(ServletRequest request, ServletResponse response,
  |                        FilterChain chain) throws IOException, 
ServletException {
  |       request.setCharacterEncoding("UTF-8");
  |     chain.doFilter(request, response);
  |   }
  | }
  | 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3952637#3952637

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3952637

All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
_______________________________________________
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to