You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by "John B. Moore" <jb...@esonicspider.com> on 2006/04/17 00:41:13 UTC

svn: PROPFIND of '/catalogsuites/trunk': 405 Method Not Allowed

Greetings,

I'm a newbie so keep that in mind...

I've been working to setup a Subversion server.. and so far have not 
been able to access it via svn client on other machine. I'm getting the 
error

mps-178:~ jbmoore$ svn checkout 
http://cvn.esonicspider.com/catalogsuites/trunk
subversion/libsvn_ra_dav/util.c:826: (apr_err=175002)
svn: PROPFIND request failed on '/catalogsuites/trunk'
subversion/libsvn_ra_dav/util.c:296: (apr_err=175002)
svn: PROPFIND of '/catalogsuites/trunk': 405 Method Not Allowed 
(http://cvn.esonicspider.com)


My httpd.conf settings..

==================

## Subversion Settings
## =========================================

<VirtualHost 207.137.13.169>
     ServerAdmin jbm@microps.com
    # DocumentRoot /usr/local/svn
     ServerName svn.esonicspider.com
     ErrorLog logs/svn-error_log
     CustomLog logs/svn-access_log common
</VirtualHost>

<Directory "/usr/local/svn">
     AllowOverride None
     Options None
     Order allow,deny
     Allow from all
</Directory>

<Location /svn>
    DAV svn
    SVNParentPath /usr/local/svn
    #AuthType Basic
    #AuthName "Subversiond Repository"
    #AuthUserFile /etc/svn-auth-file
    #Require valid-user
</Location>

====================

I started with AuthType Basic.. but commented that out so I can test the 
basic access.

I created the repository using svnadmin at 
/usr/local/svn/catalogsuites/trunk

...seem to work fine and various components were created as expected.

..and at this time it is empty.. (I have not imported a project)  I need 
to access this from JBuilder but I first need to make sure that I can 
access it via commandline svn.

Any help appreciated..

John Moore

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

Re: svn: PROPFIND of '/catalogsuites/trunk': 405 Method Not Allowed

Posted by Garrett Rooney <ro...@electricjellyfish.net>.
On 4/16/06, John B. Moore <jb...@esonicspider.com> wrote:
> Greetings,
>
> I'm a newbie so keep that in mind...
>
> I've been working to setup a Subversion server.. and so far have not
> been able to access it via svn client on other machine. I'm getting the
> error
>
> mps-178:~ jbmoore$ svn checkout
> http://cvn.esonicspider.com/catalogsuites/trunk
> subversion/libsvn_ra_dav/util.c:826: (apr_err=175002)
> svn: PROPFIND request failed on '/catalogsuites/trunk'
> subversion/libsvn_ra_dav/util.c:296: (apr_err=175002)
> svn: PROPFIND of '/catalogsuites/trunk': 405 Method Not Allowed
> (http://cvn.esonicspider.com)

Shouldn't that be 'svn', not 'cvn'?  ;-)

Failing that, 405 errors often mean that you're going through a proxy
that doesn't allow WebDAV requests like PROPFIND.  Switching to
https:// often fixes that, since the proxy doesn't see the request.

-garrett

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


Re: svn: PROPFIND of '/catalogsuites/trunk': 405 Method Not Allowed

Posted by "John B. Moore" <jb...@esonicspider.com>.
Please, Please.. I need some more ideas here..

Issues covered so far..

1) No, I don't have a proxy..
2) There was a typo in the original message (svn.. not cvn..)

Versions:

Subversion Server: CentOS 4.2 (Community version of RedHat 4.2)
Apache HTTPD: 2.0.55 (freshly compiled with switches as per Subversion 
docs on a virgin machine.)
Subversion Server: Latest download 1.3.1 (from source)
Subversion Client: subversion-client-1.3.0.dmg (Mac OS X 10.3)

Any missing info..???


John B. Moore wrote:
> Greetings,
> 
> I'm a newbie so keep that in mind...
> 
> I've been working to setup a Subversion server.. and so far have not 
> been able to access it via svn client on other machine. I'm getting the 
> error
> 
> mps-178:~ jbmoore$ svn checkout 
> http://svn.esonicspider.com/catalogsuites/trunk
> subversion/libsvn_ra_dav/util.c:826: (apr_err=175002)
> svn: PROPFIND request failed on '/catalogsuites/trunk'
> subversion/libsvn_ra_dav/util.c:296: (apr_err=175002)
> svn: PROPFIND of '/catalogsuites/trunk': 405 Method Not Allowed 
> (http://svn.esonicspider.com)
> 
> 
> My httpd.conf settings..
> 
> ==================
> 
> ## Subversion Settings
> ## =========================================
> 
> <VirtualHost 207.137.13.169>
>     ServerAdmin jbm@microps.com
>    # DocumentRoot /usr/local/svn
>     ServerName svn.esonicspider.com
>     ErrorLog logs/svn-error_log
>     CustomLog logs/svn-access_log common
> </VirtualHost>
> 
> <Directory "/usr/local/svn">
>     AllowOverride None
>     Options None
>     Order allow,deny
>     Allow from all
> </Directory>
> 
> <Location /svn>
>    DAV svn
>    SVNParentPath /usr/local/svn
>    #AuthType Basic
>    #AuthName "Subversiond Repository"
>    #AuthUserFile /etc/svn-auth-file
>    #Require valid-user
> </Location>
> 
> ====================
> 
> I started with AuthType Basic.. but commented that out so I can test the 
> basic access.
> 
> I created the repository using svnadmin at 
> /usr/local/svn/catalogsuites/trunk
> 
> ...seem to work fine and various components were created as expected.
> 
> ..and at this time it is empty.. (I have not imported a project)  I need 
> to access this from JBuilder but I first need to make sure that I can 
> access it via commandline svn.
> 
> Any help appreciated..
> 
> John Moore



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