logger.info("Broadcasting updated transcript with " + transcriptEntry);
for (Session nextSession : connections.values()) {
RemoteEndpoint.Basic remote = nextSession.getBasicRemote();
if (remote != null) {
ChatTranscriptUpdateMessage cm = new ChatTranscriptUpdateMessage(transcriptEntry);
try {
remote.sendText(cm.asString());
} catch (IOException ioe) {
logger.warning("Error updating a client " + remote + " : " + ioe.getMessage());
}
}
}