Home

History Key

  • New content
  • Removed content

Recent Versions

Choose two versions to compare, or click the link to view it.

  1. 2. almost 3 years by esarjeant
  2. 1. almost 3 years by esarjeant
 

EditThis is a Java FTP client library based on RFC 959 and is intended to provide essential ftp support. Passive mode is implemented as are a number of basic operations (logon, logoff, get and put). The purpose of this wikilibrary is to add links to other resources that you use.  We also suggest adding contact information, information about setting upprovide a developmentsupported environment,ftp guidelinesclient library for your developmentJava process,application. instructionsWhile Sun provides a URL handler for runningFTP, builds,it requirements,is undocumented and documentation. has Removetraditionally thesebeen instructions.only loosely supported.

Suggested

Here nextis steps:

  • Goan example showing how a file test.bin could be uploaded to thea Adminremote tab,site:

    FtpClient selectftp Tools, and add or remove tools (the feature tabs on top of this workspace)
  • Go to the Admin tab, select General, and select the default landing tab
  • Go to the Source/SVN tab and get the Subversion URL of your= new repository. FtpClient("xxx");

    ftp.logon("anonymous", Check out this repository to your local computer using your Assembla username and password.  Add files to the checked-out folder and commit, or import an existing repository on the Import/Export subtab.
  • If you are running an agile process with iterations or releases, edit the first milestone on the Milestones tab to represent the next iteration or release.  Put tickets (tasks, features, issues) into the ticket list and tag them with milestones.
  • Edit your email alert settings by going to the Stream page and selecting the Settings bar at the top.
  • Add team members on the Team tab.  They will use an Assembla username and password to log in to this workspace, and to the Subversion repository.
"user@foo.com");
ftp.passive();

ftp.cd("/tmp");

ftp.binary();
ftp.put("test.bin");

ftp.quit();