我正在开发VS2010中的Windows应用程序。我正在使用SharpSVN连接subversion存储库。我试图使用svnClient.GetList(targetUri, out list);
函数获取存储库项目。它适用于本地(file\\:
)存储库。当我尝试连接https服务器时,它给出了错误。
我已经习惯了在代码中给出的https服务器示例。我已经尝试过tortoiseSVN也可以连接。它说“无法连接到服务器”。我已经尝试过C#并得到同样的错误。
请参阅下面的https服务器网址和用户名及密码
https://svn.codespaces.com/cw/com_codespaces_api_net
username: api_guest
password Password1
以下代码,我曾经用过连接。
using (SvnClient svnClient = new SvnClient())
{
svnClient.Authentication.DefaultCredentials = new System.Net.NetworkCredential("api_guest", "Password1");
SvnTarget targetUri = new SvnUriTarget(new Uri(sourcePath));
var list = new Collection<SvnListEventArgs>();
svnClient.GetList(targetUri, out list);
}
错误讯息:
OPTIONS of 'https://svn.codespaces.com/cw/com_codespaces_api_net': could not connect to server (https://svn.codespaces.com)"
我在Google搜索了解决方案。我无法找到任何帮助。