Peter,
Okay, the problem is that the <altrmiproxies/> task is broken. If you look at about line 231 you will see a Class.forName() on one of the interfaces that you are trying to AltRmic. The problem is that this will try to load the class from the same classloader that the task was loaded in. And of course this classloader will not contain the classes because they were not present when the task was defined.
What I would recomend you doing would be either to do one of the following;
1. create a new AntClassLoader from the classpath data and use that to load classes rather than Class.forName
2. Dont ever load classes for interfaces and remove all traces of Class objects and ClassLoader objects from the task and from ProxyGeneratorImpl
I would recomend (2) but either way is good.
Doh! Sorry for wasing your time dude. I did (1) after applying some though to it. and before getting this email. Sorry for wasting your keystrokes dude.
- Paul
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
