Re: [Wicket-user] NTLM Authentication

2007-04-20 Thread Zenrique Steckelberg
Ok, found out that this problem actually relates to Internet Explorer... one more grief to my MS black list of sorrows! ;) Fixed it by using JCIFS library, which implements a servlet filter in the same way mine was doing, with just a little difference: their works! (Got to remember to never

Re: [Wicket-user] NTLM Authentication

2007-04-19 Thread Zenrique Steckelberg
Hi, What I have found out until now is that somehow some request parameters disappear when I use NTLM authentication procedure. I have changed my app to use a servlet filter to do the NTLM conversation only once upon first app access by a user, and even managed to not create a session in the

[Wicket-user] NTLM Authentication

2007-04-18 Thread Zenrique Steckelberg
Hi all, I work in a windows mostly environment, thus decided to use NTLM authentication so I wouldn't need to store and check users passwords. On each WebRequest and WebResponse I check if the user is identified or not, and if not I go through NTLM's request/response procedure in order to get

Re: [Wicket-user] NTLM Authentication

2007-04-18 Thread Peter Thomas
Hi, Maybe it is a better idea to do this only once as part of an AuthorizationStrategy set up in your Application class? Then after creating a session everything works like normal until logout. Example of a real life AuthorizationStrategy can be found here, in this particular example there is