
We have a big rmi project, there are a lot of classes (rmi, classes). We have 2 pc's, using cvs. The first pc use 1.3.0 plugin the other 1.5.0 plugin.
(eclipse version (2.1.0)), JDK 1.3.1. The problem is with this class:
public class ClassImpl extends UnicastRemoteObject implements Class1,Class2 {
...
private MantenimientoExp1 exp1;
private MantenimientoExp2 exp2;
....
private MantenimientoExp69 exp69;
...
public void start() throws Exception{
exp1= new MantenimientoExp1 (conection,tracer);
...
exp69= new MantenimientoExp69 (conection,tracer);
}
... more methods
//MantenimientoExp1 (4 methods)
public QueryResult showExp1Query() throws java.rmi.RemoteException, SQLException, Exc{
return exp1.howExp1Query();
}
// 3 more methods
....
//MantenimientoExp69 (4 methods)
public QueryResult showExp1Query() throws java.rmi.RemoteException, SQLException, Exc{
return exp69.howExp1Query();
}
// 3 more methods
}
With around fifty classes (MantenimientoExp) compile and work fine all version.
With around seventy classes (MantenimientoExp) compile and work fine whith 1.5.0 rmi version. The 1.3.0 and 1.4.0 compile ok, but don't work.
why 1.3.0 and 1.4.0 don't working? there is any limitation?
Thanks. (Sorry for my english :-\)