You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Harry van Rijn <ha...@raceeend-2.demon.nl> on 2013/08/16 20:32:10 UTC

Commit from eclipse failed

I have installed subclipes on eclipse (kepler).
Subclipse is installed.

I can connect to a repository on a remote server via http(s).
Checkin out the repository is no problem.
Then I add a directory and want to commit this change.

After 3 time giving user/password this is the result:
-----------------------------------------------------
org.apache.subversion.javahl.ClientException: Authorization failed
svn: Commit failed (details follow):
svn: POST of '/repos/isa/!svn/me': authorization failed: Could not 
authenticate to server: rejected Basic challenge 
(https://raceeend-2.demon.nl)

org.apache.subversion.javahl.ClientException: Authorization failed
svn: Commit failed (details follow):
svn: POST of '/repos/isa/!svn/me': authorization failed: Could not 
authenticate to server: rejected Basic challenge 
(https://raceeend-2.demon.nl)
-----------------------------------------------------

On the remote site apache, mod_dav_svn is installed.
Here is my /etc/https/conf.d/mod_dav_svn.conf

<Location /repos/>
DAV svn
SVNParentPath /var/www/svn/
SVNListParentPath On

AuthType Basic
AuthName "ISA Subversion Repository"
AuthUserFile /etc/subversion/svn-auth.htpasswd

# Require SSL connection for password protection.
SSLRequireSSL

# Limit write permission to list of valid users.
<LimitExcept GET PROPFIND OPTIONS REPORT>
Require valid-user
</LimitExcept>
</Location>

The /etc/subversion/svn-auth.htpasswd I have created wit htpasswd -c 
/etc/subversion/svn-auth.htpasswd <username>
---------------------

Why I cannot commit changes?




Re: Commit from eclipse failed

Posted by Harry van Rijn <ha...@raceeend-2.demon.nl>.
Excuse me, I will send my reply to the list.


Andy Levy schreef op 2013-08-16 21:54:
> Don't tell just me, reply to all & keep it on the list.
> 
> On Fri, Aug 16, 2013 at 3:47 PM, Harry van Rijn
> <ha...@raceeend-2.demon.nl> wrote:
> Andy Levy schreef op 2013-08-16 20:41:
> 
> On Fri, Aug 16, 2013 at 2:32 PM, Harry van Rijn
> <ha...@raceeend-2.demon.nl> wrote:
> I have installed subclipes on eclipse (kepler).
> Subclipse is installed.
> 
> I can connect to a repository on a remote server via http(s).
> Checkin out the repository is no problem.
> Then I add a directory and want to commit this change.
> 
> After 3 time giving user/password this is the result:
> -----------------------------------------------------
> org.apache.subversion.javahl.ClientException: Authorization failed
> svn: Commit failed (details follow):
> svn: POST of '/repos/isa/!svn/me': authorization failed: Could not
> authenticate to server: rejected Basic challenge
> (https://raceeend-2.demon.nl)
> 
> org.apache.subversion.javahl.ClientException: Authorization failed
> svn: Commit failed (details follow):
> svn: POST of '/repos/isa/!svn/me': authorization failed: Could not
> authenticate to server: rejected Basic challenge
> (https://raceeend-2.demon.nl)
> -----------------------------------------------------
> 
> On the remote site apache, mod_dav_svn is installed.
> Here is my /etc/https/conf.d/mod_dav_svn.conf
> 
> <Location /repos/>
> DAV svn
> SVNParentPath /var/www/svn/
> SVNListParentPath On
> 
> AuthType Basic
> AuthName "ISA Subversion Repository"
> AuthUserFile /etc/subversion/svn-auth.htpasswd
> 
> # Require SSL connection for password protection.
> SSLRequireSSL
> 
> # Limit write permission to list of valid users.
> <LimitExcept GET PROPFIND OPTIONS REPORT>
> Require valid-user
> </LimitExcept>
> </Location>
> 
> The /etc/subversion/svn-auth.htpasswd I have created wit htpasswd -c
> /etc/subversion/svn-auth.htpasswd <username>
> ---------------------
> 
> Why I cannot commit changes?
> 
> Can you commit using another client (command-line)?
> 
> 
> 
> No, with svn commandline it also failed:
> 
> [harry@localhost tmp]$ svn co https://raceeend-2.demon.nl/repos/isa
> Checked out revision 0.
> 
> [harry@localhost isa]$ mkdir trunk
> 
> [harry@localhost isa]$ svn ci --message logfile
> Authentication realm: <https://raceeend-2.demon.nl:443> ISA Subversion
> Repository
> Password for 'harry':
> Authentication realm: <https://raceeend-2.demon.nl:443> ISA Subversion
> Repository
> Username: harry
> Password for 'harry':
> Authentication realm: <https://raceeend-2.demon.nl:443> ISA Subversion
> Repository
> Username: harry
> Password for 'harry':
> svn: E170001: Commit failed (details follow):
> svn: E170001: POST of '/repos/isa/!svn/me': authorization failed: Could 
> not
> authenticate to server: rejected Basic challenge
> (https://raceeend-2.demon.nl)
> [harry@localhost isa]$
> 
> 
> 

Re: Commit from eclipse failed

Posted by Andy Levy <an...@gmail.com>.
On Fri, Aug 16, 2013 at 2:32 PM, Harry van Rijn
<ha...@raceeend-2.demon.nl> wrote:
> I have installed subclipes on eclipse (kepler).
> Subclipse is installed.
>
> I can connect to a repository on a remote server via http(s).
> Checkin out the repository is no problem.
> Then I add a directory and want to commit this change.
>
> After 3 time giving user/password this is the result:
> -----------------------------------------------------
> org.apache.subversion.javahl.ClientException: Authorization failed
> svn: Commit failed (details follow):
> svn: POST of '/repos/isa/!svn/me': authorization failed: Could not
> authenticate to server: rejected Basic challenge
> (https://raceeend-2.demon.nl)
>
> org.apache.subversion.javahl.ClientException: Authorization failed
> svn: Commit failed (details follow):
> svn: POST of '/repos/isa/!svn/me': authorization failed: Could not
> authenticate to server: rejected Basic challenge
> (https://raceeend-2.demon.nl)
> -----------------------------------------------------
>
> On the remote site apache, mod_dav_svn is installed.
> Here is my /etc/https/conf.d/mod_dav_svn.conf
>
> <Location /repos/>
> DAV svn
> SVNParentPath /var/www/svn/
> SVNListParentPath On
>
> AuthType Basic
> AuthName "ISA Subversion Repository"
> AuthUserFile /etc/subversion/svn-auth.htpasswd
>
> # Require SSL connection for password protection.
> SSLRequireSSL
>
> # Limit write permission to list of valid users.
> <LimitExcept GET PROPFIND OPTIONS REPORT>
> Require valid-user
> </LimitExcept>
> </Location>
>
> The /etc/subversion/svn-auth.htpasswd I have created wit htpasswd -c
> /etc/subversion/svn-auth.htpasswd <username>
> ---------------------
>
> Why I cannot commit changes?

Can you commit using another client (command-line)?