0

I have a Java application which I am in the process of converting to work with WebStart. It is supposed to connect to a server to do some authentication using Naming.lookup and this works fine when running as a standalone app. Unfortunately when running the same code as a WebStart app the call fails and throws:

java.rmi.ConnectIOException: error during JRMP connection establishment; nested exception is: java.io.EOFException

kayln12
  • 15
  • 2

1 Answers1

1

This indicates an error at the Registry, possibly a security problem. You need to run the Registry with some debugging parameters to see what, such as -Djava.rmi.server.logCalls etc. See the properties pages linked from the RMI Home Page.

user207421
  • 305,947
  • 44
  • 307
  • 483