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
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
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
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
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),