Tagged Questions

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

learn more… | top users | synonyms

36
votes
17answers
2k views

Is it possible for a thread to Deadlock itself?

Is it technically possible for a thread in Java to deadlock itself? I was asked this at an interview a while back and responded that it wasn't possible but the interviewer told me that it is. ...
17
votes
9answers
1k views

What's a good Java-based Master-Slave communication mechanism?

I'm creating a Java application that requires master-slave communication between JVMs, possibly residing on the same physical machine. There will be a "master" server running inside a JEE application ...
11
votes
2answers
740 views

Java Segmentation fault

I am using a 64-bit JVM (Oracle), when i try to allocate buffer sizes larger than 256 MB it complains and throws a "segmentation fault" error. I and allocation direct memory buffers using java NIO, ...
10
votes
8answers
12k views

RMI vs. Web Services. What's best for Java2Java remoting?

I'm new to both Web Services and RMI and I wonder which is the better way to do remoting between different web applications, when these applications are all written in Java, that is when different ...
9
votes
9answers
1k views

Java RMI Resources

Hi everyone 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 ...
8
votes
1answer
1k views

Illegal remote method in java

It's the first time I use java rmi.I have a custom class which extends UnicastRemoteObject and implements an interface which extends remote.I think that I have implemented the methods of the interface ...
8
votes
6answers
22k views

