Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/ant/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
SVN:PROPFIND请求失败_Svn_Ant - Fatal编程技术网

SVN:PROPFIND请求失败

SVN:PROPFIND请求失败,svn,ant,Svn,Ant,build.xml类似于: <?xml version="1.0"?> <project name="AUTO_BUILD"> <property environment="env"/> <path id="svnant.classpath"> <fileset dir="C:\Program Files\Java\apache-ant-1.8.1/lib"> <include n

build.xml类似于:

<?xml version="1.0"?>
<project name="AUTO_BUILD">

   <property environment="env"/> 
   <path id="svnant.classpath"> 
      <fileset dir="C:\Program Files\Java\apache-ant-1.8.1/lib"> 
         <include name="**/*.jar"/> 
      </fileset> 
   </path> 
   <taskdef resource="svntask.properties" classpathref="svnant.classpath"/>

   <target name="checkout"> 
      <svn username="username" password="password"> 
         <checkout url="Repo-URL" destPath="C:\Program Files\Java\apache-ant-1.8.1\test"/> 
      </svn> 
   </target>
</project>
获取以下错误:

Buildfile: C:\Program Files\Java\apache-ant-1.8.1\build.xml

checkout:
[svn] Using command line interface
Svn : Checking out a working copy from a repository :
co -r HEAD https://c..../trunk C:\Program Files\Java\apache-ant-1.8.1 --username 6044
28101 --password ******* --non-interactive
svn: PROPFIND request failed on '/svn/asia-pac-financials/trunk'
svn: PROPFIND of '/svn.../trunk': Could not resolve hostname `col.com':
The requested name is valid and was found in the database, 
but it does not have the correct associated data being resolved for. (https://col.com)

BUILD FAILED
C:\Program Files\Java\apache-ant-1.8.1\build.xml:16: Can't checkout

Total time: 1 second

请提供帮助。

错误消息说它
无法解析主机名“col.com”

你能确保你能到达服务器
'col.com'
(可能是ping吗?)

Buildfile: C:\Program Files\Java\apache-ant-1.8.1\build.xml

checkout:
[svn] Using command line interface
Svn : Checking out a working copy from a repository :
co -r HEAD https://c..../trunk C:\Program Files\Java\apache-ant-1.8.1 --username 6044
28101 --password ******* --non-interactive
svn: PROPFIND request failed on '/svn/asia-pac-financials/trunk'
svn: PROPFIND of '/svn.../trunk': Could not resolve hostname `col.com':
The requested name is valid and was found in the database, 
but it does not have the correct associated data being resolved for. (https://col.com)

BUILD FAILED
C:\Program Files\Java\apache-ant-1.8.1\build.xml:16: Can't checkout

Total time: 1 second