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

learn more… | top users | synonyms

0
votes
0answers
43 views

Java RMI, Port already in use when creating registry

I'm getting my feet wet in RMI for the first time after working in Java for a number of years, and I'm following this tutorial to get the basics down. The server code below is giving me the following ...
1
vote
3answers
59 views

How to create a java application which can be run as window service?

I need your advice on creating a Java application which can be used to run as a service. I am using Java service wrapper to install and run it as a service in windows. I have 2 classes ...
1
vote
0answers
28 views

RMI seen from Internet but not from LAN

this is my first post in stackoverflow, i'm trying to implement a chat using RMI but i'm stuck, i am avoiding the use of rmiregistry, everything was binding well on localhost, but i need it to be ...
0
votes
1answer
20 views

Java RMI and https?

I am new to enterprise design and client server technologies. Can you get Java RMI to work over the HTTPS port 443? I found some google links to stuff about "tunneling" and using HTTP port 80. Does ...
0
votes
1answer
38 views

Java RMI Client and Server Separate Machines

I want to edit the RMI hello world example to work with client and server on different machines, but i'm stuck with the unmarshalling return error. If i run client and server in the same project on ...
0
votes
1answer
40 views

interaction with database and messaging service. jms or rmi? [closed]

I'm writing a digital messaging service(a sort of guestbok but with "topics") where some users can only read message from subscribed "topics", and others can read and write message on topic they own. ...
0
votes
0answers
20 views

RMI ClassNotFound

I get ClassNotFound exception , here is code: server <bean id="metaFactoryRmiServiceExporter" class="org.springframework.remoting.rmi.RmiServiceExporter"> <property name="serviceName" ...
0
votes
1answer
24 views

Context.createSubcontext throws exception javax.naming.OperationNotSupportedException

I have registered JNDI. When I invoke Conrext.createSubcontext I get the exception: javax.naming.OperationNotSupportedException at ...
0
votes
0answers
14 views

explicitly setting the interval for distributed GCs does not seem to work

I have been trying to control the interval between Full GCs triggered by RMI when using JMX (known as distributed GCs). Specifically, I start my java platform like this: java ...
-1
votes
0answers
33 views

Backup server using RMI [closed]

I have assignment to create chat application. I have developed this application. In this application, client will connect to server (TCP Connection) and sends String message. Server will send this ...
4
votes
2answers
74 views

How should I implement a distributed Remote Method Invocation system in .NET?

Original Post How would I implement a distributed Remote Method Invocation system? I'm trying to create something like the following: Master Server to track individual "hosts". Hosts can ...
-1
votes
1answer
135 views

Java RMI - How to call a Remote Method from Servlet [closed]

I think it might be very silly question but please help me if someone knows about this. I know the basics of RMI & have made some console-based RMI programs, but this time I want to call a remote ...
0
votes
1answer
17 views

Handling multiple jndi configurations with EJBs and RMI

