Re: [JBoss-dev] Auto-resolving dependencies/deployment

2002-02-26 Thread Dain Sundstrom
Cool idea to solve the class loading dependency, but I think we still need explicit dependency declarations. The problem I still see is the need to have some services started (i.e. initialized) before others (e.g. db driver setup before a ejb can deploy). Oh, I just thought of another

RE: [JBoss-dev] Auto-resolving dependencies/deployment

2002-02-26 Thread marc fleury
|Cool idea to solve the class loading dependency, but I think we still |need explicit dependency declarations. The problem I still see is the yes, that is still there, |need to have some services started (i.e. initialized) before others |(e.g. db driver setup before a ejb can deploy). | |Oh,

RE: [JBoss-dev] Auto-resolving dependencies/deployment

2002-02-26 Thread marc fleury
:20 AM |To: marc fleury |Cc: David Jencks; Jason Dillon; Jboss-Development @ Lists . Sourceforge |. Net |Subject: Re: [JBoss-dev] Auto-resolving dependencies/deployment | | |Cool idea to solve the class loading dependency, but I think we still |need explicit dependency declarations. The problem I

RE: [JBoss-dev] Auto-resolving dependencies/deployment

2002-02-26 Thread marc fleury
: Tuesday, February 26, 2002 12:03 PM |To: Dain Sundstrom |Cc: David Jencks; Jason Dillon; Jboss-Development @ Lists . Sourceforge |. Net |Subject: RE: [JBoss-dev] Auto-resolving dependencies/deployment | | | ||Cool idea to solve the class loading dependency, but I think we still ||need explicit

[JBoss-dev] Auto-resolving dependencies/deployment

2002-02-25 Thread marc fleury
ok, still jet lagged... (australia!) So let's imagine that we multi-thread the MainDeployer, each deployment gets a thread. Each time a thread wants a class the ServiceLibraries tries and if it is a CNFE waits. when a class is registered in the SL it notifiesAll threads waiting. voila!

Re: [JBoss-dev] Auto-resolving dependencies/deployment

2002-02-25 Thread Jason Dillon
Seems like a hack. What if the class never gets loaded? Does the client which wants to use it hang forever? If not how long do you wait for a class to load? --jason marc fleury wrote: ok, still jet lagged... (australia!) So let's imagine that we multi-thread the MainDeployer, each

Re: [JBoss-dev] Auto-resolving dependencies/deployment

2002-02-25 Thread David Jencks
On 2002.02.26 00:37:21 -0500 Jason Dillon wrote: Seems like a hack. What if the class never gets loaded? Does the client which wants to use it hang forever? If not how long do you wait for a class to load? I don't think this is a problem. The client is most likely a thread started by

Re: [JBoss-dev] Auto-resolving dependencies/deployment

2002-02-25 Thread Jason Dillon
Frustrated might be a better word... Just keeping things in check. I don't understand all that cl magic anyways. --jason marc fleury wrote: |Seems like a hack. Hee hee, the kid's pissed off. RELAX!!! Go snowboard... with Scott... he is older, trust him... |What if the class never gets

RE: [JBoss-dev] Auto-resolving dependencies/deployment

2002-02-25 Thread marc fleury
|I don't think this is a problem. The client is most likely a thread started |by noticing a new package. Anyway, I think we need anyway a list of |waiting deployments -- partly deployed stuff that is waiting. Now we Yes, I am afraid of the verbosity of it. |have mbeans that can be waiting for

Re: [JBoss-dev] Auto-resolving dependencies/deployment

2002-02-25 Thread Adam Heath
On Tue, 26 Feb 2002, marc fleury wrote: ok, still jet lagged... (australia!) So let's imagine that we multi-thread the MainDeployer, each deployment gets a thread. Each time a thread wants a class the ServiceLibraries tries and if it is a CNFE waits. when a class is registered in the