You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Benedikt Ritter (JIRA)" <ji...@apache.org> on 2015/10/16 17:52:05 UTC

[jira] [Updated] (VALIDATOR-375) UrlValidator fails on IPv6 URL

     [ https://issues.apache.org/jira/browse/VALIDATOR-375?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Benedikt Ritter updated VALIDATOR-375:
--------------------------------------
    Description: 
I have created an UrlValidator:

{code:java}
String[] schemes = {"http", "https"};
UrlValidator urlValidator = new UrlValidator(schemes, UrlValidator.ALLOW_LOCAL_URLS);
urlValidator.isValid("https://[fe80::8e0:6afa:a2d5:1c8a]/myapp")
{code}

evaluates to false.

  was:
I have created an UrlValidator:

String[] schemes = {"http", "https"};
UrlValidator urlValidator = new UrlValidator(schemes, UrlValidator.ALLOW_LOCAL_URLS);
urlValidator.isValid("https://[fe80::8e0:6afa:a2d5:1c8a]/myapp")

evaluates to false.


> UrlValidator fails on IPv6 URL
> ------------------------------
>
>                 Key: VALIDATOR-375
>                 URL: https://issues.apache.org/jira/browse/VALIDATOR-375
>             Project: Commons Validator
>          Issue Type: Bug
>          Components: Routines
>    Affects Versions: 1.4.1 Release
>            Reporter: George Stanchev
>         Attachments: UrlValidatorTest.java.patch
>
>
> I have created an UrlValidator:
> {code:java}
> String[] schemes = {"http", "https"};
> UrlValidator urlValidator = new UrlValidator(schemes, UrlValidator.ALLOW_LOCAL_URLS);
> urlValidator.isValid("https://[fe80::8e0:6afa:a2d5:1c8a]/myapp")
> {code}
> evaluates to false.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)