Re: Form login UTF-8 username problem

2006-03-06 Thread Martin Gainty
modfication to the transmission Keep us apprised, Martin- - Original Message - From: Dave [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org; [EMAIL PROTECTED] Sent: Sunday, March 05, 2006 10:09 PM Subject: RE: Form login UTF-8 username problem Hi Daniel, I am not quite

Re: Form login UTF-8 username problem

2006-03-06 Thread Eric Haszlakiewicz
Daniel Blumenthal [EMAIL PROTECTED] wrote: As a security concern, you might not want to allow full UTF-8 usernames. There are a number of invisible characters (from the soft hyphen to various connector characters) which people can use to spoof other users' names. On Sun, Mar 05, 2006 at

RE: Form login UTF-8 username problem

2006-03-04 Thread Daniel Blumenthal
PROTECTED] Sent: Friday, March 03, 2006 1:50 PM To: Tomcat Users List Subject: Re: Form login UTF-8 username problem Dave wrote: Web application using JBoss 4.0.3SP1 and servlets. I am using FORM authentication. Can username be UTF-8? I create an account, its username is in UTF-8 encoding

Re: Form login UTF-8 username problem

2006-03-03 Thread Martin Gainty
@tomcat.apache.org; Martin Gainty [EMAIL PROTECTED] Sent: Thursday, March 02, 2006 2:16 PM Subject: Re: Form login UTF-8 username problem Hi Martin, Thanks! I already have the following at the beginning of all the jsp pages. %@ page contentType=text/html; charset=UTF-8

Re: Form login UTF-8 username problem

2006-03-03 Thread Mark Thomas
Dave wrote: Web application using JBoss 4.0.3SP1 and servlets. I am using FORM authentication. Can username be UTF-8? I create an account, its username is in UTF-8 encoding, chinese characters. But login was not successful. Can JBoss built-in authentication handle UTF-8 encoding for

Re: Form login UTF-8 username problem

2006-03-02 Thread Martin Gainty
Dave- I believe you can effect this encoding if you specify encoding=UTF-8 in the xml element e.g. ?xml version=1.0 encoding=UTF-8? I am not aware of CJK implementations that use UTF-8 ..you may want to consider UTF-16 Scott does this look ok? HTH, Martin- - Original Message - From:

Re: Form login UTF-8 username problem

2006-03-02 Thread Dave
Hi Martin, Thanks! I already have the following at the beginning of all the jsp pages. %@ page contentType=text/html; charset=UTF-8% Martin Gainty [EMAIL PROTECTED] wrote: Dave- I believe you can effect this encoding if you specify encoding=UTF-8 in the xml element e.g.