Getting arabic characters from clients in tomcat web server

Hi,

I am doing web site developement in arabic language where user enter their details in either arabic or english . From server i am able to display the either language characters on browser. But I am not able to catch the characters submitted by the form object in the tomcat web server. I am using struts as framework. and netbeans as IDE. Please suggest me the steps to do so.

Thanks,

From,

N.D.Pradhan

[438 byte] By [Nirav_Pradhana] at [2007-10-3 6:04:33]
# 1
did you make sure browser encoding is set to unicode UTF8?
marsuea at 2007-7-15 0:47:06 > top of Java-index,Desktop,I18N...
# 2

I think the problem mostly occurs when you have HTML forms with the GET method. If you change the method to POST, the problem will be probably solved. Note that even though you can control the character encoding of the HTTP request object, but various browsers may send the URL in different encodings. So, for Arabic characters, the best way is to use the HTTP POST method.

ghasemkiania at 2007-7-15 0:47:06 > top of Java-index,Desktop,I18N...