Please be more specific. What kind of problem? From http://jakarta.apache.org/ant/manual/index.html, (optional tasks, FTP) we can see you need an external library: "Note: This task depends on external libraries not included in the Ant distribution. See Library Dependencies for more information" Do you have the library installed?
Does the userid /password combination have rights to copy to or from the directory you are trying to use? What os's are involved? Here is my task to make a directory and ftp to it. It is very similar to what is in the docs. <target name="doFTP" depends="property_file" > <ftp action="mkdir" server="${ftp.server}" userid="${ftp.user}" password="${ftp.password}" remotedir="${ftp.target}/build_${build.number}" /> <ftp server="${ftp.server}" userid="${ftp.user}" password="${ftp.password}" remotedir="${ftp.target}/build_${build.number}"> <fileset dir="${em.dist}"> <include name="expensemap-release.${build.number}.tar"/> </fileset> </ftp> </target> Regards Richard At 05:47 PM 7/11/2002 +0530, Nitin_Baraskar wrote: >Hi All, >I have a problem in getting data from FTP server to local directory.Can any >one help me out & mail me sample code snippets. > >Thanks >Nitin > >Nitin N. Baraskar >Senior Software Engineer >Satyam Computer Services Ltd. >271-A, Mann Sarovar,Teynampet, >Anna Salai,Chennai-600 018 >Phone NO : 4353221 Extn. : 3703 > >************************************************************************** >This email (including any attachments) is intended for the sole use of the >intended recipient/s and may contain material that is CONFIDENTIAL AND >PRIVATE COMPANY INFORMATION. Any review or reliance by others or copying or >distribution or forwarding of any or all of the contents in this message is >STRICTLY PROHIBITED. If you are not the intended recipient, please contact >the sender by email and delete all copies; your cooperation in this regard >is appreciated. >************************************************************************** > >-- >To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> >For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>