this is the code .....as authorization plugin
private void validateIfCreationDateIsExpired(long now, long creationDate) { if (now > creationDate + this.minutesToExpire * 60000) { String creationDateAsString = DATE_FORMAT.format(new Date(creationDate)); String nowAsString = DATE_FORMAT.format(new Date(now)); LOG.error("La fecha de creacion del token {} cumplio el tiempo de expiracion ({} minutos) sobre la fecha actual {}. Si esto sucede con mucha frecuencia se recomienda revisar fecha y hora del servidor", new Object[] { creationDateAsString, Integer.valueOf(this.minutesToExpire), nowAsString }); throw new SecurityException("La fecha " + creationDateAsString + " cumplio el tiempo de expiracion de " + this.minutesToExpire + " minutos sobre la fecha actual " + nowAsString); } } i dont know why as authorization code it is given much more exceptions ..... :( On Mon, Dec 12, 2016 at 2:02 PM, ALi <osat...@gmail.com> wrote: > We implemented a filter in activemq to validate messages from the date > sended, and we are having more issues in 5.13.2 than in 5.8, has the > filter implementation changed so much? >