Geronimo Custom Plugin Class loading Issues

2006-11-27 Thread Lasantha Ranaweera
Hi All, I want to write a custom GBean for the Geronimo 1.1. Basically I am following the Advanced Plugin Sample in the G user documentation. My custom plug in pretty much the same as Quartz plug in in the sample. It has a deployer part and manager part. In my plugin I want to use xml beans

Re: Geronimo Custom Plugin Class loading Issues

2006-11-27 Thread Lasantha Ranaweera
Lasantha Ranaweera wrote: Hi All, I want to write a custom GBean for the Geronimo 1.1. Basically I am following the Advanced Plugin Sample in the G user documentation. My custom plug in pretty much the same as Quartz plug in in the sample. It has a deployer part and manager part. In my

Re: Geronimo Custom Plugin Class loading Issues

2006-11-27 Thread David Jencks
On Nov 27, 2006, at 12:17 AM, Lasantha Ranaweera wrote: Lasantha Ranaweera wrote: Hi All, I want to write a custom GBean for the Geronimo 1.1. Basically I am following the Advanced Plugin Sample in the G user documentation. My custom plug in pretty much the same as Quartz plug in in

Re: Geronimo Custom Plugin Class loading Issues

2006-11-27 Thread Kanchana Welagedara
Hi Lasantha For an instance if say that your geronimo-service.xml looks like this and which is in the some directory. You may do this by Adding your dependencies to the plan after the last /dependency tag and before the first gbean tag dependency

Re: Geronimo Custom Plugin Class loading Issues

2006-11-27 Thread Lasantha Ranaweera
Kanchana, The problem is xml beans is a JAR used by Geronimo already (I think with Web container). I wanted to use some other version of it rather than the existing one in the Geronimo version with my custom GBean. There is no such problem with Quartz. So the problem is lot easier with it. Hope

Re: Geronimo Custom Plugin Class loading Issues

2006-11-27 Thread Aaron Mulder
Unfortunately, XMLBeans is used pretty extensively by the Geronimo deployment system, so it's not just a matter of avoiding using the web container's class loader. More particularly, if your plugin will include a deployer component, you're working directly with the Geronimo deployment system

Re: Geronimo Custom Plugin Class loading Issues

2006-11-27 Thread Lasantha Ranaweera
Hi David, Surely you can ask that question and I think you are the ideal person for me to get some help on this. Following is root cause of this problem and it's current situation. ;) Hope you remember there was an email send by you to the G Lists and Axis 2 lists regarding the JAXWS integration

Re: Geronimo Custom Plugin Class loading Issues

2006-11-27 Thread Lasantha Ranaweera
Hi Aron, Yes you are correct in your description. I explained my problem to the David Jencks exactly. May be you can help me on that matter too since you have more experience in the GBeans than me. Big thanks for Geronimo plugins project and your very descriptive GBeans chapter on your book.