You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Denis Shaposhnikov <ds...@vlink.ru> on 2006/07/27 06:48:50 UTC

%25gconf.xml: 400 Bad Request

Hi!

I get `400 Bad Request' error on commiting file which name contaion
"%" symbol:

,----[ svn commit -m "" ]
| Adding         evince/%gconf.xml
| svn: Commit failed (details follow):
| svn: PROPFIND request failed on '/svn/dsh/trunk/neva/home/.gconf/apps/evince/%25gconf.xml'
| svn: PROPFIND of '/svn/dsh/trunk/neva/home/.gconf/apps/evince/%25gconf.xml': 400 Bad Request (https://svn.internal.vlink.ru)
`----

How can I debug this error and fix it?

Thanks!

PS. subversion-1.3.2

-- 
DSS5-RIPE DSS-RIPN 2:550/5068@fidonet 2:550/5069@fidonet
xmpp:dsh@vlink.ru mailto:dsh@vlink.ru http://neva.vlink.ru/~dsh/

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

Re: %25gconf.xml: 400 Bad Request

Posted by Denis Shaposhnikov <ds...@vlink.ru>.
>>>>> "Ryan" == Ryan Schmidt <su...@ryandesign.com> writes:

 Ryan> Maybe you have a weird proxy in the way? Because I'm unable to
 Ryan> reproduce this with Subversion 1.3.2 served with Apache 2.2.2
 Ryan> on Mac OS X 10.4.7 PPC:

Yes, you are right. That's http proxy server. Everything is OK with
direct http. I'll try to debug it out.

-- 
DSS5-RIPE DSS-RIPN 2:550/5068@fidonet 2:550/5069@fidonet
xmpp:dsh@vlink.ru mailto:dsh@vlink.ru http://neva.vlink.ru/~dsh/

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

Re: %25gconf.xml: 400 Bad Request

Posted by Denis Shaposhnikov <ds...@vlink.ru>.
>>>>> "Ryan" == Ryan Schmidt <su...@ryandesign.com> writes:

 Ryan> Maybe you have a weird proxy in the way? Because I'm unable to
 Ryan> reproduce this with Subversion 1.3.2 served with Apache 2.2.2
 Ryan> on Mac OS X 10.4.7 PPC:

I've found it and fixed. For nginx_ I have to::

  proxy_pass http://127.0.0.1;

instead of::

  proxy_pass http://127.0.0.1/;

in nginx.conf.

.. _nginx: http://www.sysoev.ru/nginx/

-- 
DSS5-RIPE DSS-RIPN 2:550/5068@fidonet 2:550/5069@fidonet
xmpp:dsh@vlink.ru mailto:dsh@vlink.ru http://neva.vlink.ru/~dsh/

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

Re: %25gconf.xml: 400 Bad Request

Posted by Ryan Schmidt <su...@ryandesign.com>.
On Jul 27, 2006, at 08:48, Denis Shaposhnikov wrote:

> I get `400 Bad Request' error on commiting file which name contaion
> "%" symbol:
>
> ,----[ svn commit -m "" ]
> | Adding         evince/%gconf.xml
> | svn: Commit failed (details follow):
> | svn: PROPFIND request failed on '/svn/dsh/trunk/neva/home/.gconf/ 
> apps/evince/%25gconf.xml'
> | svn: PROPFIND of '/svn/dsh/trunk/neva/home/.gconf/apps/evince/% 
> 25gconf.xml': 400 Bad Request (https://svn.internal.vlink.ru)
> `----
>
> How can I debug this error and fix it?
>
> Thanks!
>
> PS. subversion-1.3.2

Maybe you have a weird proxy in the way? Because I'm unable to  
reproduce this with Subversion 1.3.2 served with Apache 2.2.2 on Mac  
OS X 10.4.7 PPC:


$ touch %gconf.xml
$ svn add %gconf.xml
A         %gconf.xml
$ svn ci -m ""
Adding         %gconf.xml
Transmitting file data .
Committed revision 13.
$ svn rm %gconf.xml
D         %gconf.xml
$ svn ci -m ""
Deleting       %gconf.xml

Committed revision 14.
$


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