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/18 15:26:30 UTC

subversion/libsvn_ra_dav/util.c:826: (apr_err=175002)

Please, Please.. I need some more ideas here..

Issues covered so far..

1) No, I don't have a proxy..

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..???

See below  for original issue...


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

Re: subversion/libsvn_ra_dav/util.c:826: (apr_err=175002)

Posted by Nick Thompson <ni...@agere.com>.
Try accessing the URL with only a standard web browser. Did you 
restart httpd after making you svn changes to httpd.conf? Did you 
check for errors in the httpd error_log file? If httpd using you 
httpd.conf or another one?

And finally, did you use the right URL :-) I think it should be:

http://svn.esonicspider.com/svn/catalogsuites/trunk

Note the /svn/ bit after the hostname....

On Tuesday 18 April 2006 16:26, John B. Moore wrote:
> Please, Please.. I need some more ideas here..
>
> Issues covered so far..
>
> 1) No, I don't have a proxy..
>
> 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..???
>
> See below  for original issue...
>
> 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


-- 
> Nick Thompson

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