• 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
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Can you retrieve from SourceSafe on a Unix box?

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have a production environment running in Unix and I was wondering if/how a UNIX box using ANT can get source code? Using a CVS connection?
The properties that are used for connecting to VSS need:
# VSS Specific properties
#root where files from VSS will be retrieved
vss.localPath=${build.home}/vssroot
# Release version label. Files with this version label will be retrieved.
#vss.release=Release0
# Login Id/Password used for VSS
vss.login=****,****
#VSS Project to be retrieved
vss.vsspath=/devhome
#Dir where ss.exe file is located
vss.ssdir=C:\\Program Files\\Microsoft Visual Studio\\VSS\\win32
#Dir where vss srcsafe.ini file is located
vss.serverPath=//***/***
 
Ranch Hand
Posts: 214
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hej,
1. The quickest and most expensive answer to this question is for you to buy sourceoffsite and use the optional task that is provided by ant 1.5.1, you can get a trial version from www.sourcegear.com . I've never used it, but basically it can act as a socket gateway to sourcesafe, so any OS can access it.
2. Alternatively, and I'm not sure how much mileage you'll get out of this :- use wine to see if you can actually run the ss.exe
3. Migrate to a real source code repository like CVS
L
 
Ranch Hand
Posts: 170
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
A poorman's solution would be push all the source files in the VSS library to the UNIX box in a temp folder using some sort of script. Then run Ant and get files from that folder.
 
Roses are red, violets are blue. Some poems rhyme and some don't. And some poems are a tiny ad.
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic