Re: ftp task and Java 7

2011-08-31 Thread Inmarri
I have the same problema. Any solution? -- View this message in context: http://ant.1045680.n5.nabble.com/ftp-task-and-Java-7-tp4664764p4753485.html Sent from the Ant - Users mailing list archive at Nabble.com. - To unsubscribe

ftp task and Java 7

2011-08-03 Thread Joe Black
Until now, I am using Java 1.6.0_26 and apache ant 1.8.2 and commons-net 2.2 and jakarta-oro-2.0.8 to use the ant task ftp, to download some files from a server using ID and password and using the file names. I just upgraded from Java 1.6.0_26 to Java 1.7.0 and try to run the same program. Err

Ant ftp task “Could not date test remote file”

2011-02-19 Thread Boris Hamanov
Hi guys! I am using Ant ftp task to deploy my project files to a remote app server. Ant is not able to detect the date of the remote file and it re-uploads all files every time. When I start Ant in debug mode it says: [ftp] checking date for mailer.war [ftp] Could not date test remote file

Re: FTP task incredibly slow when listing files

2011-02-10 Thread Antoine Levy-Lambert
Hello Jesse, I did some changes long time ago to the ftp task but do not remember much about it. I would have to open the source code. What happens if you do not nest a fileset when doing your invocation ? Regards, Antoine On 2/9/11 6:52 PM, Jesse Campbell wrote: > Apologies if I¹m in

FTP task incredibly slow when listing files

