CC'ing group...
> i could login to ftp server, btw now iam getting error :
> C:\ant\jakarta-ant-1.3\build.xml:23: could not change
> remote directory: 550
> Requested directory not found .
I am not an FTP expert, so someone else may be able to jump in here. Does
the server understand the [drive]\[path] structure of Windows? Try using
the following instead:
<target >
<ftp server="<machine_name>"
remotedir="/Temp"
userid="<user_id>"
password="<password>"
depends="yes"
>
<fileset dir="." >
<include name="aaa.doc"/>
</fileset>
</ftp>
</target>
-jason
|