EJB Caching

2002-05-01 Thread Derek Akers
How do I remove a particular EJB instance (SLSB) from orion's EJB cache? I acquire a handle to the EJB through: Context context = new InitialContext(); Object boundObject = context.lookup(MyEJB); MyEJBHome myEjbh = (MyEJBHome)PortableRemoteObject.narrow(boundObject,MyEJBHome.class); MyEJBRemote

Re: EJB Caching

2002-04-13 Thread Curt Smith
Assuming this Q is regarding a stateless session bean, does Orion's deployer/bean validator allow bean's with static attributes to be deployed? A lightly loaded system that did not pool bean instances after each method call and only occassionally had two+ instances active at the same time

EJB Caching

2002-04-12 Thread Derek Akers
Title: Message Our application running on Orion uses a stateless EJB instance to invoke threads that execute application logic. We are having a problem with these EJBs chaching themselves and returning values frompreviously executed calls rather than executing the thread desired by the