RE: [JBoss-user] Undeployment problem (still)

2001-07-01 Thread Jonas Bergström
> you definately want to go with a single .ear for your application in > production and final testing. That should make for easier management and > will also enable optimized calls (no copying of method parameters). OK, so the option only works for beans within the same .ear? / Jonas __

Re: [JBoss-user] Undeployment problem (still)

2001-06-29 Thread danch (Dan Christopherson)
Jonas Bergström wrote: >>Since you have a reference to objects that have a reference to the old >>versions of the classes, the old versions of the classes can't be >>discarded. >> > I don't quite understand. Method invocations through the remote references > goes through the container, right, and

RE: [JBoss-user] Undeployment problem (still)

2001-06-29 Thread Jonas Bergström
nal Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of danch (Dan > Christopherson) > Sent: Friday, June 29, 2001 5:48 PM > To: [EMAIL PROTECTED] > Subject: Re: [JBoss-user] Undeployment problem (still) > > > Since you have a reference to objects

Re: [JBoss-user] Undeployment problem (still)

2001-06-29 Thread danch (Dan Christopherson)
Since you have a reference to objects that have a reference to the old versions of the classes, the old versions of the classes can't be discarded. Have you tried this with a full .ear deployment? (from below I assume that you're deploying the servlet and EJBs separately) .ear deployment shou

[JBoss-user] Undeployment problem (still)

2001-06-29 Thread Jonas Bergström
Hi folks, I posted a message a couple of months ago about hot undeployment. I reveived two answers, neither work, so I'm trying again... My servlet (Tomcat in-process) has a reference to an EJB. After hot undeploying the EJB, the servlet is still able to invoke methods on the EJB. Why? The tmp-