Re: [T5.2] Classloader problem with a service

2010-09-10 Thread Howard Lewis Ship
If you could send me the source code (even privately) of those two classes, I'd be interested to see. I've been working on the code for live service reloading, and though I don't think I can hit every case perfectly, I'd like to hit all the likely ones, such as whatever you've hit. The class loade

RE: [T5.2] Classloader problem with a service

2010-09-10 Thread Blower, Andy
Thank you Jim - that did the trick. > -Original Message- > From: Jim O'Callaghan [mailto:jc1000...@yahoo.co.uk] > Sent: 10 September 2010 14:45 > To: 'Tapestry users' > Subject: RE: [T5.2] Classloader problem with a service > > Andy, > > I hav

RE: [T5.2] Classloader problem with a service

2010-09-10 Thread Jim O'Callaghan
Andy, I haven't tried this but apparently: public static void bind(ServiceBinder binder) { binder.bind(MyInterface.class, MyImplementation.class).preventReloading(); } ... should work - referenced here: http://tapestry.markmail.org/message/honjlvrqljdjparp?q=service+reload+disab le Reg