You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Jörg Spilker <Jo...@boom-gmbh.de> on 2005/07/08 14:57:35 UTC

Problem with svn access (via proxy)

Hello,

i´m trying to access the svn repository with the windows commandline client 
and have to use a proxy to do so. I´ve configured the proxy via windows 
registry.

The result is:

>svn --version
svn, Version 1.2.0 (r14790)
   übersetzt May 22 2005, 22:40:26

>svn list http://svn.collab.net/repos/svn
svn: PROPFIND Anfrage fehlgeschlagen auf '/repos/svn'
svn: PROPFIND von '/repos/svn': 403 Forbidden (http://svn.collab.net)

however, when manually contacting the proxy and getting the URL, i got a 
repository listing as expected.

telnet http-proxy.niedersachsen.de 8080                           
Trying 10.17.98.13...
Connected to http-proxy.niedersachsen.de.
Escape character is '^]'.
GET http://svn.collab.net/repos/svn/ HTTP/1.0
HTTP/1.0 200 OK
Date: Fri, 08 Jul 2005 05:18:07 GMT
Server: Apache/2.0.50 (Unix) mod_ssl/2.0.50 OpenSSL/0.9.6 DAV/2 SVN/1.2.1
ETag: W/"15296//"	
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Length: 528
Content-Type: text/html; charset=UTF-8
X-Cache: MISS from http-proxy.niedersachsen.de
X-Cache-Lookup: MISS from http-proxy.niedersachsen.de:8080
Proxy-Connection: close
<html><head><title>The Subversion Repository.  No, really, *the* Subversion
Repository. - Revision 1
5296: /</title></head>
<body>
 <h2>The Subversion Repository.  No, really, *the* Subversion Repository. -
Revision 15296: /</h2>  
 <ul>
  <li><a href="README">README</a></li>
  <li><a href="branches/">branches/</a></li>
  <li><a href="tags/">tags/</a></li>
  <li><a href="trunk/">trunk/</a></li>
 </ul>
 <hr noshade><em>Powered by <a
href="http://subversion.tigris.org/">Subversion</a> version 1.2.1 (r1
5230).</em>

so, what´s going on? Is it probably a very strict proxy configuration which 
doesn´t allow non standard methods like PROPFIND? 

Greetings, Jörg

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org


Re: Problem with svn access (via proxy)

Posted by Christoph Haas <em...@christoph-haas.de>.
Hi, Jörg...

On Fri, Jul 08, 2005 at 04:57:35PM +0200, Jörg Spilker wrote:
> i´m trying to access the svn repository with the windows commandline client 
> and have to use a proxy to do so. I´ve configured the proxy via windows 
> registry.
> 
> The result is:
> 
> >svn --version
> svn, Version 1.2.0 (r14790)
>    übersetzt May 22 2005, 22:40:26
> 
> >svn list http://svn.collab.net/repos/svn
> svn: PROPFIND Anfrage fehlgeschlagen auf '/repos/svn'
> svn: PROPFIND von '/repos/svn': 403 Forbidden (http://svn.collab.net)
> 
> however, when manually contacting the proxy and getting the URL, i got a 
> repository listing as expected.
> 
> telnet http-proxy.niedersachsen.de 8080                           
> Trying 10.17.98.13...
> Connected to http-proxy.niedersachsen.de.
> Escape character is '^]'.
> GET http://svn.collab.net/repos/svn/ HTTP/1.0

You are doing a GET. But the server doesn't allow PROPFIND. That's a
difference. Check your web server configuration. Also the proxy server
must be set to allow PROPFIND requests. If you are running Squid as
proxy server you may want to alter the configuration like that:

extension_methods REPORT MERGE MKACTIVITY CHECKOUT PROPFIND

Regards
 Christoph
-- 
~
~
~
".signature" [Modified] 3 lines --100%--                3,41         All

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org