Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Blocker
-
Resolution: Fixed
-
Affects Version/s: 1.0-beta-2
-
Fix Version/s: 1.0-beta-3
-
Component/s: wagon-webdav
-
Labels:None
-
Environment:any system
-
Number of attachments :
Description
Webdav connections through a http-proxy are currently not possible.
The webdav provider opens first a connection to the target system and checks after this, if a proxy should be used.
To fix this in the method "org.apache.maven.wagon.providers.webdav.WebdavWagon#openConnection()" the call "webdavResource = new CorrectedWebdavResource( httpURL );" must be changed into "webdavResource = new CorrectedWebdavResource( );" and after configuring the http-proxy the method call "webdavResource.setHttpURL(httpURL);" must be added.
can you provide a patch instead of explain how to do it? Thanks.