vote up 0 vote down star
1

When I implement an RMI server (implement an interface that extends java.rmi.Remote) is there a way to get information about the current RMI request context, specifically the remote client's IP address?

public void myMethod() throws RemoteException {

    log.info("remote IP is "+ RMISomething.getSomething());

}
flag

53% accept rate

3 Answers

vote up 1 vote down check

See java.rmi.server.RemoteServer#getClientHost

link|flag
vote up 0 vote down

I don't believe that this information can be obtained unless it is passed in the remote method call. I checked both the RMISecurityManager and the UnicastRemoteObject classes to see if it could be obtained from them, and I didn't see anything.

link|flag
vote up -1 vote down
link|flag
blank answer? ??? – Thilo Sep 5 at 1:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.