My application uses JNDI to access both local EJBs, and to access remote services via RMI. Currently this is handled in the following way: public MyLocalEJB getMyLocalEJB(){ Hashtable<String, ...
-3
votes
1answer
46 views

Distributed Programming in JAVA [closed]

I am making a Project in which i am going to Fetch Records from DB, I want to Divide Fetched data in two part & processing should be done one by one on each records. the Processing is time ...
0
votes
0answers
45 views

Creating an RMI Connector Client

I am trying to connect to MBean server. I need to write JMX Client application. This is the code used for client application. But I have got an exception related to this Failed to retrieve ...
0
votes
1answer
38 views

Externally access Spring Java RMI service in cloudbees

I have deployed a spring rmi web application(WAR file) to the cloudbees successfully. This application contains simple RMI service called "greetingRmiService" which return a String contains a greeting ...
0
votes
0answers
23 views

where should we invoke proxyfactory in springmvc with spring rmi application?

I have created an API interface using remote service beans from the Java application that expose the methods that you want to invoke in the web application using SpringRMI. applicationContext.xml in ...
2
votes
1answer
54 views

Distributed computing in Java, choice of application server

I am currently trying to incorporate an open-source business-process-engine (Activiti) into another application from my company but I am uncertain how to do this in a distributed manner. The ...
1
vote
2answers
66 views

Java rmi over the internet

I am developing a game in Java using RMI for all network communication. RMI allows me to call method on my server, but it is not enough for me. I also want the server to be able to spread message ...
0
votes
2answers
84 views

Java RMI port binding error in openshift

I have developed a small Spring based web application to test Spring RMI. There I have created a simple service to generate a greeting message based on the input parameter and return it back to the ...
0
votes
0answers
43 views

ClassNotFoundException: RMISImpl_Stub

i got the exception when executing the following code and here local system and remote system are same private void StartSerActionPerformed(ActionEvent actionevent) { try { RMISImpl ...
1
vote
0answers
112 views

java.rmi.ConnectException: Connection refused to host with spring RMI

I am trying to develop a small spring rmi example. I have created remote service interface and service as follows, Calculation.java package com; public interface Calculation { String ...
0
votes
1answer
54 views

Shutting down rmi server cleanly

I am running in to some trouble when shutting down the server component and was hoping to get some help. My server code looks as follows, it has a method to shut down the server Server private ...
0
votes
1answer
26 views

How to use Machine Alias in RMI server

I am running my rmi server on a machine thats part of a cluster. The IP is likely to change and therfore connecting via this process is not reliable. Uo until now on the dev box at work having a ...
0
votes
2answers
73 views

Making trial version of client-server application in Java

I need to know how to make a trial version(e.g 30 days trial) of a client-server application which is implemented using Spring RMI(server side) and Java Swing(client side). I'm thinking of doing this ...
0
votes
1answer
86 views

What's the main purpose of using java rmi activation system?

First of all, I am reading the java official document about rmi specification. http://docs.oracle.com/javase/7/docs/technotes/guides/rmi/index.html ...
0
votes
0answers
70 views

spring standalone client to consume weblogic ejb3

I want to make a standalone jar with spring and maven that consume an EJB3 (@remote) exposed on weblogic 11g, I reviewed the JNDITREE on weblogic and the EJB looks Good, but my implementation of the ...
0
votes
1answer
39 views

Legacy RMI call from a Spring Application

we have a service running in another server and can be accessed using legacy rmi calls (Corba). This server has nothing to do with Spring and lives in another place and we dont have any influence on ...
0
votes
1answer
47 views

no such object in table when calling registry.lookup

i am having a trouble when trying to run communication between server and client using RMI. My code is attached below. Server runs fine, i can see listening port in list of pc ports, client fails on ...
0
votes
1answer
54 views

Java RMI's UnicastRemoteObject

I am currently practicing the implementation of RMI in Java. One of the requirements is to create a class that extends the UnicastRemoteObject which contains functions that can be called remotely. ...
0
votes
1answer
64 views

How to make server automatically send data back to connected client

I'm using Java RMI for networking programming between client and server. Client connects to server, invoke method and receive is easily solved by RMI Technology. But now I have this problem : the ...
-1
votes
2answers
72 views

java RMI lookup exception [closed]

I have this server void roma () throws RemoteException{ Registry registry = LocateRegistry.createRegistry(1880); String name = "rmi://localhost:1880/server"; ...
0
votes
1answer
55 views

Java Rmi Exception

I want to build a RMI server, I tried like this package first_project; import java.rmi.Naming; import java.rmi.RemoteException; import java.rmi.server.UnicastRemoteObject; import ...
1
vote
1answer
81 views

Dynamic code loading between Android and a server running JVM

I'm currently involved in development of an Android framework that would make it possible to delegate a method invocation to a server (with a JVM running), which will execute the method and return a ...
0
votes
4answers
68 views

JAVA asynchronous RMI

I need to have Remote Method invocation (RMI) functionality between two different JAVA programs. Both are supposed to perform some backend functionality on given file(File Name as ...
0
votes
1answer
35 views

Every RMI request involves the creation of a new thread in the server side?

Is a new thread created in the server side for every single RMI call? Where can I find information about this? I have googled it but the results are not good so far.
0
votes
1answer
173 views

RMI multiple clients - one server object for each of them

I am writing a prototype of cryptographic system using RMI. I have a problem, because when I launch two clients, they got a response from one object in the server from OneTimePad class. So client A ...
1
vote
1answer
40 views

understanding good practice for java rmi

I have a RMI application, Basically every request from the client, created a new connection (on the server side) to the database, r n an SQL query and turned the data to a serializable class that was ...
0
votes
1answer
46 views

Error while getting data Using RMI from services into WEB application

I am getting following exception while I am trying to get list of tasks, from services that I have written which are supporting hibernate 4, into web application which supports hibernate 3 ...
1
vote
0answers
79 views

What to do to reach communication via java rmi on virtual box

I have a java RMI application that works OK when you have it on 2 different Linux machines. Now I do not have the other laptop available to make some new test so I try to put the application on a ...
0
votes
1answer
110 views

RMI - work in the same machine, not in LAN

I am trying to establish two-communication between one server and two clients. This works very well when all programs run on the same machine but it doesn't work when I try using LAN network. I got ...
-2
votes
1answer
25 views

Code base protect at demarsheling time [closed]

According to wiki Marshalling marshalling an object includes codebase and object data. If codebase i.e. source code of class of an object is transferred to another machine , how can it be protected ...
0
votes
1answer
42 views

java RMI + source hitting server is from internet or from intranet

In java RMI i am building a chat application. But i am not able to figure out a way to find out, whether the IP which is hitting my server is from my internal organization network(INTRANET) or from ...
0
votes
1answer
188 views

How to run RMI Chat Application in JAVA in Eclipse IDE

I am developing a RMI Chat application in Java. I am trying to run simple RMI application in eclipse IDE. But it issues following problem. I know how to run it from command prompt and its running ...
0
votes
1answer
55 views

How does RMI locate classes when objects are downloaded where a class file does not exist locally?

i'm struggling to understand how RMI locates classes when objects are downloaded where a class file does not exist locally?
0
votes
1answer
57 views

how many instances of the class UserHandler will be created in this case?

In our Application we are using Spring RMI concept . I have a question as follows There is one interface named UserHandlerI and its implementation class UserHandler as shown below Interface ...
0
votes
1answer
34 views

How to use Kryo with RMI

I see a lot of questions about if Kryo can be used to replace default JVM serialization that RMI uses, but nothing in the way of how to actually set it up. I've heard that Kryo is a "drop-in" ...
0
votes
2answers
103 views

java RMI - multiple hosts register an object with the same name

Can I register objects with the same name coming from different machines? For example: Suppose we have a class X that implements a Remote interface. Then we have a class Server that takes a new X ...
0
votes
1answer
118 views

Netty vs RMI vs JVM Serialization [closed]

My understanding is that RMI is a binary, TCP-based protocol that Java uses for sending objects between different JVMs (usually living/running on different machines). My understanding is that Netty ...
0
votes
1answer
58 views

The RMI compiler cannot be found

I have installed the latest java JDK jdk1.7.0_17 and i am creating an RMI application on eclipse juno, RMI plugin tells me there is no RMI compiler so it cannot generate stubs. Is there a specific JDK ...

1 2 3 4 5 24