1

I've been using subversive pluguin quite a while and I didn't have a problem, but today I changed to a cellular network on windows 10 and I started getting this error while trying to commit :

Can't create session
svn: Commit failed (details follow):
svn: Unable to connect to a repository at URL 'http://XXXXXX'
RA layer request failed
svn: Unexpected HTTP status 400 'Bad Request' on 'http://XXXXX'

I found that I need to add a proxy details in the file servers of subversive but I don't know what to add since it's a cellular network.

howlger
  • 31,050
  • 11
  • 59
  • 99
OddDev
  • 1,521
  • 7
  • 23
  • 45

2 Answers2

2

Maybe your ISP manipulates HTTP requests.

If possible, switch the SVN protocol/URL from http://... to https://... or svn://...?

howlger
  • 31,050
  • 11
  • 59
  • 99
1

The Subversion client can go through a proxy, if you configure it to do so. First, edit your "servers" configuration file to indicate which proxy to use. The files location depends on your operating system. On Linux or Unix it is located in the directory "~/.subversion". On Windows it is in "%APPDATA%\Subversion". (Try "echo %APPDATA%", note this is a hidden directory.)

uncomment the following line:

#http-proxy-host=proxy.ip
#http-proxy-port=portnumber
#http-proxy-username=[username]
#http-proxy-password=[password]
skr
  • 2,146
  • 19
  • 22