sundiveken
Programmer
I'm using ant 1.6 ftp task and I am able to get files and get a listing from a linux box (either from a linux box or from an HPUX box) but when I try to use the ftp task to attach to a HPUX box, I get no files listed or retrevied. I also get a sucess back from ant. I see that it's hitting the HP box, but just not bringing back the list.
I am sure that the remote directories have files to get and they are not symlinks.
Here is they build.xml file I'm using.
Any help is appreciated.
Ken
<project name="testftp" default="ftp" basedir=".">
<target name="ftp">
<ftp server="192.168.1.1"
remotedir="/home/myhome"
listing="mylisting"
userid="myid"
password="mypassword"
action="list"
verbose="yes">
<fileset>
<include name="**"/>
</fileset>
</ftp>
</target>
</project>
I am sure that the remote directories have files to get and they are not symlinks.
Here is they build.xml file I'm using.
Any help is appreciated.
Ken
<project name="testftp" default="ftp" basedir=".">
<target name="ftp">
<ftp server="192.168.1.1"
remotedir="/home/myhome"
listing="mylisting"
userid="myid"
password="mypassword"
action="list"
verbose="yes">
<fileset>
<include name="**"/>
</fileset>
</ftp>
</target>
</project>