RMI Troubles

1999-05-25 Thread Brandon Anderson
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:

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

RMI troubles

1999-04-19 Thread Wendell Porter
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

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,