I've got a little RMI Server setup on a Redhat 5.2 box that completely
quit working with java 1.2. Everything seems to startup on the server
side, but when I attempt to connect to it from a remote host I get the
following error:
Connection refused to host: [127.0.0.1:6299]; nested exception is:
)
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
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
>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
Hi everyone,
I have been trying to get RMI to work for some time now. I am just
using the simple example from Sun, HelloImpl, but I can't get the full
process to work.
I can run the server class, and it binds with the registry just fine.
When I try to connect with the client, it tells me that
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,