Richard,

I have never used j2ee.jar in my weblogic work. All the classes you need
should be in the weblogic directory.

From: "Richard Wilkinson" <[EMAIL PROTECTED]>
>
> I get a load of 'Could not fully load class ??? for super class check'
>
> [ejbjar] Could not fully load class com.protek.sp.racks.RackHome for
super
> class check.
>
> Is this a bug in Ant 1.3 or am I being studid?
>

Firstly, this is a warning. When Ant constructs an ejb-jar it attempts to
locate the super interfaces / super classes of interfaces/classes included
in the jar. This is part of the requirements for the ejb-jar spec. The jars
should be relatively self-contained. To do that, Ant loads your class using
a classloader and "discovers" the super interfaces. If it can't load your
class with the classloader, it will emit that message and then just include
the class as is without any of its super classes/super interfaces. The
class will fail to load if a class it is dependent upon is not available to
the classloader.

Conor


Reply via email to