What about making a flag in the EJB like below ??
-----------------------------
boolean check = true;
... ejbLoad(){
if(check){
// Do something for loading
}else{
// Don't load
}
}
...( ){
...
check = false;
...
}
-----------------------------
Of course, It's not that easy like above, but I guess you can modify it to
work with your EJB.
You really have to be careful with that kinda flag. Otherwise, your EJB
never load...
tony
==========================================================================To
unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff EJB-INTEREST". For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".