• 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
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

ANT vssget

 
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have put the following code in but it is looking for a db on my local machine.
<target name="source-control"
depends="init"
description="source control">
<vssget localPath="C:\VSS\PCFG\PCFG System\Current Version"
ssdir="C:\Program Files\Microsoft Visual Studio\Common\VSS\win32"
serverPath="C:\program\zsuzsa"
recursive="true"
login="zsuzsa,password"
vsspath="/PCFG/PCFG System/Current Version"
writable="false"/>
</target>
I am not sure which parameter would have to hold the pass and how for the database on another machine on the network. Any help would be very much apprechiated. Thank you
 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
The only thing that I think of that can be wrong is the "serverpath" it should be the Directory where your VSS database is configured.
Here is a example that i had use
<target name="vssckout" description ="Testing ">
<vsscheckout vsspath="/Code/pre-Poc/QPut.c"
localpath="/localcode"
recursive="true"
ssdir="D:\Program Files\Microsoft Visual Studio\Common\VSS\win32"
serverPath="\\psatsrv80\NewProject\"
login="rajesh.bhoir,vsspass"
/>
</target>
Hope this helps you!
reply
    Bookmark Topic Watch Topic
  • New Topic