If you need proxy support please use the -D option to
set the appropriate system properties when executing java.
The system properties you need are listed below:
---
http.proxyHost (default: <none>)
http.proxyPort (default: 80 if http.proxyHost specified)
http.nonProxyHosts (default: <none>
ftp.proxyHost (default: <none>)
ftp.proxyPort (default: 80 if ftp.proxyHost specified)
ftp.nonProxyHosts (default: <none>)
---
http.proxyHost and http.proxyPort indicate the proxy server
and port that the http protocol handler will use.
http.nonProxyHosts indicates the hosts which should be
connected too directly and not through the proxy
server. The
value can be a list of hosts, each seperated by a |, and in
addition a wildcard character (*) can be used for matching.
For example: -Dhttp.nonProxyHosts="*.foo.com|localhost".
ftp.proxyHost and ftp.proxyPort indicate the proxy
server and port that the ftp protocol handler will use.
ftp.nonProxyHosts is similiar to http.nonProxyHosts and
indicates the hosts that should be connected too directly
and not through the proxy server.
---
http://java.sun.com/j2se/1.4.1/docs/guide/net/properties.html