I have test the Orion getParameter() method , and find that if the query string is the orional form (high byte is preserved)like: http://localhost:8080/examples/jsp/cal/cal1.jsp?date=current&time=8am&description=���� the string that return is correct, but if the query string is convert to RFC compliant format like this: http://localhost:8080/examples/jsp/cal/cal1.jsp?date=current&time=8am&description=%A4%A4%A4%E5 then Orion seems allways convert it always using 8859-1 encoding, not the default encoding or charset given by JSP page. POST METHOD also have them same problem. more one quesion, when I try to use response.getCharactorEncoding() it returns "charset=Big5" not "Big5" as I expected. Is this right? Jen Hsien Huang
