When the SessionInvocationProcessor is used, it
currently tracks a session by the callerIp. This is not
unique enough since my application can have many client
instances from the same IP. Can the remote port be
added to the callerIp to make a more unique session id.
I think this would be a simple addition since it would
only require that the getPort() call be added to the
getInetAddress() call in the XmlRpcServer() method.
This will allow several sessions to exist from the same
originating IP.
Thanks.
Logged In: YES
user_id=406198
Upon further thought, using the getPort() method would
require that the keepAlive state be set to true. This may
not be possible in my application so the appending the port
to the session id may not be useful. I may just have to
send the state information with every XMLRPC request. Any
other suggestions?????