Re: not invoking my finder method?

2001-08-13 Thread Catalin Grigoroscuta
In the EJB specificatios is written that the ejbFind... methods are callen only for BMP beans. You can not write your own finder for a CMP. Either make it BMP, or find a way to specify your finder with orion. "Scott Hamilton, (m)+61-404-280 238" wrote: >I have written a CMP that needs a new

Re: Very Strange problem with a static varible on a jsp

2001-07-27 Thread Catalin Grigoroscuta
I see what you mean. So it seems that the only solution to be sure a class is not unloaded is to make your own class loader for that class. Unfortunately, this solution can not be applied to a servlet. Lachezar Dobrev wrote: > > Hello, > > Your objection makes sense, but here is sometrinh from t

Re: Very Strange problem with a static varible on a jsp

2001-07-26 Thread Catalin Grigoroscuta
Hello, Your objection makes sense, but here is sometrinh from the JVM specification from SUN: "2.17.8Unloading of Classes and Interfaces A class or interface may be unloaded if and only if its class loader is unreachable. The bootstrap class loader is always reachable; as a result, system cla

Re: Very Strange problem with a static varible on a jsp

2001-07-26 Thread Catalin Grigoroscuta
You see, your scenario couldn't exactly happen: The garbage collector cleans all class instances (in this case only one instance), but not the class itself. The class loader does not unload the class bytecode, and the static fields do not reside in any of the class instances that are released by t

SSL authentication problem

2001-07-24 Thread Catalin Grigoroscuta
Hello, I seem to have a problem with SSL client authentication. When I use SSL without authentication, everithing works fine, but after I set needs-client-auth="true" attribute, the browser does not receive any page (just displayes an error message, doesn't ask me about any certificate to use),