Re: RMI troubles

1999-04-22 Thread pridemor
) Subject: Re: RMI troubles Nelson Minar wrote: > > >I have been trying to get RMI to work for some time now. > > RMI works fine in Java/Linux - I rely on it heavily with my code, and > it works as well as it could. (There are some interesting issues > relating to

Re: RMI troubles

1999-04-22 Thread Wendell Porter
Nelson Minar wrote: > > >I have been trying to get RMI to work for some time now. > > RMI works fine in Java/Linux - I rely on it heavily with my code, and > it works as well as it could. (There are some interesting issues > relating to socket limits and 50+ simultaneous calls, but that's Linux

Re: RMI troubles

1999-04-22 Thread Nelson Minar
>I have been trying to get RMI to work for some time now. RMI works fine in Java/Linux - I rely on it heavily with my code, and it works as well as it could. (There are some interesting issues relating to socket limits and 50+ simultaneous calls, but that's Linux and RMI's fault, not the Linux po

Re: RMI troubles

1999-04-19 Thread Chris Abbey
Can the registry find the _Stub and interface classes? I'll bet not... if the exception basically says "remote exception ... class not found" then that's your problem. The registry process need the _Stub class, and inorder to load that it needs the interfaces that it implements. As with anything,