RE: How to use VSS from script running on linux..?

2003-06-23 Thread Anderson, Robert H - MWT
The VSS tasks call the external binaries that are installed with VSS. This is from the MSVSS.java file... * A base class for creating tasks for executing commands on Visual SourceSafe. * * The class extends the 'exec' task as it operates by executing the ss.exe program * supplied with SourceS

RE: How to use VSS from script running on linux..?

2003-06-23 Thread Rosendahl Sten - stro
There are several rexec server implementations for Windows... Sten -Original Message- From: Keith Hatton [mailto:[EMAIL PROTECTED] Sent: Monday, June 23, 2003 6:36 PM To: Ant Users List Subject: RE: How to use VSS from script running on linux..? Could you telnet to a Windoze box and ru

RE: How to use VSS from script running on linux..?

2003-06-23 Thread Duffey, Kevin
Thanks, interesting, but for the task I am trying to do, probably best to just create a CD-R on windows and copy the files. Basically I am first trying to create an ant script that sets up our jboss server from our VSS files that we use for a specific project. From there I was hoping to grab all

RE: How to use VSS from script running on linux..?

2003-06-23 Thread Keith Hatton
Could you telnet to a Windoze box and run VSS from there? Perhaps with a Samba share back to the Linux box? Never tried it, but maybe Rant (Remote Ant) is worth a look? Keith -Original Message- From: Duffey, Kevin [mailto:[EMAIL PROTECTED] Sent: 23 June 2003 17:34 To: Ant Users List Subj

RE: How to use VSS from script running on linux..?

2003-06-23 Thread Duffey, Kevin
Well, we are moving to CVS very slowly, but until then, I was hoping to be able to get our project out onto linux and build it from there as well. We are working on deploying to linux for the first time. There is no way to execute the SS task on the server it runs on? I basically point both ssdi

RE: How to use VSS from script running on linux..?

2003-06-23 Thread Rosendahl Sten - stro
I'm afraid you'll have to wait for JSR147 (http://www.jcp.org/en/jsr/detail?id=147) or try to access SourceSafe for Linux (http://www.kegel.com/linux/vss-howto.html) or why not think of using something (anything!) else than SourceSafe ;-) Sten Rosendahl -Original Message- From: Duffey, Ke

How to use VSS from script running on linux..?

2003-06-23 Thread Duffey, Kevin
Hi all, I am trying to use our windows based script that connects to our VSS server via the \\server\share name to run it. When I run this script on linux, it give ma a java.io.IOException. I guess it makes sense, but is there any "abstracted" source control API that allows you to get/put/compa

RE: building incrementally

2003-06-23 Thread Ciramella, EJ
There's two ways to go about this... You can try to bump up the memory allocated using ANT_OPTS or the memory config settings within the javac task or you can break up the build into sub projects (ideal). If it's possible to have a build that puts together your projects frame work and other com

RE: buiding incrementally

2003-06-23 Thread Maybin Muyeba
New to Ant!! I am building a script in ant that compiles deeply nested directories with lots of files(.java). When I build from the root of the classess directory, I run out of memory but when I manually make directories for the same directories and compile per-directory, it works. But is there