Logging Subversion client HTTP requests

2011-07-30 Thread Manuel Lemos
Hello, I am writing a small SubVersion client library independent of the svn client command. My library works well but for some reason it does not work with a certain SSL server that is not under my control. It returns error 400. I assume I am sending some malformed commands. On the other

Re: Logging Subversion client HTTP requests

2011-07-30 Thread Erik Huelsmann
Hi Manuel, On Sat, Jul 30, 2011 at 12:16 PM, Manuel Lemos mle...@acm.org wrote: Hello, I am writing a small SubVersion client library independent of the svn client command. My library works well but for some reason it does not work with a certain SSL server that is not under my control.

Worst Error Message?

2011-07-30 Thread Andy Canfield
I just spent all day working on a bug. I could create a repository, and could do svn checkout ... but when I did svn commit I got this error message: svn: Commit failed (details follow): svn: Server sent unexpected return value (403 Forbidden) in response to MKACTIVITY request

Re: Worst Error Message?

2011-07-30 Thread Robert P. J. Day
On Sat, 30 Jul 2011, Andy Canfield wrote: I just spent all day working on a bug. I could create a repository, and could do svn checkout ... but when I did svn commit I got this error message: svn: Commit failed (details follow): svn: Server sent unexpected return value (403 Forbidden)

Re: Worst Error Message?

2011-07-30 Thread Stefan Sperling
On Sat, Jul 30, 2011 at 09:15:18PM +0700, Andy Canfield wrote: I just spent all day working on a bug. I could create a repository, and could do svn checkout ... but when I did svn commit I got this error message: svn: Commit failed (details follow): svn: Server sent unexpected return

Re: disable security hole in svn+ssh?

2011-07-30 Thread Andy Canfield
On 07/29/2011 02:10 PM, Cooke, Mark wrote: -Original Message- From: Andy Canfield [mailto:andy.canfi...@pimco.mobi] Sent: 29 July 2011 02:27 To: Geoff Hoffman Cc: Nico Kadel-Garcia; users@subversion.apache.org Subject: Re: disable security hole in svn+ssh? snip Apparently,

Re: Worst Error Message?

2011-07-30 Thread Andy Canfield
On 07/30/2011 09:31 PM, Stefan Sperling wrote: On Sat, Jul 30, 2011 at 09:15:18PM +0700, Andy Canfield wrote: I just spent all day working on a bug. I could create a repository, and could do svn checkout ... but when I did svn commit I got this error message: svn: Commit failed (details

Re: Worst Error Message?

2011-07-30 Thread Les Mikesell
On 7/30/11 9:15 AM, Andy Canfield wrote: I just spent all day working on a bug. I could create a repository, and could do svn checkout ... but when I did svn commit I got this error message: svn: Commit failed (details follow): svn: Server sent unexpected return value (403 Forbidden) in response

Re: Worst Error Message?

2011-07-30 Thread Jeremy Pereira
On 30 Jul 2011, at 18:17, Les Mikesell wrote: '403 forbidden' makes reasonable sense for a client-side message to someone who shouldn't know internal details anyway. Seriously? You think an HTTP response code (which *is* an internal detail) is an acceptable error message. You think it

Re: Worst Error Message?

2011-07-30 Thread Les Mikesell
On 7/30/11 1:14 PM, Jeremy Pereira wrote: On 30 Jul 2011, at 18:17, Les Mikesell wrote: '403 forbidden' makes reasonable sense for a client-side message to someone who shouldn't know internal details anyway. Seriously? You think an HTTP response code (which *is* an internal detail) is

Re: Worst Error Message?

2011-07-30 Thread Nico Kadel-Garcia
On Sat, Jul 30, 2011 at 3:10 PM, Les Mikesell lesmikes...@gmail.com wrote: On 7/30/11 1:14 PM, Jeremy Pereira wrote: On 30 Jul 2011, at 18:17, Les Mikesell wrote: '403 forbidden' makes reasonable sense for a client-side message to someone who shouldn't know internal details anyway.

Re: Logging Subversion client HTTP requests

2011-07-30 Thread Manuel Lemos
Hello, on 07/30/2011 07:18 AM Ryan Schmidt said the following: On Jul 30, 2011, at 05:16, Manuel Lemos wrote: Is there a way to log the svn client HTTP traffic to a file so I can examine and compare the requests being sent and responses being received? You mean like this?

Re: Logging Subversion client HTTP requests

2011-07-30 Thread Manuel Lemos
Hello Erik, on 07/30/2011 09:00 AM Erik Huelsmann said the following: Hi Manuel, On Sat, Jul 30, 2011 at 12:16 PM, Manuel Lemos mle...@acm.org mailto:mle...@acm.org wrote: Hello, I am writing a small SubVersion client library independent of the svn client command. My library

Re: Logging Subversion client HTTP requests

2011-07-30 Thread Ryan Schmidt
On Jul 30, 2011, at 17:35, Manuel Lemos wrote: on 07/30/2011 09:00 AM Erik Huelsmann said the following: Are you not using the libsvn_* libraries? libsvn_client is specifically meant to build Subversion clients other than the standard command line client: Subclipse, AnkhSVN, TortoiseSVN

Re: Logging Subversion client HTTP requests

2011-07-30 Thread Manuel Lemos
Hello, on 07/30/2011 07:42 PM Ryan Schmidt said the following: Sorry, I did not mention that I am writing a pure PHP client that needs to run on an environment on which the svn program is not available, nor any SubVersion PHP extensions are available. So using anything based on libsvn is not

Re: Logging Subversion client HTTP requests

2011-07-30 Thread Ryan Schmidt
On Jul 30, 2011, at 17:56, Manuel Lemos wrote: on 07/30/2011 07:42 PM Ryan Schmidt said the following: Sorry, I did not mention that I am writing a pure PHP client that needs to run on an environment on which the svn program is not available, nor any SubVersion PHP extensions are available.

Re: Logging Subversion client HTTP requests

2011-07-30 Thread Geoff Hoffman
On Sat, Jul 30, 2011 at 3:56 PM, Manuel Lemos mle...@acm.org wrote: I have already a pure PHP implementation Manuel, didn't you also write whole Mailer library for PHPClasses.org and start that site? When do you sleep? You're speaking to svn server directly from PHP, with stream context or

Re: Logging Subversion client HTTP requests

2011-07-30 Thread Manuel Lemos
Hello Ryan, on 07/30/2011 08:30 PM Ryan Schmidt said the following: Sorry, I did not mention that I am writing a pure PHP client that needs to run on an environment on which the svn program is not available, nor any SubVersion PHP extensions are available. So using anything based on libsvn is

Re: Logging Subversion client HTTP requests

2011-07-30 Thread Manuel Lemos
Hello, on 07/30/2011 09:16 PM Geoff Hoffman said the following: I have already a pure PHP implementation Manuel, didn't you also write whole Mailer library for PHPClasses.org and start that site? When do you sleep? hahah good question. When you work full time on these stuff you do it

Re: Logging Subversion client HTTP requests

2011-07-30 Thread Geoff Hoffman
On Sat, Jul 30, 2011 at 6:20 PM, Manuel Lemos mle...@acm.org wrote: Hello, on 07/30/2011 09:16 PM Geoff Hoffman said the following: I have already a pure PHP implementation Manuel, didn't you also write whole Mailer library for PHPClasses.org and start that site? When do you

Re: Logging Subversion client HTTP requests

2011-07-30 Thread Manuel Lemos
Hello, on 07/30/2011 10:57 PM Geoff Hoffman said the following: Does httpclient work if you switch it to the cURL option? You may need to extend the class to provide https specific curl options [1]. [1]

Re: SVNParent authz

2011-07-30 Thread Andy Canfield
On 07/29/2011 01:48 PM, Cooke, Mark wrote: -Original Message- From: Andy Canfield [mailto:andy.canfi...@pimco.mobi] Sent: 29 July 2011 05:14 To: users@subversion.apache.org Subject: SVNParent authz I am having a problem with AuthzSVNAccessFile. Consider the case where I have two

Re: Logging Subversion client HTTP requests

2011-07-30 Thread Andreas Krey
On Sat, 30 Jul 2011 18:30:11 +, Ryan Schmidt wrote: ... But you understand why even if I knew I would be disinterested in helping you. The Subversion libraries have been in development for 11 years, work great, They work so great that you can't even Ctrl-C the svn command line client in