I'm having trouble configuring Hudson to use a proxy to connect to my SVN server. I have the proxy credentials set up in
.hudson\.subversion\servers
and I am able to checkout from the same URL using SVN at the command line AND using Tortoise under the same user that Hudson is running under.
I'm running Hudson from the command line using
java -jar hudson-3.1.0.war
I've added every combination of
-Dsvnkit.http.methods=Basic,Digest,Negotiate,NTLM
and
-Dsvnkit.http.sslProtocols="SSLv3"
that I can think of.
Every time, I get the error:
ERROR: Failed to check out https://{SVN URL}
org.tmatesoft.svn.core.SVNException: svn: E175002: CONNECT request failed on 'http://{PROXY URL}:80'
svn: E175002: CONNECT of '{SVN URL}:443': 407 Proxy Authentication Required ( Forefront TMG requires authorization to fulfill the request. Access to the Web Proxy filter is denied. ) ({SVN URL})
I've been stuck on this for a while and haven't made any progress at all. What should I try next?
Configure proxy configuration in Hudson's settings.
Dsvnkit.http.sslProtocols
andDsvnkit.http.methods=Basic,Digest,Negotiate,NTLM
have nothing to do with proxy authentication in your case.