Java RMI Tutorial - AccessControlException: access denied (java.io.FilePermission

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 the ...
7
votes
1answer
104 views

Size of a serialized null values

I have to send through the network a complex object which references are almost all of them Null, but I wonder about the size of this object with this null references inside. Which is the size of a ...
7
votes
5answers
385 views

Java standard for client/server communication

What is the "official" Java API for client/server or P2P communication? Java RMI? Some other networking API?? Is this official networking API the standard for both SE and EE? I'm sure the answer is ...
7
votes
5answers
1k views

Java RMI and synchronized methods

(Please leave a comment if the point is not clear) I'm studying the book "Distributed Systems" (by Tanenbaum & Van Steen) and they say something that seems to conflict to what seems to be instead ...
7
votes
4answers
6k views

What is the difference between Java RMI and RPC?

What is the actual difference between Java RMI and RPC? I have read in some places that RMI uses Objects?
7
votes
3answers
9k views

Web Services vs EJB vs RMI, advantages and disadvantages?

My web server would be overloaded quickly if all the work were done there. I'm going to stand up a second server behind it, to process data. What's the advantage of EJB over RMI, or vice versa? ...
7
votes
7answers
1k views

Is it possible to use RMI bidirectional between two classes?

I want to share some information between two classes (A and B), which are running in different java programs. Instead of writing a whole communication protocol I want to use the java build-in rmi ...
7
votes
6answers
2k views

What are the pros and cons of Web Services and RMI in a Java-only environment?

When developing distributed applications, all written in Java by the same company, would you choose Web Services or RMI? What are the pros and cons in terms of performance, loose coupling, ease of ...
6
votes
3answers
285 views

Which NIO library (Netty, Grizzly, kryonet, …) for simple backend server implementation in Java?

Our frontend is simple Jetty (might be replaced with Tomcat later on) server. Through servlets, we are providing a public HTTP API (more or less RESTful) to expose our product functionality. In the ...
6
votes
2answers
3k views

Java RMI - UnicastRemoteObject: what is the difference between exportUnicastRemoteObject() and extend UnicastRemoteObject()?

i'm preparing for an exam and I'm having a question that I hope someone here could answer me. Its about RMI and remote objects. I wonder why there is so much difference between these two ...
6
votes
4answers
1k views

RMI and exceptions

I am new to using RMI and I am relatively new to using exceptions. I want to be able to throw an exception over RMI (is this possible?) I have a simple server which serves up students and I have ...
6
votes
6answers
1k views

How to initialize Hibernate entities fetched by a remote method call?

When calling a remote service (e.g. over RMI) to load a list of entities from a database using Hibernate, how do you manage it to initialize all the fields and references the client needs? Example: ...
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?
5
votes
3answers
109 views

Do I need all classes on the client, server and registry for RMI to work?

I'm doing my first steps with RMI, and I have a simple question. I have a .jar file which has the implementation of several methods from a library. I want to call this methods in the .jar file using ...
5
votes
3answers
230 views

Java RMI with Scala, is this possible?

Java RMI -Remote Method Invocation- is Java to Java only. On the Scala website I read that the integration with Java is seamless and that: Scala programs run on the Java VM, are byte code ...
5
votes
1answer
1k views

How to connect to a java program on localhost jvm using JMX?

I should connect to a java program on localhost jvm using JMX. In other words I want to develop a JMX client to config a java program on localhost. Don't recommend using JConsole! JConsole is not ...
5
votes
10answers
949 views

Communication between local JVMs

My question: What approach could/should I take to communicate between two or more JVM instances that are running locally? Some description of the problem: I am developing a system for a project that ...
5
votes
4answers
536 views

how to learn Java RMI quickly

I have a Java application I've been working on for a year or two now. I would like to create a very simple set (with potential to add complexity later) of interfaces that I can use to control my Java ...
5
votes
1answer
745 views

Java RMI + SSL + Compression = IMPOSSIBLE!

I've setup RMI + SSL. This works great. But it doesn't seem possible to slip compression in between RMI and SSL. So that the RMI requests are compressed before they're sent over SSL. I've seen some ...
5
votes
2answers
2k views

Reconnect RMI client after server restart

I have an RMI server and a desktop RMI client. When I restart the server, I get errors in the client. Is it possible to restart the RMI connection without restarting the client? [EDIT] Here is the ...
5
votes
2answers
2k views

Remote JMX invocation failed with ClassNotFoundException: … (no security manager: RMI class loader disabled

I try to invoke the method of MBean from web application from Tomcat. Target MBean is running under JBoss 4.2.3. Both Tomcat and JBoss applications use the same version of jar with the same class, but ...
5
votes
4answers
10k views

java.rmi.NoSuchObjectException: no such object in table

I am writing a very simple RMI server, and I am seeing intermittent java.rmi.NoSuchObjectExceptions in the unit tests. I have a string of remote method calls on the same object, and while the first ...
4
votes
2answers
87 views

Huge number of objects, sharding and java EE

I'm new to java ee and I'm not sure how to implement a particular requirement. I have need for a large set (millions) of objects that maintain a bunch of rules and state and present an API for ...
4
votes
4answers
127 views

Is there a way to introduce fake latency in Java RMI calls?

In want to diagnose a bottleneck which happens when my client is talking to a server on the other side of the world. I'd like to run the server on my local machine and simulate the latency. Is there a ...
4
votes
2answers
2k views

Java: no security manager: RMI class loader disabled

Hi I have RMI application and now I try to invoke some methods at server from my client. I have following code: public static void main(final String[] args) { try { ...
4
votes
3answers
207 views

RMI using Spring is slow

I'm using RMI and I noticed it's very, very slow. For a simple call it takes ~ 8-10 seconds to get a response. It's not the method I'm calling that takes that long. If I use RMI but point the call to ...
4
votes
1answer
242 views

InApp Billing Security and Remote Method Invocation

I've implemented in app billing in an app, and now I want to secure it a little more. Reading the developer material it states: In addition to running an obfuscation program, we recommend that you ...
4
votes
2answers
1k views

VisualVM through firewalls - RMI troubleshooting

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. Case ...
4
votes
2answers
239 views

CORBA/ RMI and (D) COM are any still relevant today?

Are CORBA (language agnostic) / RMI (Java) and (D) COM (MS) still relevant today, or is there a technology that has surpassed them? Cheers, J
4
votes
7answers
2k views

C++ RPC library suggestions

I'm looking for suggestions regarding RPC libraries implemented in C++, for C++ developers. Some requirements constraints: Should work on both linux/unix and win32 systems Be able to execute free ...
4
votes
1answer
274 views

RMI + java reflection

I'm using RMI to allow access to my Java application via MATLAB, which runs in another JVM. MATLAB has a nice interface to print the methods of a Java object. But it fails with RMI, because the object ...
4
votes
3answers
1k views

What is the difference between Java RMI and JMS?

When designing an distributed application in Java there seem to be a few technologies that address the same kind of problem. I have briefly read about Java Remote Method Invocation and Java Message ...
4
votes
2answers
462 views

RMI and CORBA Differences?

I am studying for a final and have a few questions about RMI and CORBA. These are discussion questions taken from a study guide so there is no real application context around them. Why are RMI and ...
4
votes
2answers
3k views

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 to a Server using RMI, if this server goes down (cable problems for example), my client ...
4
votes
2answers
2k views

How to have JMX bind to a specific interface?

I am currently starting my Java VM with the com.sun.management.jmxremote.* properties so that I can connect to it via JConsole for management and monitoring. Unfortunately, it listens on all ...
4
votes
4answers
2k views

How do I ensure that RMI uses only a specific set of ports?

In our application, we are using RMI for client-server communication in very different ways: Pushing data from the server to the client to be displayed. Sending control information from the client ...
3
votes
4answers
132 views

Remote RMI Registry

I'm coding an application that requires remote binding, i.e., bind a remote object to a remote registry. By default, Java RMI Registry only binds locally, only remote objects that are binded in the ...
3
votes
4answers
68 views

How do I ensure Atomicity of RMI Operations?

I want to update a file using RMI .How i can ensure status of operations. Client connected to server and call a method. Just after, connection between client and server broken and client get a ...
3
votes
2answers
67 views

Set up my server to allow remote users to connect to my Java program

My program is a game that uses RMI to allow users to connect to the central server. The game works fine on computers within my home network. I want remote users outside of my network to be able to ...
3
votes
2answers
111 views

Head First Java - RMI issues

I followed the example on the books but i am getting a lot of errors. I ran rmiregistry. I then done. java MyremoteImpl which gave me the following error: java.rmi.ServerException: ...
3
votes
1answer
37 views

Communication between Java programs with non-JDK objects

I'm looking for a communication channel between two java programs running on the same machine. I've found a few options (RMI and XML-RCP) but none of the examples that I found show exchange of objects ...
3
votes
0answers
39 views

what is a skeleton in rmi? How it is different from the stub file i kept on the client machine? [closed]

Possible Duplicate: What is a skeleton in a network? what is a skeleton in rmi ? I created a stub file and kept one in the client machine and the same in the server machine. I didn't keep ...
3
votes
2answers
201 views

Java multiplayer game - networking concepts

For a school project, we're supposed to create a multiplayer game in Java (it should be client/server) which can be played over the internet (we're programming this at school, so it's not homework). ...
3
votes
1answer
48 views

Transferring a Java Exception stacktrace between application tiers [closed]

In our organization we have JEE multi-tier applications, each tier in a physical weblogic cluster. Right now, when an exception occurs in the backend tier (lowest tier), our framework only transfers ...

1 2 3 4 5 14