Can J2EE support Chinese language
The problem is that the Session bean cannot get the chinese character from JSP.
I have set
<%@ page language="java" contentType="text/html;Big5"%> in JSP
when I invoke the Session bean by following code
/************************************************************
InitialContext ctx_forum=new InitialContext();
Object objref_addMess=ctx_forum.lookup("addMessage");
AddMessHome homeAddMess=(AddMessHome)PortableRemoteObject.narrow(objref_addMess,AddMessHome.class);
try{
AddMess remoteAddMess=homeAddMess.create();
success=remoteAddMess.addTopic(user,topic,message);
***********************************************************/
when I get the "message" from the bean, I got the wrong things
Please help me to solve this problem

