Form submission problem with UTF8
Hello,
We're using Weblogice 6.1 in Windows 2000.
We encounter a problem about the JSP form submission when we add
the following lines in web.xml
<context-param>
<param-name>weblogic.httpd.inputCharset./*</param-name>
<param-value>UTF-8</param-value>
</context-param>
When we submit a form from the first JSP to the second JSP,
we try to use the request.getParameter() in the second JSP to retrieve the value(input in the first JSP), the return from request.getParameter() are all null.
And we found that, if we remove the about lines in web.xml, the mentioned problem is disappear. However, those chinese (or UTF8) character cannot be handled properly. We're in a dilemma.
Please gives advice on it. Thanks.

