public void receive_request_service_contexts(ServerRequestInfo sri)
{
Socket s = null;
Connection c = ((RequestInfoExt)sri).connection();
SecurityMechanismSelector sms = new SecurityMechanismSelector();
ServerConnectionContext scc = null;
if (c != null) {
s = c.getSocket();
if(_logger.isLoggable(Level.FINE)) {
_logger.log(Level.FINE,"RECEIVED request on connection: " + c);
_logger.log(Level.FINE,"Socket =" + s);
}
scc = new ServerConnectionContext(s);
} else {
scc = new ServerConnectionContext();
}
sms.setServerConnectionContext(scc);
}