Top "Rmi" questions

Remote Method Invocation (RMI) is Java's object-oriented remote procedure call (RPC) mechanism.

RemoteException java.rmi.UnmarshalException: error unmarshalling return

I'm running the program here on 2 JVMs on diff physical machines. I get the error RemoteException java.rmi.UnmarshalException: error …

java rmi classnotfoundexception
what is stub on the "server" and what does skeleton mean?

What does stub do on the server side ? And what is a skeleton ? This is a diagram from wikipedia. I …

java networking network-programming rmi
java rmi -Djava.rmi.server.hostname=localhost still opens a socket listening on 0.0.0.0

I use the -Djava.rmi.server.hostname=localhost option to make rmi listen on localhost only, but netstat shows the …

java rmi
EJBCLIENT000025: No EJB receiver available for handling?

I am trying to connect to a remote EJB on my local JBoss 7.2 from an executable Java application (local not …

jakarta-ee ejb jboss7.x rmi remoteobject
"ClassCastException: $Proxy0 cannot be cast" error while creating simple RMI application

I am creating my first, very simple RMI client-server application. Here is the code: Interface "ICommunication" package itu.exercies.RMI.…

java rmi
IntelliJ Idea IDE using port 1099

I'm using IntelliJ Idea Community Edition IDE and I'm trying to run a Maven WebApp with Jetty by command line. …

java maven intellij-idea jetty rmi
What is the difference between RMI and Corba?

Possible Duplicate: RMI and CORBA Differences? What is the difference between RMI and Corba?

rmi corba
Java RMI - UnicastRemoteObject: what is the difference between UnicastRemoteObject.exportObject() and extends UnicastRemoteObject?

i'm preparing for an exam and I'm having a question that I hope someone here could answer me. It's about …

java interface export rmi
Spring: Properly setup @ComponentScan

I have following set up for my Spring Application Context. @Configuration public class RmiContext { @Bean public RmiProxyFactoryBean service() { RmiProxyFactoryBean rmiProxy = …

spring components rmi applicationcontext spring-remoting
Java RMI - Client Timeout

I'm building a Distributed System using Java RMI and it must support a server loss. If my client is connected …

java timeout rmi