* @return the previous generated connection / client id for the specific client
*/
public String getConnectionId(HttpServletRequest aRequest) {
final HttpSession theSession = aRequest.getSession(false);
if(theSession == null) {
throw new NoSessionAvailableException("There is no session available! Maybe no session was generated explicitly by the connection id generator.");
}
return theSession.getId();
}