Hi ,

I have a issue with deleting Git repo using Gitblit api. Please see below
the code snippet to I tried to test this functionality.

public void deleteRepo() throws Exception {

String repoName = "Testing/as/18";

String baseUrl = "https://gitblit.s2.wso2.com:8444/";;

String repoCreateUrl = baseUrl + "rpc?req=DELETE_REPOSITORY&name="

+ repoName;

RepositoryModel model = new RepositoryModel();

model.name = repoName;

model.accessRestriction = Constants.AccessRestrictionType.VIEW;

try {

boolean deleted = RpcUtils.deleteRepository(model, repoCreateUrl,

"xxx", "xxx".toCharArray());

System.out.println("deleted : " + deleted);

} catch (Exception e) {

e.printStackTrace();

}

}

*Note* : RpcUtils.deleteRepository method returns true when I use correct
username and password but when I check the repository from Gitblit admin
portal its not deleted. What can be the reason for this ?


Thanks
Godwin




-- 
*Godwin Amila Shrimal*
Senior Software Engineer
WSO2 Inc.; http://wso2.com
lean.enterprise.middleware

mobile: *+94772264165*
linkedin: *http://lnkd.in/KUum6D <http://lnkd.in/KUum6D>*
twitter: https://twitter.com/godwinamila
_______________________________________________
Dev mailing list
[email protected]
http://wso2.org/cgi-bin/mailman/listinfo/dev

Reply via email to