1<?xml version="1.0" encoding="utf-8"?>
2<!-- JNLP File for JFtp -->
3<jnlp
4  spec="1.0+"
5  codebase="http://localhost"
6  href="jftp.jnlp">
7  <information>
8    <title>JFtp</title>
9    <vendor>http://www.sourceforge.net/projects/j-ftp</vendor>
10    <homepage href="index.html"/>
11    <description>Java FTP client</description>
12    <description kind="short"></description>
13    <icon href="jftp.gif"/>
14    <offline-allowed/>
15  </information>
16  <security>
17      <all-permissions/>
18  </security>
19  <resources>
20    <j2se version="1.6+"/>
21    <jar href="http://localhost/jftp.jar"/>
22  </resources>
23  <application-desc main-class="net.sf.jftp.JFtp">
24<!--
25	Usage:
26		- First the ftp/sftp connection
27		- Second the localDir (optional)
28		- Then as many files as you want
29-->
30<!--
31	<argument>ftp://user:pass@localhost/bin</argument>
32	<argument>sftp://user:pass@localhost/bin</argument>
33-->
34<!--
35	Example:
36
37	<argument>ftp://anonymous:pass@ftp.kernel.org/pub/</argument>
38	<argument>localDir=c:/test/</argument>
39	<argument>README</argument>
40	<argument>index.html</argument>
41	<argument>linux/utils/abi/abi-tools/abi-tools-0.1.tar.gz</argument>
42-->
43  </application-desc>
44</jnlp>
45