Re: Help with ftp

2006-04-12 Thread ilango
Hi Rakesh I would very much appreciate it if you could post the configuration details. And could you also explan the scenario under which you deployed this ftp. Did you use it as part of some Java application? For example I have an application running in a box which I call the colocator. This app

Re: Help with ftp

2006-04-12 Thread ilango
Hi Rakesh I would very much appreciate it if you could post the configuration details. thanks a lot Rakesh Patel <[EMAIL PROTECTED]> wrote: Hi guys, you are not going to believe this! At the moment my war file is 5mb that i wish to ftp to the server. Using the recommended library (Common-net)

Re: Help with ftp

2006-04-12 Thread Rakesh Patel
Hi guys, you are not going to believe this! At the moment my war file is 5mb that i wish to ftp to the server. Using the recommended library (Common-net) the upload took almost a minute. This is quite poor. My colleague then told me he can transfer the file using Absolute FTP (a free windows

Re: Help with ftp

2006-04-12 Thread Michael Giroux
FWIW, I had very similar problems using the Eclipse FTP plugin which also uses commons-net. Looking at the traces I discovered that the package seems to do a lot of extra commands to set working directory, and list the directory. You might try watching the traffic using a TCP Monitor (there is on

RE: Help with ftp

2006-04-12 Thread Res Pons
I've had this exact problem with Ant's FTP, SCP, and SSH; they're agonizingly slower. So I spawn a new shell or use Exec to the system, much faster. Also I used to Ant-FTP from my Windows server to our Linux server which took a long time. So instead, I set up an FTP client through IIS on the

RE: Help with ftp

2006-04-12 Thread Guttula, Mohan
task working without this jar (commons-net-1.4.1.jar) form the above links. Thanks, Mohan -Original Message- From: ilango [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 12, 2006 12:54 PM To: Ant Users List Cc: [EMAIL PROTECTED] Subject: Re: Help with ftp Hi Rakesh Could you tell me what

RE: Help with ftp

2006-04-12 Thread Srikrishna_Parthasarathy
Can you post your ANT_OPTS arg variable ? -Original Message- From: ilango [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 12, 2006 12:54 PM To: Ant Users List Cc: [EMAIL PROTECTED] Subject: Re: Help with ftp Hi Rakesh Could you tell me what this common-net library is? Did you refer to

Re: Help with ftp

2006-04-12 Thread ilango
Hi Rakesh Could you tell me what this common-net library is? Did you refer to some sample code for FTP? Right now, I am trying to do the same ilango Rakesh Patel <[EMAIL PROTECTED]> wrote: Hi, i am writing a ftp task using the common-net library as recommended. It does work but i am surpised