[jira] Assigned: (GERONIMO-3330) plugin schema for reducing redundancy in the catalog

2007-09-02 Thread David Jencks (JIRA)
[ https://issues.apache.org/jira/browse/GERONIMO-3330?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] David Jencks reassigned GERONIMO-3330: -- Assignee: David Jencks (was: Paul McMahan) plugin schema for reducing redundancy

[jira] Created: (GERONIMO-3453) Generate geronimo-plugin.xml files with the car-maven-plugin

2007-09-02 Thread David Jencks (JIRA)
Generate geronimo-plugin.xml files with the car-maven-plugin Key: GERONIMO-3453 URL: https://issues.apache.org/jira/browse/GERONIMO-3453 Project: Geronimo Issue Type: New Feature

Re: [Discuss] What next?

2007-09-02 Thread Gianny Damour
On 31/08/2007, at 10:12 AM, David Jencks wrote: Clustering IIUC we have a lot of partial clustering solutions. For instance there's WADI, native tomcat clustering, a terracotta integration, and IIUC Jeff has been working on a clustering solution (my apologies if I left any out). I'd

Classloader clashing and plugins

2007-09-02 Thread Jeff Genender
Hi, I just finished the server plugin for Terracotta which can be found here: http://svn.terracotta.org/svn/tc/geronimo-plugin/trunk/geronimo-2.0/ When I install the plugin, everything is fine. I can start/stop Terracotta, and works as expected. However when I stop Geronimo and restart it and

Re: [Discuss] What next?

2007-09-02 Thread Karl Pauls
Getting 2.0.1 out the door was a great step and now might be a good time to start discussing where we want geronimo to head next. Here are some ideas I've had or think are important. If I were to try to write actual sentences about all of this I'd probably never send the email so this

Re: Classloader clashing and plugins

2007-09-02 Thread David Jencks
I would guess that something has included a jasper jar as a dependency (either by including it in a war lib or with a dependency on the jasper jar in the geronimo repo) rather than using a dependency on the jasper config. If you can debug this CCE and find out what classloader the jasper

Re: [DISCUSS] to plugin or not to plugin, that is the question

2007-09-02 Thread Karl Pauls
On 8/30/07, Joe Bohn [EMAIL PROTECTED] wrote: Hey Paul ... thanks for getting these discussions started. I had intended to do the same (though perhaps not quite as thorough as you have done). Paul McMahan wrote: We've been excited about and doing lots of interesting things with plugins

Re: [Discuss] What next?

2007-09-02 Thread Jacek Laskowski
On 9/2/07, Karl Pauls [EMAIL PROTECTED] wrote: but to be honest I'd need a lot of support to get it done (mentor?). As I said previously on this list, I'd be willing to help. Alas, my time is limited as well but I can provide help and insides where necessary. Hi Karl, Oh, I see a mentor

Re: [DISCUSS] to plugin or not to plugin, that is the question

2007-09-02 Thread Karl Pauls
On 8/30/07, Prasad Kashyap [EMAIL PROTECTED] wrote: On 8/30/07, Paul McMahan [EMAIL PROTECTED] wrote: We've been excited about and doing lots of interesting things with plugins lately. From a big picture perspective I'm wondering where we are headed. Some of my questions are: - So do

Re: [Discuss] What next?

2007-09-02 Thread Karl Pauls
On 9/2/07, Jacek Laskowski [EMAIL PROTECTED] wrote: On 9/2/07, Karl Pauls [EMAIL PROTECTED] wrote: but to be honest I'd need a lot of support to get it done (mentor?). As I said previously on this list, I'd be willing to help. Alas, my time is limited as well but I can provide help and

Thread Pool Deadlock

2007-09-02 Thread Manu George
Hi, I was investigating why setting the resourceAdapter poolsize to 1 and using it in an Mdb for sequential message processing was failing and found that the org.apache.geronimo.pool.ThreadPool class in geronimo contains a ThreadPoolExecutor instance created with the constructor new

Re: [DISCUSS] to plugin or not to plugin, that is the question

2007-09-02 Thread David Jencks
On Sep 2, 2007, at 8:36 AM, Karl Pauls wrote: On 8/30/07, Prasad Kashyap [EMAIL PROTECTED] wrote: On 8/30/07, Paul McMahan [EMAIL PROTECTED] wrote: We've been excited about and doing lots of interesting things with plugins lately. From a big picture perspective I'm wondering where we are

Re: [DISCUSS] to plugin or not to plugin, that is the question

2007-09-02 Thread Karl Pauls
On 9/2/07, David Jencks [EMAIL PROTECTED] wrote: On Sep 2, 2007, at 8:36 AM, Karl Pauls wrote: On 8/30/07, Prasad Kashyap [EMAIL PROTECTED] wrote: On 8/30/07, Paul McMahan [EMAIL PROTECTED] wrote: We've been excited about and doing lots of interesting things with plugins lately. From a

Re: Thread Pool Deadlock

2007-09-02 Thread David Jencks
I don't think the current implementation is actually wrong under normal use (where you just configure the gbean in xml and don't change its settings at runtime). I think it would be better to set up the executor in its constructor (keeping the waitWhenBlocked as a constructor parameter).

