public String execute() throws Exception,SVNException {

        CVEHistory cve = new CVEHistory();
        System.out.println("in svn history");
        DAVRepositoryFactory.setup();
        String[] details = new String[10];
        //String url = "file:///D:/IDS/MSCVE/ADVISORIES/CVE-2010-3148.doc";
        String url = "https://xxxxxxxxxx/svn/SVN/CVE";


        String dstPath="D:/kiran12345";

        long startRevision = 0;
        long endRevision = -1; // HEAD (the latest) revision
        System.out.println("in svn history2");
        SVNRepository repository = null;



            System.out.println("before checkout");
            client.checkout(url, dstPath, null,null, false, false);
            System.out.println("after checkout");
}

Error :

org.tigris.subversion.javahl.ClientException: svn: Invalid report for top level of working copy
link|improve this question
have you tried the debug the code where you getting this error? – Umesh Awasthi Dec 29 '11 at 11:28
its coming in client.checkout(url, dstPath, null,null, false, false); this line. – user1118693 Dec 29 '11 at 11:55
org.tigris.subversion.javahl.ClientException: svn: Invalid report for top level of working copy svn: REPORT of '/svn/SVN/!svn/vcc/default': 500 Internal Server Error (xyz..com).......above is the exact error I am getting... – user1118693 Dec 29 '11 at 12:07
i believe this is more likely due to svnkit.hope some one from the community will get back to you – Umesh Awasthi Dec 29 '11 at 12:26
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.