• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

SVN Checkout using build script failing

 
Ranch Hand
Posts: 980
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I am having problem when checking out code from subversion using the build script

Below is the message.

[exec] Error validating server certificate for 'https://xyz.com:12121':
[exec] - The certificate is not issued by a trusted authority. Use the
[exec] fingerprint to validate the certificate manually!
[exec] Certificate information:
[exec] - Hostname: *.com
[exec] - Valid: from Oct 22 00:00:00 2007 GMT until Dec 12 23:59:59 2008 GMT
[exec] - Issuer: Terms of use at https://www.ver.com (c)05, V
[exec] - Fingerprint: sdfsdfsdf:sdfsd SFsDF:SDFdsF;dsF;sd;fds:f
[exec] (R)eject, accept (t)emporarily or accept (p)ermanently? svn: PROPFIND request failed on 'df/sdfs/sdf/ds/src'
[exec] svn: PROPFIND of 'df/sdfs/sdf/ds/src': Server certificate verification failed: issuer is not trusted (https://xyz.com)
[exec] Result: 1


And the script is


<target name="svncheckout">
<echo message="yes Source to be updated from SVN"/>
<path refid="class.path"/>
<exec executable ="${SVNPath}">
<arg line="co ${detailsforcheckout}"/>

</exec>


Regards
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic