Re: I got some problems when using use activation mechanism of RMI



Zheng Da wrote:

public class ProductImpl extends UnicastRemoteObject implements Product

You must either change this to 'extends Activatable implements Product', in which case you should replace the following quoted line by super(id, 0); or else restore the following quoted line as it is:

//Activatable.exportObject(this , id , 0);

There may be other problems.
.