Grails email and url validator for UTF8 values

524 Views Asked by At

I ave some Grails app where I am using validation in domain. I have something like this:

  website nullable: true, url: true
  emailAddress nullable: true, email: true

My problem is that those validations are failing for valid entries:

postk.gs-ü[email protected] - valid email -> default email validation fails
ü[email protected] - same

http://www.moselstübchen.de/ - valid website url -> Grails url validator fails

Any idea how to fix this?

0

There are 0 best solutions below