Hi all,
Today only I started playing around with Gitblit, and its cool.!
I have a requirement to do some git repo management (repo creation, permission .. etc) , programatically,
so I have started using Gitblit API ..
I have deployed Gitblit WAR on tomcat, and from my Java client program i have written
GitblitClient client = new GitblitClient(reg);
client.login();
In Tomcat logs I can see "admin authenticated by BASIC request header from 127.0.0.1" ...
but if I try with invalid credentials, in my client code there is no exception thrown, therefore I cannot identify that my login attempt is successful or not.. ?
If there is any way please let me know.
Thanks in advance
Sajith