Re: Help with integrating NTLM in wicket application

2010-03-24 Thread Bryan Montgomery
NTLM in wicket application Hello, I have two applications, one a stand alone web app and one wicket based. Currently they both use form authentication however I am trying to add NTLM authentication for SSO from our windows intranet. Leveraging jcifs, I've been able to do this pretty easily

RE: Help with integrating NTLM in wicket application

2010-03-24 Thread Josh Chappelle
with integrating NTLM in wicket application Hello, I have two applications, one a stand alone web app and one wicket based. Currently they both use form authentication however I am trying to add NTLM authentication for SSO from our windows intranet. Leveraging jcifs, I've been able to do

Re: Help with integrating NTLM in wicket application

2010-03-24 Thread Bryan Montgomery
); } } @Override public boolean isVersioned() { return false; } } -Original Message- From: Bryan Montgomery [mailto:mo...@english.net] Sent: Wednesday, March 24, 2010 3:31 PM To: users@wicket.apache.org Subject: Re: Help with integrating NTLM in wicket

RE: Help with integrating NTLM in wicket application

2010-03-24 Thread Josh Chappelle
No problem Bryan. Glad I can help. Let me know if you hit a problem. Josh -Original Message- From: Bryan Montgomery [mailto:mo...@english.net] Sent: Wednesday, March 24, 2010 8:22 PM To: users@wicket.apache.org Subject: Re: Help with integrating NTLM in wicket application oops, sorry

RE: Help with integrating NTLM in wicket application

2010-03-22 Thread Juan Carlos Garcia M.
Message- From: Bryan Montgomery [mailto:mo...@english.net] Sent: Friday, March 19, 2010 3:36 PM To: users@wicket.apache.org Subject: Help with integrating NTLM in wicket application Hello, I have two applications, one a stand alone web app and one wicket based. Currently they both use

RE: Help with integrating NTLM in wicket application

2010-03-21 Thread Josh Chappelle
: Help with integrating NTLM in wicket application Hello, I have two applications, one a stand alone web app and one wicket based. Currently they both use form authentication however I am trying to add NTLM authentication for SSO from our windows intranet. Leveraging jcifs, I've been able to do

Re: Help with integrating NTLM in wicket application

2010-03-20 Thread Josh Chappelle
Bryan, I'm out of town right now but when I get back to my computer I will send you our ntlm page code. We have an AuthorizationStrategy that redirects the user to NTLMPage and it handles all the header stuff like you are talking about. If I don't send it to you Sunday then email me to

Help with integrating NTLM in wicket application

2010-03-19 Thread Bryan Montgomery
Hello, I have two applications, one a stand alone web app and one wicket based. Currently they both use form authentication however I am trying to add NTLM authentication for SSO from our windows intranet. Leveraging jcifs, I've been able to do this pretty easily with the stand alone web app.