Questions tagged [rmiio]

A Java library which aims to make it simple to send large amounts of data using RMI.

RMIIO is a library which aims to make it simple to send large amounts of data using .

For more information, see the Sourceforge page.

5 questions
3
votes
1 answer

How can I force a RMIIO lib to use my custom RMI socket factories when exporting remote objects?

I work in a framework where remote objects export themselves like this: UnicastRemoteObject.exportObject(this, port, csf, ssf); That's just a given, can't change it. I am now trying to include the RMIIO lib to do remote iteration. RMIIO exports…
Sebastian
  • 315
  • 2
  • 12
2
votes
1 answer

Can't pass file via RMI

I can't send FileInputStream to RMI server even though I wrap it in SimpleRemoteInputStream from the RMIIO library. This is what I get when I try run a client app: Client started SENDING FILE: file.pdf paź 29, 2013 1:13:24 PM…
ColdAsDomino
  • 23
  • 1
  • 6
1
vote
2 answers

How to enable encryption on a RMIIO stream using JBoss 6

I want to encrypt communications between a JBoss 6.1.0.Final server and my client. To do this I activated SSL over RMI and it works well. However, I use RMIIO too and it was not automatically encrypted when I activated SSL encryption over RMI. In a…
Alexis
  • 23
  • 7
0
votes
0 answers

Java RMI connection refuse

I do receive below error: 2019-01-02 16:14:22.789 INFO 3131 --- [ main] com.dbs.rmg.cli.App : Started App in 4.619 seconds (JVM running for 5.227) 2019-01-02 16:14:22.907 INFO 3131 --- [)-10.91.xxx.xxx]…
Kim
  • 980
  • 1
  • 15
  • 29
0
votes
1 answer

RMIIO and NoClassDefFoundError

I'm trying to upload a file from the client (JSE) to the server application (Java EE, EJB, Wildfly). I'm trying use first example from this page, but when I try to run the server applications on the Wildfly server - I get this error: 19:08:30,077…
Robert
  • 762
  • 2
  • 10
  • 23