Re: Trouble with 2.0.1 main pom and building anything a G dependency

2007-09-02 Thread Vamsavardhana Reddy
I thought I would initiate this discussion on the dependency issue I have run into with projects dependent on G 2.0.1. But, then I had to go offline for a few days. Now that someone else has run into the same problem, I guess it needs to be addressed for good. On 8/31/07, Jeff Genender [EMAIL

Re: [DISCUSS] to plugin or not to plugin, that is the question

2007-09-02 Thread Karl Pauls
On 9/2/07, Karl Pauls [EMAIL PROTECTED] wrote: On 9/2/07, David Jencks [EMAIL PROTECTED] wrote: On Sep 2, 2007, at 8:36 AM, Karl Pauls wrote: On 8/30/07, Prasad Kashyap [EMAIL PROTECTED] wrote: On 8/30/07, Paul McMahan [EMAIL PROTECTED] wrote: We've been excited about and doing

Re: Thread Pool Deadlock

2007-09-02 Thread Manu George
Hi David, Thanks for the explanation. In case of waitWhenBlocked=true what will be the expected behaviour if I set the poolsize as 1? Currently on debugging I see that the calling thread gets parked and then never gets resumed if already 1 thread is executing. Any idea why would this be

Re: Classloader clashing and plugins

2007-09-02 Thread Jeff Genender
Welp...that did it ;-) I put a dep on the jasper config and the console works...yay! As always, thanks! Also...this is probably yet another plugin anomoly we need to document at some point ;-) Jeff David Jencks wrote: I would guess that something has included a jasper jar as a dependency

Re: Thread Pool Deadlock

2007-09-02 Thread David Jencks
On Sep 2, 2007, at 11:23 AM, Manu George wrote: Hi David, Thanks for the explanation. In case of waitWhenBlocked=true what will be the expected behaviour if I set the poolsize as 1? Currently on debugging I see that the calling thread gets parked and then never gets resumed if

Re: Classloader clashing and plugins

2007-09-02 Thread David Jencks
On Sep 2, 2007, at 1:52 PM, Jeff Genender wrote: Welp...that did it ;-) I put a dep on the jasper config and the console works...yay! As always, thanks! Also...this is probably yet another plugin anomoly we need to document at some point ;-) In general depending on a jar that might be

Re: Classloader clashing and plugins

2007-09-02 Thread Jeff Genender
David Jencks wrote: - have a classloader per jar (an idea Dain suggested a long time ago, but it requires accurate jar-jar dependency information, better than is in maven poms) This one was actually my expectation with the plugin. I hoped that my plugin had its own classloader...but I

Changing ISPs

2007-09-02 Thread Matt Hogstrom
I'm changing ISPs this weekend so e-mail may be spotty. Justa heads up.

Re: Thread Pool Deadlock

2007-09-02 Thread Manu George
Hi David, Comments Inline On 9/3/07, David Jencks [EMAIL PROTECTED] wrote: On Sep 2, 2007, at 11:23 AM, Manu George wrote: Hi David, Thanks for the explanation. In case of waitWhenBlocked=true what will be the expected behaviour if I set the poolsize as 1?