how to solve SVN Commit Issue: forbidden by server

When I tried to commit my code using Eclipse. I got the following error:

org.apache.subversion.javahl.ClientException: The operation is forbidden by the server
svn: Commit failed (details follow):
svn: Changing file 'D:\workspace\DataItem.java' is forbidden by the server
URL access forbidden for unknown reason
svn: Access to '/abc/!svn/ver/8211/trunk/01_Application/DataItem.java' forbidden
RA layer request failed
svn: Additional errors:
svn: CHECKOUT of '/abc/!svn/ver/8211/trunk/01_Application/DataItem.java': 403 Forbidden

How to solve the issue?

Answer

First of all, this question has to be asked on StackOverflow, not on ServerFault.

The error 403 Forbidden indicates that you don’t have enough permissions to write to the particular repository subtree. You can’t solve the problem yourself and you should contact repository administrator or manager for assistance with this. The bottom line is you don’t have enough permissions to perform the operation.

Attribution
Source : Link , Question Author : Viraj Sawant , Answer Author : bahrep

Leave a Comment