Specs says following: � The enterprise bean must not attempt to define a class in a package.
Can anyone explain this more. As I don't understand this restriction we generaly define our classes under packages example: ...advice\src\headfirst\AdviceHome.class.
Basically, what this means is that you are not allowed to use the ClassLoader.defineClass() and ClassLoader.definePackage() methods within your bean classes. In other terms, you are not allowed to dynamically create new class definitions at runtime.