Re: [kaffe] loadClass() vs. loadClass()

2003-09-20 Thread Dalibor Topic
Helmer Krämer wrote: On Fri, 19 Sep 2003 09:12:44 -0600 (MDT) Timothy Stack [EMAIL PROTECTED] wrote: Hi, I gave JBoss another try recently and finally got to a point where I really don't know what to do. As you will know, java.lang.ClassLoader contains two different loadClass methods, one that

[kaffe] loadClass() vs. loadClass()

2003-09-19 Thread Helmer Krämer
Hi, I gave JBoss another try recently and finally got to a point where I really don't know what to do. As you will know, java.lang.ClassLoader contains two different loadClass methods, one that takes a String and a boolean as its parameters and one that takes only a String. Whenever kaffe has

Re: [kaffe] loadClass() vs. loadClass()

2003-09-19 Thread Timothy Stack
Hi, I gave JBoss another try recently and finally got to a point where I really don't know what to do. As you will know, java.lang.ClassLoader contains two different loadClass methods, one that takes a String and a boolean as its parameters and one that takes only a String. Whenever

Re: [kaffe] loadClass() vs. loadClass()

2003-09-19 Thread Mark Wielaard
Hi, On Fri, 2003-09-19 at 16:23, Helmer Krämer wrote: Whenever kaffe has to load some class using a user defined loader, it invokes the two parameter form of loadClass. [...] The simple and quick fix would be to modify kaffe so it calls the loadClass(String) method of a user defined class

Re: [kaffe] loadClass() vs. loadClass()

2003-09-19 Thread Helmer Krämer
On Fri, 19 Sep 2003 09:12:44 -0600 (MDT) Timothy Stack [EMAIL PROTECTED] wrote: Hi, I gave JBoss another try recently and finally got to a point where I really don't know what to do. As you will know, java.lang.ClassLoader contains two different loadClass methods, one that takes a

Re: [kaffe] loadClass() vs. loadClass()

2003-09-19 Thread Helmer Krämer
On Fri, 19 Sep 2003 17:20:05 +0200 Mark Wielaard [EMAIL PROTECTED] wrote: Hi, On Fri, 2003-09-19 at 16:23, Helmer Krämer wrote: Whenever kaffe has to load some class using a user defined loader, it invokes the two parameter form of loadClass. [...] The simple and quick fix would be

Re: [kaffe] loadClass() vs. loadClass()

2003-09-19 Thread Timothy Stack
Could this probably help with the problem about loading classes during verification, too? One of the problems was that we thought we couldn't predict the state of a class that's returned by a user class loader, but this paragraph seems to define this, doesn't it ? I don't think so, the root