Re: validator: email-validation not accepting german "umlaute"

2004-04-20 Thread Michael Davey
Sven Schliesing wrote: I wrote a test to make sure where the problem is: public class ValidatorTest extends TestCase { public void testEmail() { EmailValidator emailValidator = EmailValidator.getInstance(); boolean result = emailValidator.isValid("[EMAIL PROTECTED]");

Re: validator: email-validation not accepting german "umlaute"

2004-04-20 Thread Sven Schliesing
Runs with success. So the address "[EMAIL PROTECTED]" is validated by the EmailValidator with success. never mind, wrong charset in eclipse. thanks anyway Sven - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: validator: email-validation not accepting german "umlaute"

2004-04-20 Thread Sven Schliesing
I wrote a test to make sure where the problem is: public class ValidatorTest extends TestCase { public void testEmail() { EmailValidator emailValidator = EmailValidator.getInstance(); boolean result = emailValidator.isValid("[EMAIL PROTECTED]"); assertTrue("invalid emai

Re: validator: email-validation not accepting german "umlaute"

2004-04-20 Thread Michael Davey
Sven Schliesing wrote: As for version 1.1.1 the Jakarta Commons-Validator is not accepting german "umlaute" as parts of valid domain names like müller.de or münchen.de Is this a known issue in validator or might this be a setting in Struts? Valid domain names must contain only the characters a-

validator: email-validation not accepting german "umlaute"

2004-04-20 Thread Sven Schliesing
As for version 1.1.1 the Jakarta Commons-Validator is not accepting german "umlaute" as parts of valid domain names like müller.de or münchen.de Is this a known issue in validator or might this be a setting in Struts? Thanks! Sven Schliesing PS: No problems with "umlaute" and struts in other p