2 Replies Latest reply on May 31, 2007 2:58 AM by namnn

    Font problem

    namnn

      Hi all,
      I am from Vietnam. I need to display Vietnamese font on browser. When i display data from Oracle database which is Vietnamese, it is ok. But when i type vietnamese in the webpage's textboxes and save them to DB, it displays wrong font. I use UTF-8 standard. If i run applications without SEAM, font is correct. All the configurations of Browser, Jboss and OracleDB are correct.
      Do i have to config anything in SEAM?
      Thanks for any help.
      Nam.

        • 1. Re: Font problem
          jazir1979

          Hi Nam,

          You do need to configure a character encoding filter, and Seam comes with one that you can set up in your components.xml:

          >web:character-encoding-filter encoding="UTF-8" override-client="true" url-pattern="*.seam"/>


          hope that helps,
          Daniel.

          "namnn" wrote:
          Hi all,
          I am from Vietnam. I need to display Vietnamese font on browser. When i display data from Oracle database which is Vietnamese, it is ok. But when i type vietnamese in the webpage's textboxes and save them to DB, it displays wrong font. I use UTF-8 standard. If i run applications without SEAM, font is correct. All the configurations of Browser, Jboss and OracleDB are correct.
          Do i have to config anything in SEAM?
          Thanks for any help.
          Nam.


          • 2. Re: Font problem
            namnn

            That's helpfull. Thanks Daniel.