[jboss-user] [JBoss Seam] - Re: Step-by-step localization guide

msteiner do-not-reply at jboss.com
Mon Sep 4 06:58:16 EDT 2006


In CVS version of Seam is SeamCharacterEncodingFilter class. This should make UTF8PhaseListener obsolete (can someone confirm that?). You must put this in web.xml:

<filter>
  | 		<filter-name>Character Encoding</filter-name>
  | 		<filter-class>
  | 			org.jboss.seam.servlet.SeamCharacterEncodingFilter
  | 		</filter-class>
  | 		<init-param>
  | 			<param-name>encoding</param-name>
  | 			<param-value>UTF-8</param-value>
  | 		</init-param>
  | 		<init-param>
  | 			<param-name>overrideClient</param-name>
  | 			<param-value>true</param-value>
  | 		</init-param>
  | 	</filter>

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

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



More information about the jboss-user mailing list