Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
5k views

RMI server: rmiregistry or LocateRegistry.createRegistry

For RMI on server-side, do we need to start rmiregistry program, or just call LocateRegistry.createRegistry? If both are possible, what are the advantages and disadvantages?
2
votes
2answers
207 views

rmi registery problems

Dear stack overflow users. I've read a lot of RMI registry problems and tried them to my problem but to no success. So here is my case and I hope someone can at least help me along a bit. I am ...
2
votes
4answers
4k views

running rmi server, classnotfound

Hi I'm trying to run a java application that binds a class to the naming server, but i constantly get a ClassNotFoundException First I start the registry: rmiregistry then from eclipse I try to ...
1
vote
3answers
120 views

How to close rmiregistry running on particular port?

I am working on Java RMI. I am having little issue with running my rmiregistry on port 2028 as I allready used that one to run my test program. I can run my program using other port but I would like ...
1
vote
1answer
57 views

RMI: check client crash

I am programming a simple client/server application using Java-RMI. I would like to know when all clients died, in order to shut the server down. After having done some research on the web, I found ...
1
vote
4answers
221 views

RMI Server Stops?

How do I keep an RMI server running? It currently, just binds and object, then exits.. public class WutServer { public static void main(String[] args) throws RemoteException { Registry registry ...
1
vote
2answers
319 views

RMI Connection error Client Side

In the previous question I had problems getting a rmi service connecting. I got past the security issues only to get an error when attempting to connect the client to this service. I am executing the ...
1
vote
2answers
547 views

RMI connection refused

I am trying to get a rmi connection going. I have ran into many security issues but have been unable to find a way past all this. I execute my jar file with: java ...
1
vote
1answer
1k views

Best practicies for JUnit and RMI Apps, RMI Registry

I'm looking to write a set of system integration tests for an RMI client application. I'd like to start the RMI server in JUnit 3.8.2 and then run those tests. Has anyone done this? I'm using ...
0
votes
1answer
73 views

java.RMI socket creation details?

i've looked at doc, tested, debugged ... but remain stumped. time for stackOverflow! i'll set the stage, then describe my error. Background i have an RMI client/sever setup that works fine when ...
0
votes
1answer
34 views

Setting heap size for rmiregistry

I want to set heap size for RMI registry. Is that similar to java or any other format
0
votes
3answers
321 views

RMI Registry Issue: rmiregistry may cause unintended exceptions when binding with codebase using the “file:” URL scheme

Please see the passage "RMI Registry Issue" of this article for the background on Java Update 1.6.0_29 first. If I understand correctly (I'm german), the update introduces a bug in the rmiregistry ...
0
votes
1answer
99 views

RMI ClassNotFoundException

I have problem with rmiregistry. I'm getting below error: Cannot bind to URL [rmi://........]: javax.naming.NamingException [Root exception is java.rmi.UnexpectedException: undeclared checked ...
0
votes
1answer
177 views

java: rmiregistry setup

So I was using LocateRegistry.createRegistry(), but this has a problem: namely, it runs within the process that calls it, so if I am using more than one JVM, then a crash to the JVM that started the ...
0
votes
2answers
374 views

Server via RMI without registry

I have a service object that can be connected to via RMI. Currently I'm doing this: Server Registry r = LocateRegistry.createRegistry(1234); r.bind("server", ...
0
votes
2answers
467 views

Running an RMIRegistry on a different host to RMIServers

Is this possible? (Assuming Java 6) A contrived/simplistic example to illustrate my point is: I have a well-defined RMI interface that will never change (a single JAR file, no template parameters) ...
0
votes
2answers
1k views

RMI Binding Issue (from Windows RMI Server to Ubuntu RMI Registry)

I have an RMI Server which correctly binds to an RMI Registry when running on localhost (to demonstrate that things are setup correctly). The code which does this is: private void ...
0
votes
2answers
247 views

java rmi exceptions

I'm writing an rmi application. Everything works perfectly fine when i put the all classes in one directory. However, when i try to split the server part and the client part, it raises ...
0
votes
2answers
1k views

Connecting to Websphere rmi server

I'm trying to do a remote call to remote object running as part of a application installed in Websphere. The end solution will be RPG to local java cilent to call remote service that calls the ...