| View previous topic :: View next topic |
| Author |
Message |
radad
Joined: 19 May 2004 Posts: 246 Location: Melbourne, Australia
|
Posted: Fri Jul 06, 2007 10:47 am Post subject: svn via proxy |
|
|
I am trying to access the svn thorugh a firewall via a proxy.
I think this is the command to use:
| Code: | | svn co http://svn.ps2dev.org/trunk/ps2toolchain |
But I get this error:
| Code: | svn: PROPFIND request failed on '/trunk/ps2toolchain'
svn: PROPFIND of '/trunk/ps2toolchain': 405 Method Not Allowed (http://svn.ps2dev.org) |
Is this enabled on the server? See this FAQ: http://subversion.tigris.org/faq.html#proxy |
|
| Back to top |
|
 |
J.F.
Joined: 22 Feb 2004 Posts: 2906
|
Posted: Fri Jul 06, 2007 11:02 am Post subject: |
|
|
Wrong path. It's
| Code: | | svn co svn://svn.ps2dev.org/ps2/trunk/ps2toolchain |
|
|
| Back to top |
|
 |
ubergeek42
Joined: 13 Jul 2005 Posts: 83
|
Posted: Fri Jul 06, 2007 11:12 am Post subject: |
|
|
I believe there is a bit of a misunderstanding here.
The ps2dev svn server uses the svn protocol, but proxying is only supported in the client when connecting to a server using http. Changing to svn:// will make it ignore the proxy settings, which only apply to the http protocol.
When you decide to run a subversion server, you get to choose whether to use a webserver to control the repositories(which allows for finer access control if I remember correctly), or you use svnserve, which is a very simple repository server. ps2dev uses the svnserve server, hence the svn protocol, and thats why trying to connect using http won't work.
Hope that made some sense? |
|
| Back to top |
|
 |
radad
Joined: 19 May 2004 Posts: 246 Location: Melbourne, Australia
|
Posted: Fri Jul 06, 2007 11:35 am Post subject: |
|
|
That makes sense. Wasn't sure how the server was setup.
So no support for proxies/firewalls. |
|
| Back to top |
|
 |
J.F.
Joined: 22 Feb 2004 Posts: 2906
|
Posted: Sat Jul 07, 2007 6:29 am Post subject: |
|
|
| ubergeek42 wrote: | I believe there is a bit of a misunderstanding here.
The ps2dev svn server uses the svn protocol, but proxying is only supported in the client when connecting to a server using http. Changing to svn:// will make it ignore the proxy settings, which only apply to the http protocol.
When you decide to run a subversion server, you get to choose whether to use a webserver to control the repositories(which allows for finer access control if I remember correctly), or you use svnserve, which is a very simple repository server. ps2dev uses the svnserve server, hence the svn protocol, and thats why trying to connect using http won't work.
Hope that made some sense? |
His path was still wrong in any case - he was using /trunk/ps2toolchain when the path is /ps2/trunk/ps2toolchain. |
|
| Back to top |
|
 |
skwi
Joined: 16 May 2006 Posts: 22
|
|
| Back to top |
|
 |
|