rmi Questions
2
Solved
I am using SubList function on an object of type List. The problem is that I am using RMI and because the java.util.ArrayList$SubList is implemented by a non-serializable class I got the Exception ...
Aceydeucy asked 25/10, 2014 at 23:11
4
I am confused between these two nuances:
Is EJB itself middleware, or is there any middleware used in the deployment of EJB?
Same goes for RMI- is RMI itself middleware or is middleware used in R...
Fowkes asked 27/4, 2014 at 8:10
2
Solved
I'm writing a Java client-server application that uses RMI for communication. My problem is that for some reason, the RMI server just shuts down with no exception or error, on its own. I'm using Ne...
Precocious asked 16/9, 2014 at 15:37
3
I have a small Java SE application, it´s practically a fat client sitting on top of a database. To further my Java skills, I decided to make a client-server application out of it. The server applic...
2
I have a project on my distributed system course and we have to use the java.rmi.* on our project and I knew that android doesn't provide this library because of the dalvik VM problems. So I'm just...
3
Solved
I am new at Java RMI technology. I have a problem that already other programmers had, but I was not able to understand what they did in the tutorials in order to solve it.
I have implemented the g...
4
Solved
I'm trying to make a Java RMI client/server app. I'm running into problems starting up the server side of my app, as it keeps running into a ClassNotFoundException during the call to the Registry.b...
Plectron asked 25/2, 2012 at 2:25
2
I have a java rmi application i simply do:
Client:
Registry registry = LocateRegistry.getRegistry("localhost");
costApi = (CostApi) registry.lookup("server.CostApi");
Everything works fine whe...
4
Solved
I am working on Java RMI. I am having little issue with running my rmiregistry on port 2028 as I already used that one to run my test program. I can run my program using other port but I would like...
Kaph asked 5/12, 2011 at 13:24
4
Solved
I'm working on a RMI command-line game but, whenever I try to my Service, I receive an error like this:
java.rmi.ConnectException: Connection refused to host: 192.168.56.1; nested exception is:
...
Aristocratic asked 13/12, 2011 at 6:29
1
Solved
Trying to setup a simple RMI server with SSL encryption. It's for a simple chat application that has a java server app and a java client app, however, I can't even get it working with a simple RMI ...
Analysand asked 5/2, 2014 at 19:28
2
Solved
Any idea why do I get RemoteException while trying to invoke methods on Unix machine from Windows?
I am inside the network and don't think this is because of firewall problem as I can do "telnet" f...
2
Solved
I have written java programs for Client and Server. But, to run the program I need to start rmi registry manually! How to start RMI registry through java code (through Server)?
Shieh asked 4/5, 2012 at 10:43
2
Solved
I'm having trouble making a remote JMX call to JBoss 6 on a Centos 5.6 server. I've previously been able to do this when running the same app on a Debian server.
./twiddle.sh --server=service:jmx:...
3
We recently updated to Java 7 Update 25 from Update 21 and are now experiencing a null pointer exception when SwingUtilities.isEventDispatchThread() is called from an rmi thread becuase AppContext....
Abbeyabbi asked 20/6, 2013 at 20:35
3
I'm implementing a session bean that throws ApplicationExceptions.
These exceptions have chained stack traces that may contain exceptions whose classes aren't available on the client. Something lik...
Snuggle asked 20/9, 2013 at 7:58
5
Yesterday I tried to get started with Java RMI. I found this sun tutorial (http://java.sun.com/docs/books/tutorial/rmi/index.html) and started with the server implemantation. But everytime I start ...
3
I have several services which export an RMI interface.
They used to offer this by creating their own registry (with LocateRegistry.createRegistry) and binding it there. However, that became imposs...
Aquilegia asked 9/7, 2012 at 16:37
1
I am running a Hello World example for java RMI
1) I run the registry in an empty folder
motta@motta-laptop ~/tmp $ rmiregistry
2) I start the HTTP server to retrieve the classes at runtime. T...
Blockage asked 27/5, 2013 at 9:4
3
Is it possible to communicate with non java entity sing RMI protocol
What is special about RMI IIOP?
Thx
1
Solved
I am currently learning Java RMI (Remote Method Invocation), and I followed the tutorial provided by Oracle on it´s website. I have a particular question however:
What is the use of the stub-skele...
Capricecapricious asked 2/6, 2013 at 20:16
11
Solved
4
Solved
How can I use RMI with a applet client behind a firewall?
How can I use RMI with a firewalled server and firewalled applet client? (If possible)
I know that the RMI server uses port 1099 (by defa...
1
Solved
I have found a safe way to get LocateRegistry (even if the registry does not already exist).
Registry registry = null;
try {
registry = LocateRegistry.getRegistry(52365);
registry.list();
// Th...
2
Solved
I have a Java application that require communication between different process. Process could run in same JVM or different JVM, but runs on the same machine.
My application need to submit "message...
Garris asked 29/1, 2013 at 10:8
© 2022 - 2024 — McMap. All rights reserved.