On Tue, Apr 13, 2021 at 9:22 PM Tim K wrote:
>
> On Fri, Apr 9, 2021 at 7:48 AM Tim K wrote:
> > As mentioned in that url, doing a pre-login of sorts before calling
> > HttpServletRequest.login() may be a workaround to accomplish this, but
> > then I would need to call my backend authentication s
On Fri, Apr 9, 2021 at 7:48 AM Tim K wrote:
> As mentioned in that url, doing a pre-login of sorts before calling
> HttpServletRequest.login() may be a workaround to accomplish this, but
> then I would need to call my backend authentication service twice for
> each login.
>
> -Tim
I've been looki
On Thu, Apr 8, 2021 at 1:38 PM Christopher Schultz
wrote:
>
> I have some sketches of something like this literally on paper somewhere
> around here to create an interface for applications subscribe to
> authentication events. It would, for example, allow you to write a
> "failed login" record to
Tim,
On 4/8/21 09:11, Tim K wrote:
On Wed, Apr 7, 2021, 3:43 PM Christopher Schultz <
ch...@christopherschultz.net> wrote:
You can't, using the existing API.
You might be able to do it with some nasty ThreadLocal solution, but I
think you are stuck without resorting to legerdemain.
-chris
On Wed, Apr 7, 2021, 3:43 PM Christopher Schultz <
ch...@christopherschultz.net> wrote:
> You can't, using the existing API.
>
> You might be able to do it with some nasty ThreadLocal solution, but I
> think you are stuck without resorting to legerdemain.
>
> -chris
Would it be possible to imple
Tim,
On 4/7/21 14:22, Tim K wrote:
I have a custom realm which I'm receiving custom messages back within
the realm code and I want to display these messages on the login page,
but I have no idea how this can be accomplished with a custom realm
which is overriding the Principle authenticate metho
I have a custom realm which I'm receiving custom messages back within
the realm code and I want to display these messages on the login page,
but I have no idea how this can be accomplished with a custom realm
which is overriding the Principle authenticate method. Any help would
be appreciated, Tom