Re: Serializable visad-classes

> That should be work so far, thanks Bill. But there seems to occure one more
> problem. I don't have a RemoteDisplay on the receiving JVM. So I need to
> have a DataReference instead of a RemoteDataReference because I see no way
> to add a RemoteDataReference to a local Display. I tried to construct a
> local DataReference via
> . . .

Try:

  DisplayImpl display = new ...
  RemoteDisplayImpl rdisplay = new RemoteDisplayImpl(display);
  rdisplay.addReference(remote_data_refernece);

Good luck, Bill