I have application in CORBA using IIOP protocol, i am using the Java IDL component of the JDK 6 , another ORB implementation.
Implementation of both client and server in Java language.
Is there any way in the JDK ORB implementation to get the client ORB`s host and port from the server (ORB)code ?
Or
is there any way with use of IIOP protocol, get client the host and port ?
This is we are doing for identification of the client to track the who is requested
I don't think there is any portable way to do this. Perhaps there is for your particular ORB, I don't know. Recall that CORBA tries very hard to hide the transport details from the application. The application may not even be using IIOP, and thus there would be no way to get TCP host and port information in any event.
You may want to consider adding additional identifier parameter(s) to your IDL so that the server can recognize clients. You may also consider making the clients call a "register" function on the server, and the server hands out an identifier that all clients must pass back to the server on subsequent calls.
This identifier can be as simple as a string or integer, or as complicated as some kind of security token that the server has to validate with a public key. It all depends on your application's requirements.