how to client

2008-10-14 Thread micah
Are there any examples on writing a client to to use the server? thanks, micah

Re: how to client

2008-10-14 Thread David Latorre
No, you'd use a regular FTP client to connect to the server.There're several Java implementations of a FtpClient you can use. The simplest case: if i'm not wrong you can use a 'ftp://' string in order to create an URL with Java standard classes which will effectively connect you to the specified

Re: how to client

2008-10-14 Thread David Latorre
2008/10/14 Andrea Francia [EMAIL PROTECTED] 2008/10/14 David Latorre [EMAIL PROTECTED]: No, you'd use a regular FTP client to connect to the server.There're several Java implementations of a FtpClient you can use. The simplest case: if i'm not wrong you can use a 'ftp://' string in order

Re: how to client

2008-10-14 Thread Nick Vujasin
Something that I am using at work with great success is an ftp client called enterprisedt. I replaced commons-net with this new free ftp for java client and it is working great, check it out. http://www.enterprisedt.com/ Thanks, Nick Vujasin - Original Message From: David

Any simple way to make Spring auto-call start() on FtpServer when it is registered using the server tags?

2008-10-14 Thread Sisk, Brad
Can anyone recommend a simple way to force Spring to automatically call FTPServer.start() when Spring gets an instance of it through BeanFactory? Keep in mind, FTPServer is not registered with Spring through the applicationContext, but rather using the server /server element configuration file.

Re: how to client

2008-10-14 Thread Andrea Francia
2008/10/14 David Latorre [EMAIL PROTECTED]: No, you'd use a regular FTP client to connect to the server.There're several Java implementations of a FtpClient you can use. The simplest case: if i'm not wrong you can use a 'ftp://' string in order to create an URL with Java standard classes which