You can find the full source code for this website in the Seam package in the directory /examples/wiki. It is licensed under the LGPL.
| Online: | 6 Members of 7812 |
| Forum: Seam Users |
30. Jun 2009, 16:16 CET | Link |
I'm trying to enable this single sign on in the application, by using jespa (implemented custom NtlmSecurityProvider and HttpSecurityFilter).
Now I have a little problem in the Seam Authenticator, where I have something like:
@In Context sessionContext;
public boolean autoLogin() {
Object autoLogin = sessionContext.get("NtlmHttpAuth");
...
sessionContext doesn't contain NtlmHttpAuth and so autoLogin is null.
Any ideas? Seam version is 2.1.2, previously it was 2.0.1 and I think this worked ok (but with jcifs, not jespa).
What type is Context ?
Try that instead:
-Guillaume
Thank you very much, that worked perfectly!