0
votes
2answers
29 views
Do RMI and web services both use a socket connection?
In another question I was worried about using a web service that takes a five minutes to complete. I was thinking about using RMI instead of web services for this use case..
bu …
0
votes
3answers
37 views
How to store rmi connections in java?
I'm with a problem here.
I have a client A code that calls a B via RMI. After that I'm sending a queue request via JMS to the real implementation C. However, I don't know the "addr …
1
vote
1answer
18 views
Should references in RMI exposed services be transient?
I'm exposing some services using RMI on Spring. Every service has a dependency to other service bean which does the real processing job. For example:
<bean id="accountService" …
0
votes
3answers
30 views
java RMI via SSH v2 protocol
Hi All ,
How to implement java RMI over SSH v2 protocol.Is this possible?.If its not possible then can i achieve this using raw socket communication?.Simply i want to transmit my …
1
vote
4answers
47 views
Java RMI: Sniffer needed
How can I sniff and analyze Java RMI traffic ? There is only very partial solution in wireshark. I need to know exactly which methods where called and which args where passed by sn …
1
vote
1answer
39 views
JAVA RMI Client side random ports
Hi,
I have a java 1.4 RMI application. By using custom socket factory, I am running my RMI server in a particular port (5050).
The problem is, when the RMI client application tr …
1
vote
2answers
85 views
Java RMI (Server: TCP Connection Idle/Client: Unmarshalexception (EOFException))
I'm trying to implement Sun Tutorials RMI application that calculates Pi. I'm having some serious problems and I cant find the solution eventhough I've been searching the entire we …
0
votes
2answers
72 views
Java: Expected overhead of the rmi protocol
Hi there!
Within my program I'm using two RMI servers, which provide different methods, to simulate a simple network protocol between two notebooks. From my trace log I can see th …
2
votes
2answers
87 views
What is the difference between RMI and Corba?
What is the difference between RMI and Corba?
1
vote
4answers
163 views
How do you add GUI to this java program?
I know only basic stuff in java. And I need to create a GUI for this type of program. It shows your credit card info. It has some other classes and makes use of the rmiregistry. Th …
0
votes
2answers
27 views
java.rmi.MarshalException
whenever I try to call my ejb from a client, I get this error :
java.rmi.MarshalException: Failed to communicate.
Problem during marshalling/unmarshalling; nested exce …
1
vote
1answer
50 views
java rmi authentication & security. exportObject makes it public?
The Question:
When you UnicastRemoteObject.exportObject(instance). Does that instance now become publicly available to all clients. Even if a little tricky is required to find its …
0
votes
3answers
113 views
rmi class can not found exception
I wrote an simple project using java rmi and exported to an executable jar file. When I tries to run it, sometimes i got exceptions and sometimes it works. When I specify -Djava.rm …
2
votes
2answers
149 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?
[ …
0
votes
2answers
70 views
java rmi exceptions
I'm writing an rmi application. Everything works perfectly fine when i put the all classes in one directory. However, when i try to split the server part and the client part, it ra …
