public class History {

public static void main(String[] args) {
    DAVRepositoryFactory.setup();

    SVNRepository repository = null;
    try {
        repository = SVNRepositoryFactory.create(SVNURL
                .parseURIEncoded(url));
        ISVNAuthenticationManager authManager = SVNWCUtil
                .createDefaultAuthenticationManager(name, password);
        repository.setAuthenticationManager(authManager);

        Collection logEntries = null;

        logEntries = repository.log(new String[] { "" }, null,
                startRevision, endRevision, true, true);
        for (Iterator entries = logEntries.iterator(); entries.hasNext();) {
            SVNLogEntry logEntry = (SVNLogEntry) entries.next();
            System.out
                    .println("---------------------------------------------");
            System.out.println("revision: " + logEntry.getRevision());
            System.out.println("author: " + logEntry.getAuthor());
            System.out.println("date: "
                    + logEntry.getDate().toLocaleString());
            System.out.println("log message: " + logEntry.getMessage());

            if (logEntry.getChangedPaths().size() > 0) {
                System.out.println();
                System.out.println("changed paths:");
                Set changedPathsSet = logEntry.getChangedPaths().keySet();

                for (Iterator changedPaths = changedPathsSet.iterator(); changedPaths
                        .hasNext();) {
                    SVNLogEntryPath entryPath = (SVNLogEntryPath) logEntry
                            .getChangedPaths().get(changedPaths.next());
                    System.out
                            .println(" "
                                    + entryPath.getType()
                                    + " "
                                    + entryPath.getPath()
                                    + ((entryPath.getCopyPath() != null) ? " (from "
                                            + entryPath.getCopyPath()
                                            + " revision "
                                            + entryPath.getCopyRevision()
                                            + ")"
                                            : ""));
                }
            }
        }
    } catch (Exception e) {
        System.out.println();
    }
}

  }

Above stand alone program is working fine. But when I try the same code using struts 2.1, it's throwing an error at

Collection logEntries = repository.log(new String[] { " " }, null,startRevision, endRevision, true, true);

 public class CVEHistory {

public String execute() throws Exception {

    CVEHistory cve = new CVEHistory();
    System.out.println("in svn history");
    DAVRepositoryFactory.setup();
    String[] details = new String[10];
    //String url = "file:///xxxxxxxx/1234.doc";
    String url = "https://xxxxx/1234.doc";
    String name = "test";
    String password = "testdummy";
    String creator = new String();
    String createddate = new String();
    String lastmodifier = new String();
    int[] revisions = new int[10];

    long startRevision = 0;
    long endRevision = -1; // HEAD (the latest) revision
    System.out.println("in svn history2");
    SVNRepository repository = null;
    try {
        repository = SVNRepositoryFactory.create(SVNURL
                .parseURIEncoded(url));
        ISVNAuthenticationManager authManager = SVNWCUtil
                .createDefaultAuthenticationManager(name, password);
        repository.setAuthenticationManager(authManager);
        System.out.println(repository.getLatestRevision());

        //Collection logEntries = null;
        System.out.println("000000000000000000000");
        Collection logEntries = repository.log(new String[] { " " }, null,
                startRevision, endRevision, true, true);
        System.out.println(logEntries.toString());

        System.out.println("11111111111111111111111111111");
        for (Iterator entries = logEntries.iterator(); entries.hasNext();) {
            SVNLogEntry logEntry = (SVNLogEntry) entries.next();
            System.out
                    .println("---------------------------------------------");
            System.out.println("revision: " + logEntry.getRevision());
            System.out.println("author: " + logEntry.getAuthor());
            System.out.println("date: "
                    + logEntry.getDate().toLocaleString());
            System.out.println("log message: " + logEntry.getMessage());
            System.out.println("revision properties"
                    + logEntry.getRevisionProperties());

            if (logEntry.getChangedPaths().size() > 0) {

                System.out.println("changed paths:");
                Set changedPathsSet = logEntry.getChangedPaths().keySet();

                for (Iterator changedPaths = changedPathsSet.iterator(); changedPaths
                        .hasNext();) {
                    SVNLogEntryPath entryPath = (SVNLogEntryPath) logEntry
                            .getChangedPaths().get(changedPaths.next());
                    System.out
                            .println(" "
                                    + entryPath.getType()
                                    + " "
                                    + entryPath.getPath()
                                    + ((entryPath.getCopyPath() != null) ? " (from "
                                            + entryPath.getCopyPath()
                                            + " revision "
                                            + entryPath.getCopyRevision()
                                            + ")"
                                            : ""));
                }
            }
        }
    } catch (Exception e) {
        System.out.println();
    }
    return SUCCESS;
}

public void setServletRequest(HttpServletRequest request) {
    this.request = request;
}

public void setServletResponse(HttpServletResponse response) {
    this.response = response;
}

public void setDataService(DataService dataService) {
    this.dataService = dataService;
}

}

link|improve this question
When I am running the same code using struts 2.1 , its not going executed at the line Collection logEntries = repository.log(new String[] { " " }, null,startRevision, endRevision, true, true); – user1118693 Dec 28 '11 at 4:58
Can you provide the error and stack trace? – Francis Upton Dec 28 '11 at 13:10
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.