Re: [cp-patches] FYI: Implemented missing RMI method

2005-10-01 Thread Meskauskas Audrius
Since jdk 1.3 both CORBA and RMI-IIOP should be able to load and run remote classes from the URL's that can be automatically included into IIOP messages. This allows to transfer the algorithm to remote side rather than just transferring the data. Potentially very powerful feature, but such code

Re: [cp-patches] FYI: Implemented missing RMI method

2005-09-29 Thread Thomas Fitzsimmons
On Thu, 2005-09-29 at 09:19 +0200, Meskauskas Audrius wrote: > Oh, this is great! In future that thing will also load classes for > javax.rmi that I am finishing in days. Finishing to the 1.4 level or to the 1.5 level? In general, I think we should be aiming for full 1.5 API coverage now, even i

Re: [cp-patches] FYI: Implemented missing RMI method

2005-09-29 Thread Meskauskas Audrius
Oh, this is great! In future that thing will also load classes for javax.rmi that I am finishing in days. Roman Kennke wrote: I reworked java.rmi.server.RMIClassLoader a little, so that it now uses the java.rmi.server.RMIClassLoaderSpi interface. I moved the actual implementation code to gnu.j

[cp-patches] FYI: Implemented missing RMI method

2005-09-28 Thread Roman Kennke
I reworked java.rmi.server.RMIClassLoader a little, so that it now uses the java.rmi.server.RMIClassLoaderSpi interface. I moved the actual implementation code to gnu.java.rmi.server.RMIClassLoaderImpl. And yes, I added the last missing method for JDK1.1 binary compatibility to java.rmi.server.RMIC