Sergio wrote:
> I am using Squid 2.5 update 3 proxy with Subversion. I connect with the
> proxy through SSL (https).
>
> # TAG: extension_methods
> # Squid only knows about standardized HTTP request methods.
> # You can add up to 20 additional "extension" methods here.
> #
> #Default:
> # none
> extension_methods PROPFIND REPORT MERGE MKACTIVITY CHECKOUT
I'd remove PROPFIND from this line, since - as you state yourself below -
squid 2.5 already allows it.
>
> but the error persist: PROPFIND: not allowed method
>
> Any idea? It is supposed that PROPFIND is included from Squid 2.4 version
> and later.
Maybe the proxy isn't the source of the problem. Maybe you have simply got the
repository URL wrong. If you try to access a location that is not a
subversion repository via HTTP, the complaint about PROPFIND not being
allowed is the result you'll likely get.
For example:
$ svn list http://svn.collab.net/repos/svm
svn: PROPFIND request failed on '/repos/svm'
svn: PROPFIND of '/repos/svm': 405 Method Not Allowed (http://svn.collab.net)
The above fails because I've got the last character wrong "svm" instead "svn".
If I spell it correctly, it works:
$ svn list http://svn.collab.net/repos/svn
README
branches/
tags/
trunk/
Regards
mks
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subclipse.tigris.org
For additional commands, e-mail: users-help@subclipse.tigris.org
Received on Wed Feb 1 23:32:59 2006