Hide Forgot
When an @Asynchronous EJB call is performed, the security context is propagated to the thread handling the asynchronous call. When authentication is required in the asynchronous call (e.g. @RolesAllowed) this is handled by the JBossCachedAuthenticationManager. Thus there is usually no call to the LoginModule. However, when the JBossCachedAuthenticationManager has given up the corresponding cache entry, there is a call to the LoginModule. The LoginModule however, cannot access the ServletRequest via the PolicyContext and fails. We've experienced this behavior in two situation: - The user logs out, while @Asynchronous call is still running. - The cache maintained by the JBossCachedAuthenticationManager exceeds it's limits and cached entries are removed. The expected behaviour is that the original security context (attributes) are copied over to the async invocation and updates to that security context later on in a separate thread shouldn't affect the ongoing async EJB invocation.
*** This bug has been marked as a duplicate of bug 1005093 ***