2011-02-09 Thread Jesse Campbell
Apologies if I¹m in the wrong place... I¹ve tried searching and none of the results I¹ve come up with are even close to my problem. I am using the ftp task to pull down a list of files on an ftp server, my task looks like this: It appears (though I have not verified through packet analysis

Ant FTP task: adding progress indicator and timeout

2010-08-22 Thread Evgeny Goldin
Hi All, I had to add a progress indicator to Ant's FTP task and blogged recently about how it can be done: http://evgeny-goldin.com/blog/2010/08/18/ant-ftp-task-progress-indicator-timeout/ Hope it'll help other people if they need to do the same. -- Best regards, Evgeny htt

Re: What's Up with FTP task?

2010-03-01 Thread Robert Anderson
t; > [1] http://ant.apache.org/manual/install.html#librarydependencies > > > Rhino wrote: > > I'm really getting frustrated with the Ant FTP task. > > > > For most of the last two days, I have been trying to FTP a moderate > > sized collection of files to fi

Re: What's Up with FTP task?

2010-02-27 Thread Antoine Levy-Lambert
Hi, commons-net-2.0 could be the culprit. Try with commons-net-1.4.0. I have looked at our library dependencies manual page [1] Regards, Antoine [1] http://ant.apache.org/manual/install.html#librarydependencies Rhino wrote: > I'm really getting frustrated with the Ant FTP task. >

What's Up with FTP task?

2010-02-27 Thread Rhino
I'm really getting frustrated with the Ant FTP task. For most of the last two days, I have been trying to FTP a moderate sized collection of files to first one server, then to another server. In virtually every case, my target has stalled at some point within the target but rarely in the

Re: FTP task timing out

2010-02-26 Thread reno . rkcrew
Rhino, did you try with the passive option to yes? S. > I'm losing connections via the FTP task in Ant. I'm running Ant 1.7.1 in > Eclipse 3.5.1 (Galileo). I am running the Ant script directly from > within Eclipse, not from the command line. commons-net-2.0 and > jaka

FTP task timing out

2010-02-26 Thread Rhino
I'm losing connections via the FTP task in Ant. I'm running Ant 1.7.1 in Eclipse 3.5.1 (Galileo). I am running the Ant script directly from within Eclipse, not from the command line. commons-net-2.0 and jakarta-oro-2.0.8 are both visible to the FTP tasks. I am trying to access m

Re: FTP task

2010-02-08 Thread Antoine Levy-Lambert
tack dump >> so that we find out exactly what happens ? >> >> Also, could you try other ftp actions such as either getting or >> putting a file, whatever you can try most conveniently ? >> >> Regards, >> >> Antoine >> >> John Cartwrigh

Re: FTP task

2010-02-08 Thread John Cartwright
t; Regards, > > Antoine > > John Cartwright wrote: >> Hello All, >> >> I'm trying a simple FTP task w/ v. 1.8.0 and it seems to connect OK, but >> hangs at the execution of the list command. Can someone please point >> out what I'm doing wrong? >

Re: FTP task

2010-02-08 Thread Antoine Levy Lambert
You might want to use the attribute remotedir="hazards". The semantics of the ftp task are not easy ... Antoine Antoine Levy Lambert wrote: Hello John, you might not be doing anything wrong. Could you generate a stack dump so that we find out exactly what happens ? Also, cou

Re: FTP task

2010-02-08 Thread Antoine Levy Lambert
: Hello All, I'm trying a simple FTP task w/ v. 1.8.0 and it seems to connect OK, but hangs at the execution of the list command. Can someone please point out what I'm doing wrong? Thank

FTP task

2010-02-08 Thread John Cartwright
Hello All, I'm trying a simple FTP task w/ v. 1.8.0 and it seems to connect OK, but hangs at the execution of the list command. Can someone please point out what I'm doing wrong? Thank

Re: Ant FTP Task related question

2009-04-22 Thread sridhar bitkuri
;send' action and 'put' action? > 2, Any way to make ant FTP task upload empty folder as well? > 3, Any way we can chmod 777 folders with Ant FTP task? > > Thanks, > -xin > > - > To unsubscribe,

Re: Ant FTP Task related question

2009-04-22 Thread Antoine Levy-Lambert
Hello Xin, send and put seem to be exactly the same according to the documentation. I am not sure whether you can make the ftp task upload empty folders. I do not see any action defined in the documentation to run chmod. Regards, Antoine Xin CHEN wrote: > Hi All, > > I have been

Ant FTP Task related question

2009-04-20 Thread Xin CHEN
Hi All, I have been search on Google about my question and couldn't find. So I am here: 1, What's the difference between 'send' action and 'put' action? 2, Any way to make ant FTP task upload empty folder as well? 3, Any way we can chmod 777 folders wi

Re: Optional classpath entry support for FTP task

2008-09-25 Thread Nan Null
I haven't found the solution to this, however, I pass the following to the ant command as a parameter -lib \commons-net-1.4.1.jar -lib \jakarta-oro-2.0.8.jar If you find your solution, please let me know. The problem I think is that ftp task was defined already in a parent classloader. I

Optional classpath entry support for FTP task

2008-09-23 Thread Greg Roodt
Hi I would like to specify the jar locations for the optional FTP task in the build.xml, in the same way that it can be done for the JUnit task. Does anybody know if this can be done? My initial investigations show that the commons-net and oro jars must be added into ANT_HOME/lib or .ant/lib or

Ant FTP Task - FTPDirectoryScanner.checkRemoteSensitivity

2008-04-17 Thread Leung, Wilson
I got the following exception when I attempted to ftp get a file from the solaris server onto my Windows box: --- Nested Exception --- java.lang.NullPointerException at org.apache.tools.ant.taskdefs.optional.net.FTP$FTPDirectoryScanner.checkRemoteSensitivity(FTP.java:536) at org

Re: Leap Year Bug in Ant 1.7.0 FTP task - Daylight Savings?

2008-03-10 Thread Shay Thompson
I noticed today that a few of my servers which run the Ant FTP task failed on Sunday when they were working on Saturday, almost as if they're now having a problem with daylight savings. I also noticed that only the machines running Java 1.5.0_11 are failing while those with 1.5.0_0

RE: Leap Year Bug in Ant 1.7.0 FTP task?

2008-03-06 Thread Francis Brennan
List; [EMAIL PROTECTED] Subject: RE: Leap Year Bug in Ant 1.7.0 FTP task? ALL: Note that Ant's FTP task uses commons-net, which received a flurry of bug reports relating to the leap day issue on Feb 29. This says to me that there is around a 99% chance that the bug lies in commons-net, and t

RE: Leap Year Bug in Ant 1.7.0 FTP task?

2008-03-06 Thread Matt Benson
ALL: Note that Ant's FTP task uses commons-net, which received a flurry of bug reports relating to the leap day issue on Feb 29. This says to me that there is around a 99% chance that the bug lies in commons-net, and that Ant is for the most part powerless. -Matt --- Jukka Uusisalo &l

RE: Leap Year Bug in Ant 1.7.0 FTP task?

2008-03-06 Thread Gilles Scokart
s, Gilles > -Original Message- > From: Jukka Uusisalo [mailto:[EMAIL PROTECTED] > Sent: jeudi 6 mars 2008 14:16 > To: 'Ant Users List' > Subject: RE: Leap Year Bug in Ant 1.7.0 FTP task? > > > -Original Message- > > From: Francis Brennan [mailto:

RE: Leap Year Bug in Ant 1.7.0 FTP task?

2008-03-06 Thread Jukka Uusisalo
> -Original Message- > From: Francis Brennan [mailto:[EMAIL PROTECTED] > Sent: 5. maaliskuuta 2008 23:48 > To: user@ant.apache.org > Subject: Leap Year Bug in Ant 1.7.0 FTP task? > > > Has anyone else run across a bug in the FTP task in Ant 1.7.0 > relat

Re: Leap Year Bug in Ant 1.7.0 FTP task?

2008-03-06 Thread Steve Loughran
Francis Brennan wrote: Has anyone else run across a bug in the FTP task in Ant 1.7.0 related to Feb 29th timestamps?. I've used the FTP task as part of an automated system to retrieve builds from a server and has been functioning reliably for many months without change. Beginning on Feb

Leap Year Bug in Ant 1.7.0 FTP task?

2008-03-05 Thread Francis Brennan
Has anyone else run across a bug in the FTP task in Ant 1.7.0 related to Feb 29th timestamps?. I've used the FTP task as part of an automated system to retrieve builds from a server and has been functioning reliably for many months without change. Beginning on Feb 29th at 12:00 AM, al

Re: FTP Task doesn't work with ANT with all JARs included

2007-09-27 Thread Peter Reilly
f the libraries. There were problems with > incompatible versions... > > > But btw - nice post. Contains a lot of needed information ;) > > > Jan > > >-Ursprüngliche Nachricht- > >Von: Z [mailto:[EMAIL PROTECTED] > >Gesendet: Donnerstag, 27. September 20

AW: FTP Task doesn't work with ANT with all JARs included

2007-09-26 Thread Jan.Materne
007 03:33 >An: user@ant.apache.org >Betreff: FTP Task doesn't work with ANT with all JARs included > >Hi > >Platform - windows XP >Env Variables - >name - ANT_HOME Value - C:\apache-ant-1.6.2 >name - JAVA_HOMEValue - C:\Program Files\Java\jdk1.5.0

FTP Task doesn't work with ANT with all JARs included

2007-09-26 Thread Z
Hi Platform - windows XP Env Variables - name - ANT_HOME Value - C:\apache-ant-1.6.2 name - JAVA_HOMEValue - C:\Program Files\Java\jdk1.5.0_12 name - PATH Value - C:\Program Files\Java\jdk1.5.0_12\lib;%ANT_HOME%\bin I've downloaded and dropped the followin

RE: ANT FTP task

2007-06-27 Thread sarancse
June 27, 2007 9:09 AM >> To: user@ant.apache.org >> Subject: ANT FTP task >> >> >> I am unable to upload a file using the following ANT script. >> I am having commons-net-1.4.0.jar and jakarta-oro-2.0.8.jar >> in my ANT lib. Please help to upload succe

RE: ANT FTP task

2007-06-27 Thread Anderson, Rob (Global Trade)
What is the output of the build? What is the error? -Rob A > -Original Message- > From: sarancse [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 27, 2007 9:09 AM > To: user@ant.apache.org > Subject: ANT FTP task > > > I am unable to upload a file using

ANT FTP task

2007-06-27 Thread sarancse
://www.nabble.com/ANT-FTP-task-tf3989267.html#a11327351 Sent from the Ant - Users mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Ftp task question again

2007-05-01 Thread Robertson, Julie
By using the wildcard character I could build the file name, but how do I specify the server and location of the file, or do I actually do that inside the ftp task? -Original Message- From: Loehr, Ruel [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 01, 2007 1:34 PM To: Ant Users List

RE: Ftp task question again

2007-05-01 Thread Loehr, Ruel
Do you know ahead of time what the filenames might be?If so, then you could do something like this: For one of the files. -Original Message- From: Robertson, Julie [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 01, 2007 1:28 PM To: Ant Users List Subject: Ftp task question again

Ftp task question again

2007-05-01 Thread Robertson, Julie
Sorry about sending this again, I guess I removed myself from the users list in error, so I wanted to add myself back in and resend this in case someone has an idea to solve my issue. I am trying to copy files using the ftp task and a fileset include which is working just fine. The problem I am

Files exist using ftp task?

2007-05-01 Thread Robertson, Julie
Good day all, I am trying to copy files using the ftp task and a fileset include which is working just fine. The problem I am having is I need to know when 0 files retrieved so that I can send an email if the files are not there. Is there a way to check to see if the files exist using the ftp

FTP task

2006-05-29 Thread Meshram, Tushar
How to download empty folder structure from ftp.

Re: ftp task fails when file has ' (apostrophe symbol)

2006-05-22 Thread David
>I dont know if there is enough evidence to distinguish a bug in ant from some FTP server config. I am pritty sure it is a bug with Apache Ant ftp-task, becuase I am overcomming this invoking directly the class: org.apache.commons.net.ftp.FTPClient I can't use w

Re: ftp task fails when file has ' (apostrophe symbol)

2006-05-22 Thread Steve Loughran
thout ' on its name and it works.It is a problem with the ftp task and not with the fileSet definition, I guess because I have tried to use the '-symbol on the name for making a copy of the file and it works (see below) I am sending to you a piece of code

ftp task fails when file has ' (apostrophe symbol)

2006-05-22 Thread David
on its name and it works.It is a problem with the ftp task and not with the fileSet definition, I guess because I have tried to use the '-symbol on the name for making a copy of the file and it works (see below) I am sending to you a piece of code

RE: ftp task fails when file has ' (apostrophe symbol)

2006-05-22 Thread Asaf Mesika
Have you tried viewing the source code for the ftp get task? This might give you the answer. > -Original Message- > From: David [mailto:[EMAIL PROTECTED] > Sent: Monday, May 22, 2006 5:19 PM > To: Ant Apache User Group > Subject: ftp task fails when file has '

ftp task fails when file has ' (apostrophe symbol)

2006-05-22 Thread David
I have to get a file from the server, but the name has to be encloses by ' symbol, for example: 'foo.txt', but Ant process the file name an eliminates the delimitors. I have tested the ftp action with a file without ' on its name and it works.It is a problem with

RE: FTP Task

2006-05-19 Thread Anderson, Rob (Global Trade)
You cannot use FTP to transfer files to or from an SSH server. Two options: 1) Make sure you have an FTP server running and point the ftp task to port 23, the default port for FTP. 2) Use the scp task. -Rob A > -Original Message- > From: Venkatesh Vijayakumar04 [mailto:[EMAIL PRO

Re: FTP Task

2006-05-19 Thread Jeffrey E Care
atesh Vijayakumar04" <[EMAIL PROTECTED]> 05/19/2006 08:50 AM Please respond to "Ant Users List" To "Ant Users List" cc Subject FTP Task Hi I am getting the following error when I use ftp task in my ant script.        

FTP Task

2006-05-19 Thread Venkatesh Vijayakumar04
Hi I am getting the following error when I use ftp task in my ant script. [echo] [echo] Compling all class files [echo] makedirOnline: [echo] [echo] Creating directories for Online [echo

Re: Optional FTP task 'account' attribute needed

2006-03-31 Thread Jeffrey E Care
Your best bet to get this implemented would be to write up a feature request in bugzilla & attach a patch that implements the feature. Jeffrey E. (Jeff) Care [EMAIL PROTECTED] IBM WebSphere Applic

Optional FTP task 'account' attribute needed

2006-03-31 Thread Michael Giroux
The apache commons-net FTPClient provides a login(userid, password, account) method which I must use for my host (The host requires account information). The task does not provide an attribute for account preventing me from using ANT to transfer files to the target system. It would be nice if th

AW: ANT FTP TASK

2006-03-05 Thread Jan.Materne
Working with filesets is also described in http://ant.apache.org/manual/tutorial-tasks-filesets-properties.html#filesets Jan >-Ursprüngliche Nachricht- >Von: Karthik [mailto:[EMAIL PROTECTED] >Gesendet: Montag, 6. März 2006 08:16 >An: Ant Users List >Betreff: RE: ANT F

RE: ANT FTP TASK

2006-03-05 Thread Karthik
based target Please some body help with regards Karthik -Original Message- From: bill/wilandra [mailto:[EMAIL PROTECTED] Sent: Monday, March 06, 2006 12:38 PM To: 'Ant Users List' Subject: RE: ANT FTP TASK Having never looked at the code, but, applying a little lo

RE: ANT FTP TASK

2006-03-05 Thread bill/wilandra
you can find the Fileset class and go from there? HTH Bill -Original Message- From: Karthik [mailto:[EMAIL PROTECTED] Sent: Sunday, March 05, 2006 10:20 PM To: user@ant.apache.org Subject: ANT FTP TASK Hi form I found this piece of code on the web and am struck with the API 1)Would

ANT FTP TASK

2006-03-05 Thread Karthik
Hi form I found this piece of code on the web and am struck with the API 1)Would like to know how to add files to "addFileSet" for thr code below. public void setCopXinTask(String fromSrc,String toDirName) { Project project = createProject(); FTP ftp =

Re: FTP task crashes - why?

2005-12-18 Thread Gilbert Rebhan
Hi, Rhino > I am getting this crash in the middle of an FTP task; it is trying to > copy a directory containing 50 or 60 files in a variety of > subdirectories from my PC to a remote server: > [ ... ] > > E:\eclipse\3.1.1\eclipse\workspace\Resume_JDK_1.5.0\xml\build.xml:368:

FTP task crashes - why?

2005-12-17 Thread Rhino
I am getting this crash in the middle of an FTP task; it is trying to copy a directory containing 50 or 60 files in a variety of subdirectories from my PC to a remote server: fileset: Setup scanner in dir E:\eclipse\3.1.1\eclipse\workspace\Resume_JDK_1.5.0\javadoc with patternSet{ includes

Re: Urgent help with FTP task.....please help

2005-12-15 Thread Jakob Fix
On 15/12/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > There is an issue of password being in clear text while using the ftp > task. Is there a way around it . > http://ant.apache.org/manual/OptionalTasks/scp.html ? -

RE: Urgent help with FTP task.....please help

2005-12-15 Thread Ivan Ivanov
TED] wrote: > There is an issue of password being in clear text > while using the ftp > task. Is there a way around it . > > project name="ftpuse" default="ftp"> > > > > > > > > > > > > > >

RE: Urgent help with FTP task.....please help

2005-12-15 Thread Srikrishna_Parthasarathy
There is an issue of password being in clear text while using the ftp task. Is there a way around it . project name="ftpuse" default="ftp"> > > > > > > > > > > > > > > > > > remotedir="c:\uploads&

RE: Urgent help with FTP task.....please help

2005-12-14 Thread Srikrishna_Parthasarathy
] Sent: Wednesday, December 14, 2005 7:20 PM To: Ant Users List Subject: RE: Urgent help with FTP task.please help Hello --- [EMAIL PROTECTED] wrote: > Thanks for your email > > I am using ant 1.6.5. I am not sure you are using ant 1.6.5. From your first message I see: > C:\an

RE: Urgent help with FTP task.....please help

2005-12-14 Thread Ivan Ivanov
^^ Here it says something else. > For ftp what jar file you have to download and > put in ant lib directory? Everything regarding ftp task is described in the fine manual. See [1]. Regards Ivan [1]http://ant.apache.org/manual/insta

RE: Urgent help with FTP task.....please help

2005-12-14 Thread Srikrishna_Parthasarathy
user@ant.apache.org Subject: RE: Urgent help with FTP task.please help No offlist emails, please. See google for ftp servers on windows [1]. Microsoft FTP server is part of their IIS. Also they say WS_FTP is a nice ftp server. Regards Ivan [1]http://www.google.com/search?hl=en&lr=&q

RE: Urgent help with FTP task.....please help

2005-12-14 Thread Ivan Ivanov
y, December 14, 2005 6:22 PM > To: Ant Users List > Subject: RE: Urgent help with FTP task.please > help > > Hello > > --- [EMAIL PROTECTED] wrote: > > > I am trying from my laptop to my desktop. > Fine, but is there a running ftp server on your > desktop?

RE: Urgent help with FTP task.....please help

2005-12-14 Thread Ivan Ivanov
gt; Do you know on how to install it ? > > -Original Message- > From: Ivan Ivanov > [mailto:[EMAIL PROTECTED] > Sent: Wednesday, December 14, 2005 6:51 PM > To: Ant Users List > Subject: RE: Urgent help with FTP task.please > help > > > > --- [EM

Re: Urgent help with FTP task.....please help

2005-12-14 Thread Alexey N. Solofnenko
, 2005 6:14 PM To: Ant Users List Subject: Re: Urgent help with FTP task.please help Hello, Are you aure you have ftp server up and running on 10.187.218.183? Can you access the ftp server using ordinary command line client like C:\> ftp 10.187.218.183 Regards Ivan --- [EMAIL PROTECTED] wr

RE: Urgent help with FTP task.....please help

2005-12-14 Thread Srikrishna_Parthasarathy
inal Message- From: Ivan Ivanov [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 14, 2005 6:22 PM To: Ant Users List Subject: RE: Urgent help with FTP task.please help Hello --- [EMAIL PROTECTED] wrote: > I am trying from my laptop to my desktop. Fine, but is there a running ftp

RE: Urgent help with FTP task.....please help

2005-12-14 Thread Ivan Ivanov
PM > To: Ant Users List > Subject: Re: Urgent help with FTP task.please > help > > Hello, > > Are you aure you have ftp server up and running on > 10.187.218.183? Can you access the ftp server using > ordinary command line client like > C:\> ftp 10.187.218.183 &

RE: Urgent help with FTP task.....please help

2005-12-14 Thread Srikrishna_Parthasarathy
I am trying from my laptop to my desktop. Eventually I have to move files from one windows box to multiple windows boxes. -Original Message- From: Ivan Ivanov [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 14, 2005 6:14 PM To: Ant Users List Subject: Re: Urgent help with FTP task

Re: Urgent help with FTP task.....please help

2005-12-14 Thread Ivan Ivanov
Hello, Are you aure you have ftp server up and running on 10.187.218.183? Can you access the ftp server using ordinary command line client like C:\> ftp 10.187.218.183 Regards Ivan --- [EMAIL PROTECTED] wrote: > I downloaded the required jarfile from ant site for > ftp task .

Urgent help with FTP task.....please help

2005-12-14 Thread Srikrishna_Parthasarathy
I downloaded the required jarfile from ant site for ftp task . I get the following error. C:\antscripts>ant -verbose -f generalftp.xml Apache Ant version 1.6.2 compiled on August 5 2004 Buildfile: generalftp.xml Detected Java version: 1.5 in: C:\bea9\JROCKI~1\jre Detected OS: Windows

Re: storing optional (ftp) task jar dependency under my project instead of under /ant/lib

2005-07-13 Thread Peter Reilly
stead of just executing the build.xml this causes me to have a shellscript to set the environment variables and execute the build.xml What I could do in this particular case is provide an install mechanism (a target in the build.xml perhaps) for the ftp-task which copies the commons-net-1.1.0.jar fro

Re: storing optional (ftp) task jar dependency under my project instead of under /ant/lib

2005-07-12 Thread Asle Pedersen
f the build.xml. Instead of just executing the build.xml this causes me to have a shellscript to set the environment variables and execute the build.xml What I could do in this particular case is provide an install mechanism (a target in the build.xml perhaps) for the ftp-task which copies the co

Re: storing optional (ftp) task jar dependency under my project instead of under /ant/lib

2005-07-12 Thread Ivan Ivanov
Asle, --- Asle Pedersen <[EMAIL PROTECTED]> wrote: > I prefer alt.3 and try using taskdefs before without > success. I did > try it again now also not successfully. Could you > please supply me > with a complete working example? I've implemented this approach only once for , because I was only cu

Re: storing optional (ftp) task jar dependency under my project instead of under /ant/lib

2005-07-12 Thread Peter Reilly
script ftp task like this: Regards Ivan --- Asle Pedersen <[EMAIL PROTECTED]> wrote: Is it possible to "embed" the ant ftp task in a project. I would like to just depend on a standard ant-installation to use the ftp task and have the commons-net-1.1.0.jar in

Re: storing optional (ftp) task jar dependency under my project instead of under /ant/lib

2005-07-12 Thread Asle Pedersen
ry directory say > /path/to/thirdparty/jars and use -lib option of ant > launching script. > > 3) (Requires more coding and its benefits are > doubtful). Move ant-commons-net.jar from $ANT_HOME/lib > to some other folder and in your build script > ftp task like this: >

Re: storing optional (ftp) task jar dependency under my project instead of under /ant/lib

2005-07-12 Thread Ivan Ivanov
and its benefits are doubtful). Move ant-commons-net.jar from $ANT_HOME/lib to some other folder and in your build script ftp task like this: Regards Ivan --- Asle Pedersen <[EMAIL PROTECTED]> wrote: > Is it possible to "embed" the ant ftp task in a > proj

storing optional (ftp) task jar dependency under my project instead of under /ant/lib

2005-07-12 Thread Asle Pedersen
Is it possible to "embed" the ant ftp task in a project. I would like to just depend on a standard ant-installation to use the ftp task and have the commons-net-1.1.0.jar in my project instead of under /ant/lib which is suggested by the documentation. I have tried different methods to d

RE: Installing ant ftp task on suse linux 9.2

2005-04-05 Thread
Sorry, the optional ftp task still does not work, even if the jars are in the lib directory. I noticed there is a /etc/ant.conf file, that seems to list the installed optional packages. Does anyone know how I can inegrate an optional (ftp) task on a Suse Linux 9.2 system, where ant was installed

RE: Installing ant ftp task on suse linux 9.2

2005-04-05 Thread
[mailto:[EMAIL PROTECTED] Sent: Tuesday, April 05, 2005 11:28 AM To: Ant Users List Subject: RE: Installing ant ftp task on suse linux 9.2 Do you also have all the ant-*.jar in the $ANT_HOME/lib directory ? There is a ant-apache-oro.jar and an ant-commons-net.jar. Do you have them ? Antoine > Hi t

RE: Installing ant ftp task on suse linux 9.2

2005-04-05 Thread Antoine Levy-Lambert
dafone-rnd.com > > > > -Original Message- > From: Antoine Levy-Lambert [mailto:[EMAIL PROTECTED] > Sent: Tuesday, April 05, 2005 11:28 AM > To: Ant Users List > Subject: RE: Installing ant ftp task on suse linux 9.2 > > > Do you also have all the ant-*.jar

RE: Installing ant ftp task on suse linux 9.2

2005-04-05 Thread
EMAIL PROTECTED] www.vodafone-rnd.com -Original Message- From: Antoine Levy-Lambert [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 05, 2005 11:28 AM To: Ant Users List Subject: RE: Installing ant ftp task on suse linux 9.2 Do you also have all the ant-*.jar in the $ANT_HOME/lib directory ? The

RE: Installing ant ftp task on suse linux 9.2

2005-04-05 Thread Antoine Levy-Lambert
to /usr/share/ant/lib, but the same > error pops up when I execute the build file: ant cannot find the > libraries that support the ftp task. > > is there a special ant-ftp.jar? if so, I did not find it yet. > > is /usr/share/ant/lib the right place to put the jars? > &g

RE: Installing ant ftp task on suse linux 9.2

2005-04-05 Thread
Hi there, I still cant't use the ftp taks on the suse linux 9.2 machine. I copied the oro and commons-net jar files to /usr/share/ant/lib, but the same error pops up when I execute the build file: ant cannot find the libraries that support the ftp task. is there a special ant-ftp.jar? if

Installing ant ftp task on suse linux 9.2

2005-04-04 Thread
Hi there, I would like to install the ftp optional task on a suse 9.2 machine. ant itself is already installed via yast. The ant site says I need jakarta-oro and the commons-net optional libraries. No my question: can I simply drop them in usr/share/ant/lib and ant will find them or do I need to

Re: AW: Trouble deleting hidden files using ftp task

2004-11-24 Thread Jonas Kongslund
It turns out that the problem was not due to the ftp task but due to the ftp server that I use. In its default configuration hidden files are not returned when one issues a LIST or a NLST command to the ftp server. After changing this default behavior the problem was solved. In case anyone is

Re: AW: Trouble deleting hidden files using ftp task

2004-11-23 Thread Jonas Kongslund
ECTED] > > Gesendet am: Mittwoch, 24. November 2004 08:21 > > An: [EMAIL PROTECTED] > > Betreff: Trouble deleting hidden files using ftp task > > > > Hi > > > > Has anyone been able to delete hidden files (files starting > > with a dot), using > > th

AW: Trouble deleting hidden files using ftp task

2004-11-23 Thread Jan . Materne
Von: Jonas Kongslund [mailto:[EMAIL PROTECTED] > Gesendet am: Mittwoch, 24. November 2004 08:21 > An: [EMAIL PROTECTED] > Betreff: Trouble deleting hidden files using ftp task > > Hi > > Has anyone been able to delete hidden files (files starting > with a dot), usin

Trouble deleting hidden files using ftp task

2004-11-23 Thread Jonas Kongslund
Hi Has anyone been able to delete hidden files (files starting with a dot), using the ftp task? The following example removes everything in the www folder except the hidden files. This is unfortunate since I also would like to remove all .htaccess files. I'm usin

Re: CopyStreamException on FTP task

2004-10-15 Thread rob
On Thu, Oct 14, 2004 at 04:45:52PM +0530, Vinay Vijayan wrote: > Hi Robert, > > If possible, can you try same thing i,e transfer files to a another > server(machine with ftp service enable) . That way it would confirm > whether the problem is with ant FTP task or the machin

Re: CopyStreamException on FTP task

2004-10-14 Thread Laconia Data Systems
-- > everything works. > > -Rob > > > > > Martin- > > - Original Message - > > From: "Robert Koberg" <[EMAIL PROTECTED]> > > To: <[EMAIL PROTECTED]> > > Sent: Wednesday, October 13, 2004 2:05 PM > > Subject: CopyStre

RE: CopyStreamException on FTP task

2004-10-14 Thread Vinay Vijayan
Hi Robert, If possible, can you try same thing i,e transfer files to a another server(machine with ftp service enable) . That way it would confirm whether the problem is with ant FTP task or the machine u r trying to connect. Vinay -Original Message- From: Ivan Ivanov [mailto:[EMAIL

Re: CopyStreamException on FTP task

2004-10-14 Thread Ivan Ivanov
HTH Ivan --- Robert Koberg <[EMAIL PROTECTED]> wrote: > Hi, > > When executing the FTP task, I consistently get a > SocketException: > Connection reset > > I have no problem uploading the files with other FTP > clients using the > same host, username and password

Re: CopyStreamException on FTP task

2004-10-14 Thread Robert Koberg
obert Koberg [mailto:[EMAIL PROTECTED] Sent: Thursday, October 14, 2004 3:31 PM To: Ant Users List Subject: Re: CopyStreamException on FTP task Laconia Data Systems wrote: Robert Looks like a file access permission problem It appears that the FPT user does *not* have mkdir or *create* capability Ca

RE: CopyStreamException on FTP task

2004-10-14 Thread Vinay Vijayan
t;Robert Koberg" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Wednesday, October 13, 2004 2:05 PM > Subject: CopyStreamException on FTP task > > > >>Hi, >> >>When executing the FTP task, I consistently get a SocketException: >>Connec

Re: CopyStreamException on FTP task

2004-10-14 Thread Robert Koberg
To: <[EMAIL PROTECTED]> Sent: Wednesday, October 13, 2004 2:05 PM Subject: CopyStreamException on FTP task Hi, When executing the FTP task, I consistently get a SocketException: Connection reset I have no problem uploading the files with other FTP clients using the same host, username and p

should have been SocketException -> Re: CopyStreamException on FTP task

2004-10-13 Thread Robert Koberg
[EMAIL PROTECTED] wrote: Robert, I had trouble with the ftp task a while ago. In my case however, I could use the scp task instead, which works very well. So if you should try to use the ssh copy (scp) task, your environment permitting of course. Yea :( I do that with my own servers, but the

Re: CopyStreamException on FTP task

2004-10-13 Thread suma . bhat
Robert, I had trouble with the ftp task a while ago. In my case however, I could use the scp task instead, which works very well. So if you should try to use the ssh copy (scp) task, your environment permitting of course. Eg: Thanks, Suma

CopyStreamException on FTP task

2004-10-13 Thread Robert Koberg
Hi, When executing the FTP task, I consistently get a SocketException: Connection reset I have no problem uploading the files with other FTP clients using the same host, username and password. This is going to a windows server (I have sent a request for the logs but I doubt the client knows

AW: FTP Task

2004-09-28 Thread Jan . Materne
What´s wrong with that message? Where is the class? Should be in %userprofile%\.ant\lib\commons-net.jar ... Jan > -Ursprüngliche Nachricht- > Von: Travis Quarterman [mailto:[EMAIL PROTECTED] > Gesendet am: Dienstag, 28. September 2004 14:22 > An: Ant users > Betreff: FTP T

FTP Task

2004-09-28 Thread Travis Quarterman
When I try and execute my Ant task I get the following error: C:\build>ant Buildfile: build.xml ftp: BUILD FAILED java.lang.NoClassDefFoundError: org/apache/commons/net/ftp/FTPClient - To unsubscribe, e-mail: [EMAIL PROTECTED]

  1   2   >