簡體   English   中英

無法使用部署在 Heroku 上的 Java 應用程序中的 svnkit 連接到 HTTPS svn 服務器

[英]unable to connect to HTTPS svn server using svnkit from java app deployed on Heroku

我正在使用 svnkit 來獲取有關我們的 svn 存儲庫的一些信息。 我使用了 svnkit 文檔中提到的示例,當我在本地 eclipse 中運行示例時,我能夠獲取詳細信息。 我們的存儲庫可以通過 https 協議訪問。

import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.*;
import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.servlet.*;
import org.tmatesoft.svn.core.SVNDirEntry;
import org.tmatesoft.svn.core.SVNException;
import org.tmatesoft.svn.core.SVNNodeKind;  
import org.tmatesoft.svn.core.SVNURL;
import org.tmatesoft.svn.core.auth.ISVNAuthenticationManager; 
import org.tmatesoft.svn.core.internal.io.dav.DAVRepositoryFactory;
import org.tmatesoft.svn.core.internal.io.fs.FSRepositoryFactory;
import org.tmatesoft.svn.core.internal.io.svn.SVNRepositoryFactoryImpl;
import org.tmatesoft.svn.core.io.SVNRepository;
import org.tmatesoft.svn.core.io.SVNRepositoryFactory;
import org.tmatesoft.svn.core.wc.SVNWCUtil;

public class HelloWorld extends HttpServlet {
public static String abc="";

@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp)
        throws ServletException, IOException {
    resp.getWriter().print("Hello from Java! The repository UUID is \n"+ abc);
}

public static void main(String[] args) throws Exception{
    Server server = new Server(Integer.valueOf(System.getenv("PORT")));
    ServletContextHandler context = new ServletContextHandler(ServletContextHandler.SESSIONS);
    context.setContextPath("/");
    server.setHandler(context);
    context.addServlet(new ServletHolder(new HelloWorld()),"/*");

    //If I use these set I am able to fetch the details from SVN.
//String url = "http://svn.svnkit.com/repos/svnkit/trunk/doc";
  //  String name = "anonymous";
    //String password = "anonymous";

    String url = "https://svn.ourComplanyRepo";
    String name = "username";
    String password = "password";
    long startRevision = 0;
    long endRevision = -1;
DAVRepositoryFactory.setup();
SVNRepository repository = null;
repository = SVNRepositoryFactory.create(SVNURL.parseURIEncoded(url));
ISVNAuthenticationManager authManager = SVNWCUtil.createDefaultAuthenticationManager(name, password);
    repository.setAuthenticationManager(authManager);
    SVNURL XYZ =  repository.getLocation();
    abc = repository.getRepositoryUUID(true); 
    server.start();
    server.join();      
}

}

當我將代碼部署到 heroku 時,我遇到了一個問題。 當我檢查 heroku 日志時,我發現了這個問題

 0m Exception in thread "main" org.tmatesoft.svn.core.SVNException: svn: E175002: connection refused by the server

你能幫我解決這個問題嗎?

谷歌搜索錯誤產生了一些有希望的線索,嘗試運行:

-Dsvnkit.http.sslProtocols="SSLv3"

...如建議here

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM