Hi Eddie,
I am using chinese characters in Seam with no problems.
I have a messages_zh.properties with entries like:
Copyright=2006 \u8457\u4F5C
And I'm using this on my home page to allow the user to switch from their default locale (as sent by the browser):
<h:selectOneMenu value="#{localeSelector.localeString}">
<f:selectItems value="#{localeSelector.supportedLocales}"/>
</h:selectOneMenu>
<h:commandButton action="#{localeSelector.select}" value="#{messages.home_ChangeLanguage}"/>
And the locale support in my faces-config.xml:
<locale-config>
<default-locale>en-AU</default-locale>
<supported-locale>zh-CN</supported-locale>
</locale-config>
It works very well.
good luck,
Daniel.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3982241#3982241
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3982241
Hello, and happy halloween!
Is there a way to specify what FQN to use when replicating tomcat sessions via the TomcatClusteringCache pojocache?
I'm trying to achieve something akin to single sign on, but across multiple subdomains. We've gotten around the JSESSIONID cookie across domains, but the clustering cache is storing the session object in its POJOCache with a different FQN for each subdomain.
I can extend TreeCacheAOP, but all that would buy me is the ability to fudge with the FQN that was passed into put() and get() methods, which is complete hackery and I don't want to do that.
Any help would be much appreciated.
Tyler Black
Mixpo Inc.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3982235#3982235
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3982235