Help linking to J2EE API
I'm having a problem linking my Javadoc to the J2EE API. I don't get an error that it cannot find the package-list at the -link I use, but I get warnings about anything contained in the J2EE API not being found. The link for the J2SE API works fine. Here is the batch file I use to run the javadoc for the project. Any ideas?
javadoc ^
-d C:\projectdir\docs\javadocs ^
-sourcepath C:\projectdir\src\java ^
-link http://java.sun.com/j2se/1.5.0/docs/api/ ^
-link http://java.sun.com/j2ee/1.4/docs/api ^
-use ^
com.package1 ^
com.package2^
com.package3

