Re: [validator] url validation

2010-12-09 Thread Jörg Schaible
Hi, Alexander Rytov wrote: > Hi Jörg, > > What about using standard java.net.IDN algorithm decoding? > Bad things that it only available since java 1.6. > > Also that java.net.URI using old rfc2396 for compatibility issues. > Please see > http://download.oracle.com/docs/cd/E17802_01/j2se/javas

Re: [validator] url validation

2010-12-08 Thread Alexander Rytov
Hi Jörg, What about using standard java.net.IDN algorithm decoding? Bad things that it only available since java 1.6. Also that java.net.URI using old rfc2396 for compatibility issues. Please see http://download.oracle.com/docs/cd/E17802_01/j2se/javase/6/jcp/mr2/#java.net As i see it needed to c

Re: [validator] url validation

2010-12-08 Thread Jörg Schaible
Hi Alex, Alexander Rytov wrote: > Hi, guys > How about url validation? > How to do it accoring new rfc3986 and IDN(international domain name)? > common-validation use only old rfc2396 and doesn't check IDN and IPv6 > urls. Feel free to provide patches with unit tests. - Jörg -

[validator] url validation

2010-12-08 Thread Alexander Rytov
Hi, guys How about url validation? How to do it accoring new rfc3986 and IDN(international domain name)? common-validation use only old rfc2396 and doesn't check IDN and IPv6 urls. -- Alex