javadoc -link and proxy server

When I use javadoc command with -link option, I get "Error fetching url : ..."We use a proxy server, how do I pass the proxy information to the javadoc tool?murali
[191 byte] By [myparu] at [2007-9-26 6:33:21]
# 1
YOu cannot pass proxy information to javadoc. Use -linkoffline instead. This option is designed for running javadoc when it has no web connection.-Doug
dkramer at 2007-7-1 15:44:55 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 2
It is possible to pass proxy information to javadoc. Try:javadoc -J-DproxyHost=myproxyhost.com -J-DproxyPort=8080 -link http://java.sun.com/products/jdk/1.3/docs/api *.java
PaulB3 at 2007-7-1 15:44:55 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 3
thanks a lot, that did the trick and should be added to the javadoc FAQ IMHO :-)
SkyScraper at 2007-7-1 15:44:55 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...