You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cocoon.apache.org by Joshua Van Buren <jv...@vanteon.com> on 2000/05/02 01:09:49 UTC

Integration with BEA WebLogic application server


I am currently integrating Cocoon 1.7.2 with Weblogic 5.1 on Windows 2k.  I
am running into a couple of problems with ClassCircularityError exceptions.
It seems to be breaking at the cl.ClassLoader call in
cocoon.framework.manager.java

Has anyone seen this before?

Thanks,

Josh


Re: Integration with BEA WebLogic application server

Posted by Niclas Hedhman <ni...@localbar.com>.
Joshua Van Buren wrote:

> I am currently integrating Cocoon 1.7.2 with Weblogic 5.1 on Windows 2k.  I
> am running into a couple of problems with ClassCircularityError exceptions.
> It seems to be breaking at the cl.ClassLoader call in
> cocoon.framework.manager.java
>
> Has anyone seen this before?

public class A extends B
{}

public class B extends A
{}

will give you this result. That however, should be captured by the compiler,
and not in runtime unless the class hierarchy has changed between compiles of
different classes. I would believe you have naming interference between
classes, and/or versioning problems.

Niclas