Removing SSO cookies in sessionDestroy

Hi All, I am trying to get rid of the SSO cookies after the session has been closed (invalidated). Normally, I would call HttpServletRequest.logout() to remove the cookies, but I cannot seem to get the HttpServletRequest to execute the logout method. Is there a way to get the HttpServletRequest or some other way in Vaadin to remove the SSO cookies?

Thanks,
Brian

Hi, I found a solution using VaadinServletService.getCurrentServletRequest().logout(); All seems to work.

Regards,
Brian