i think from unix to unix server file transfer can take place if you try following command:
scp
loginid@server_address:/test/folder1/file.txt .
loginid=your login id to remote server
server_address=e.g 172.16.9.122
and after that give full path ....to where u want to copy
---------- Post updated at 06:01 AM ---------- Previous update was at 05:55 AM ----------
i don't have any program in unix for file transfer to windows but i can help with some thing else...hopefully it will help.
just create a batch file in windows...like following
test.bat
echo. starting ftp..
ftp -s:test.txt 172.16.9.122 >ftplog.log
pause.
-----------------------------
after that create test.txt like following
rohit
rohit
cd /itmshome2/etvib/INCOMETAX/
prompt
mget *.csv
bye
------------------
i hope this will work for u...