Hi! I am trying to use orion to write something. I have to process Traditionial Chinese contents. If I only use JSP to process Traditional Chinese (Big5 code), I can put <%@ page contentType="text/html;charset=Big5" %> in the file head, and it works well. If I only use EJB to process Big5, it works well, too. But if I want to use JSP + EJB, there is a big problem about Big5 coding. The Big5 string is in a mass For example: the class TestEJB has a method setName (String sin) and the JSP page looks like: <ejb:useHome id="testEJBHome" type="TestEJBHome" location="java:comp/env/TestEJB" /> <ejb:useBean id="testEJB" type="TestEJB" value="<%=testEJBHome.create()%>" /> <jsp:setProperty name="credit" property="*" /> And the JSP pass a Big5 string to setName of TestEJB, the Big5 string is in a mass.... Any solution alerady or soon ? Thanks!!!