You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Mike Summers (JIRA)" <ji...@apache.org> on 2016/08/12 21:19:20 UTC

[jira] [Updated] (WAGON-461) URL string not properly encoded by webdav

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

Mike Summers updated WAGON-461:
-------------------------------
    Description: 
wagon-webdav is not calling EncodingUtil prior to instantiating MkColMethod which results in
{code:java}
Caused by: java.lang.IllegalArgumentException: Invalid uri 'https://snafu.sharefile-webdav.com/Shared Folders/Fit - Expert Services/IBM/': escaped absolute path not valid
{code}
when there are special characters in the URI string.

Changing line 153 of org.apache.maven.wagon.providers.webdav.WebDavWagon from
{code:java}
            method = new MkColMethod( url );
{code}
to
{code:java}
            method = new MkColMethod( EncodingUtil.encodeURLToString( url ) );
{code}
solves the issue although you may want to fix it elsewhere in the flow.

  was:
wagon-webdav is not calling EncodingUtil prior to instantiating MkColMethod which results in
{code:java}
Caused by: java.lang.IllegalArgumentException: Invalid uri 'https://newrelic.sharefile-webdav.com/Shared Folders/Fit - Expert Services/IBM/': escaped absolute path not valid
{code}
when there are special characters in the URI string.

Changing line 153 of org.apache.maven.wagon.providers.webdav.WebDavWagon from
{code:java}
            method = new MkColMethod( url );
{code}
to
{code:java}
            method = new MkColMethod( EncodingUtil.encodeURLToString( url ) );
{code}
solves the issue although you may want to fix it elsewhere in the flow.


> URL string not properly encoded by webdav
> -----------------------------------------
>
>                 Key: WAGON-461
>                 URL: https://issues.apache.org/jira/browse/WAGON-461
>             Project: Maven Wagon
>          Issue Type: Bug
>          Components: wagon-webdav
>    Affects Versions: 2.10
>         Environment: All
>            Reporter: Mike Summers
>
> wagon-webdav is not calling EncodingUtil prior to instantiating MkColMethod which results in
> {code:java}
> Caused by: java.lang.IllegalArgumentException: Invalid uri 'https://snafu.sharefile-webdav.com/Shared Folders/Fit - Expert Services/IBM/': escaped absolute path not valid
> {code}
> when there are special characters in the URI string.
> Changing line 153 of org.apache.maven.wagon.providers.webdav.WebDavWagon from
> {code:java}
>             method = new MkColMethod( url );
> {code}
> to
> {code:java}
>             method = new MkColMethod( EncodingUtil.encodeURLToString( url ) );
> {code}
> solves the issue although you may want to fix it elsewhere in the flow.



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