posted 18 years ago
If you look at the javax.ejb package, you'll see that it consist just of interfaces and exceptions; there are no regular classes. The implementations of those interfaces are provided by the EJB server. If you have access to the source of the server, you can check it for classes that implement those interfaces, but most likely you won't get much of value out of those.
Why are you interested in the source, that is to say, what do you hope to get out of it?
When you say "rt.jar", do you really mean "src.zip"? rt.jar contains classes needed at runtime by the JVM, but no source code, while src.zip contains the source to the class libraries.
[ July 20, 2006: Message edited by: Ulf Dittmer ]