Hello Ben,
The URL is:
http://www.jroller.com/page/vtatai/20050505#integrating_acegi_with_jsf
It is the same listed on Acegi's site under "External Web Articles".
Cheers,
Type: Posts; User: vtatai; Keyword(s):
Hello Ben,
The URL is:
http://www.jroller.com/page/vtatai/20050505#integrating_acegi_with_jsf
It is the same listed on Acegi's site under "External Web Articles".
Cheers,
Hello Johannes,
I've answered your doubts in my blog, please take a look there.
Cheers,
V.
Hello,
You can simply implement a custom UserDetails and return it using a custom AuthenticationDao.
HTH,
Victor
Thanks a lot Ben!
Regards,
Victor
Implementing it as a voter instead of a manager allows you to use other voters supplied by Acegi, leveraging all other mechanisms already provided by Acegi. And really there is no extra cost in...
Hello Julian,
Which version of Acegi are you using? Have you tried debugging your access decision manager and inspecting the values passed around? Also perhaps a better solution would be...
Hello,
I know that servlet forwards (as opposed to redirects) arent supposed to be secured by ACEGI as per the post below:
http://forum.springframework.org/showthread.php?t=11025
However...
Hello Ben,
I refactored my implementation and I did the following:
- Created a custom FilterInvocationDefinitionSource. It is not database driven because we already use a custom ACL provider...
Hello jonahliu,
What the document is trying to say is that using Spring in your project is very simple, adding a very small overhead (think of it as simply another jar in your project). Now if for...
Hello jonahliu,
I assume you have read:
http://acegisecurity.sourceforge.net/standalone.html
What did you not understand?
Regards,
Hello,
In an application we are developing there is a new requirement that ACL is used for controlling access to the web pages through servlet filters. As this was requested friday afternoon and...
Hello Julian,
Ok, but I really dont see why you need a singleton (they are usually an anti-pattern afterall) when you can simply inject the dependencies using Spring. For instance, if you have...
Hello jagarciaga,
Thanks for the compliments, I'll post the code on my blog, please take a look again later on...
What do you mean by a service locator? Something like JNDI or a...
I know this is quite old :(, but I finally managed to post a note on my weblog about it. You can read it at:
http://www.jroller.com/page/vtatai/20050505#integrating_acegi_with_jsf
Regards,
...
I'd be delighted to, I'll try to put it together over the weekend and I'll send it to you ok?
Regards,
Victor
It certainly is possible to integrate Spring / ACEGI with JSF, at the company I work at we have several projects being developed / deployed which use these technologies. The nice thing about Spring +...
Hello,
I got ACEGI working with JSF by implementing the ACEGI authentication process inside a JSF managed bean. This bean has a reference to the authentication manager, and it does all the work...
I would imagine a mechanism which "maps" a page (or set of pages) as a protected ACL object. Then we would be able to control access to the JSPs based on ACL info, allowing for example only users...
Just as a side question, does anybody know if there is also an ACL servlet filter?
Thanks,
Victor
I just checked the tags and they seem pretty cool, thanks a lot!
Regards,
V.
Yes, the easiest way is to simply move your login.jsp to a HTML file, say login.html, and then follow the regular ACEGI use. A somewhat harder solution is re-implementing the...
Hello,
I am also using ACEGI with JSF, the main problem I had was integrating the HTTP session authentication filter with a JSF form as JSF automatically generates the name for the form elements....
Hello,
In my web application I need to render certain components based on ACL info. In order to do so I would need a taglib, does it exist? I was looking on how to implement it, but I guess it...