rmi Questions
4
I'm building a Distributed System using Java RMI and it must support a server loss.
If my client is connected to a Server using RMI, if this server goes down (cable problems for example), my clien...
5
Solved
After upgraded from JRE 1.7.0_21 to 1.7.0_25-b15 my application started to throw NullPointerException in SwingUtilities.invokeLater(...) when it is run from Java WebStart. Surprisingly when it is e...
Dorotea asked 24/6, 2013 at 12:16
2
Is it true that the rmi interface compiler is not needed for java 1.5 or newer and that just compiling the java file where the UnicastRemoteObject is defined with javac is enough?Rmic still works a...
4
Solved
I have used RMI in my code :
import java.rmi.*;
public interface AddServerIntf extends Remote {
double add(double d1,double d2) throws RemoteException;
}
import java.rmi.*;
import java.rm...
Zorina asked 14/4, 2011 at 11:7
0
3
Solved
When you use RMI in Java the remote stack trace of an exception will be prepended when you receive it, somewhat like this:
ERROR Client received error when doing stuff:
myapp.FooBarException: bla
...
Letaletch asked 7/6, 2011 at 19:1
3
Solved
Hey I'm getting a AccessControlException: access denied when attempting to start up a RMI app I'm writing, I can't work out why I get this exception if I open it on the default port 1099, or on ano...
Bombacaceous asked 11/3, 2010 at 18:8
6
Solved
I have created a Server, Client kind of program with RMI. But whenever I run my Server after starting the rmiregistry from command prompt, the port already in use error is thrown. Its only me who s...
2
So I see that HTTP tunneling over RMI has been removed in Java 9.
We sell commercial Java software, which runs in Tomcat. Our customers install this on their Mac, Windows, and Linux servers. This ...
Oozy asked 18/11, 2017 at 3:50
1
Solved
I'm studying computer science and this semester we started a project based on RMI in one of our courses. We were not allowed to choose the technique used. We make a simple client-server appli...
9
Solved
May I know what port is used by Java RMI connection?
If I want to connect a Java client application to a Java server application using RMI connection, what port I need to open at the server machin...
Plutocrat asked 18/6, 2010 at 16:20
4
Solved
How to programmatically grant AllPermissions to an RMI application without using policy file?
UPDATE:
After some researching, I have written this custom Policy Class and installed it via Policy.s...
Divisible asked 31/7, 2012 at 10:20
2
Solved
In Java 9 the internal representation of String has been changed from char array to byte array.
Consider I'm serializing my String data on a system running Java 9 and then attempt to deserialize i...
Bondmaid asked 23/8, 2017 at 5:7
5
Solved
I'm running the program here on 2 JVMs on diff physical machines. I get the error
RemoteException
java.rmi.UnmarshalException: error unmarshalling return; nested exception is:
java.lang.C...
Retiary asked 8/9, 2011 at 22:48
0
I have this scenario:
A remote system BE-TEST exposes an @Clustered ejb-Name-BE deployed on a two machines JBoss EAP 6.3 cluster
A remote system COMMON-TEST exposes an @Clustered ejb-name-Test de...
Gati asked 3/3, 2017 at 15:21
1
Solved
I have an issue I can locate in the profiler but I have no clue how to fix it.
After I load the application I get this sawtooth wave pattern, the program is idle but consume memory, as you may see ...
Kesley asked 20/4, 2016 at 11:55
4
Solved
i'm preparing for an exam and I'm having a question that I hope someone here could answer me.
It's about RMI and remote objects. I wonder why there is so much difference between these two implemen...
3
Sorry for this question which must have been asked many times, but I can't succeed in resolving my problem.
I've read a lot of blogs, sites, forums, .... and didn't find any solution in my case.
C...
5
Solved
I'm working on Java RMI application, and having problem binding a server to the registry. I'm working on eclipse using rmi plugin, and everything worked fine before I had to format my pc. Also, I'm...
8
Solved
What is the actual difference between Java RMI and RPC?
I have read in some places that RMI uses Objects?
1
We have observed that full garbage collections (GCs) are often performed on an hourly basis.
Checked the time intreval of JreMemoryLeakPreventionListener. it is set to Long.MAX_VALUE. though gc is...
Coppersmith asked 16/10, 2016 at 10:0
8
I am trying to connect to a remote EJB on my local JBoss 7.2 from an executable Java application (local not on JBoss).
But I get the following error/Exception :
java.lang.IllegalStateException: E...
Marthmartha asked 13/2, 2014 at 7:51
1
Solved
When launching a Java application with these options:
-Dcom.sun.management.jmxremote
-Dcom.sun.management.jmxremote.authenticate=false
-Dcom.sun.management.jmxremote.ssl=false
-Dcom.sun.management...
4
Solved
I need to develop a Java RMI application for my distributed systems class.
During the lecture, the professor was stressing to only let classes implement Serializable that have to be passed by val...
Contagium asked 22/8, 2016 at 12:44
10
Solved
I am currently undertaking a project that involves extensive use of Java RMI and I was wondering if anyone is aware of any good resources about it.
The problem I am having with the material I am f...
Turro asked 2/1, 2009 at 18:17
© 2022 - 2024 — McMap. All rights reserved.