python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How do I fix a NotSerializable exception
I have a program called Agent that launches a thread called BeaconSender:
public class BeaconSender extends Thread {
private Beacon beacon;
private String managerAddress;
public Beaco...

Wendell Best
Votes: 0
Answers: 0
Java RMI permission denied to LAN address, works for 127.0.0.1
I am implementing a Client application and a Server application on my Windows computer using two terminals that communicate with each other.
However I cannot get the Client to run. The Server and Java...
Michael Jones
Votes: 0
Answers: 0
RMI Server - module RMIServer does not "exports Server" to module java.rmi
Here is the interface
package Server;
import java.rmi.Remote;
import java.rmi.RemoteException;
public interface RmiSomme extends Remote{
public abstract void getInformation(String nom, Stri...
let's play it
Votes: 0
Answers: 1
Getting AccessException: Cannot modify this registry error when trying to run rmiregistry on a port
I am facing an issue when I am trying to set both jmx and rmi port to the same value.
I added below two lines in my tomcat setenv.sh file but it was not having any effect because I saw rmiregistry was...
Rahman
Votes: 0
Answers: 0