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
YOu cannot pass proxy information to javadoc. Use -linkoffline instead. This option is designed for running javadoc when it has no web connection.-Doug
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