How do I provide app level login?
I've read the tutorials on creating custom login modules (http://dev.day.com/docs/en/crx/current/deploying/custom-login-modules. html) but I don't think this is what I need. I need to allow a user of a...
View ArticleRe: How do I provide app level login?
This is not the case. JAAS supports multiple LoginModules (which is seen in the JAAS configuration file in the documentation page you linked to) each of which is flagged with required, requisite,...
View ArticleRe: How do I provide app level login?
You can also refer to http://www.wemblog.com/2013/03/how-to-create-custom-authentication.htm l in case you are planning to use custom auth handler with custom module. Yogesh
View ArticleRe: How do I provide app level login?
Thanks to your guidance, I've made some progress on this - I've configured JAAS to allow two login modules, both sufficient. The CRXLoginModule still works. To figure out why mine is not working...
View ArticleRe: How do I provide app level login?
To answer my own question, the login module needs to create a Login Token. I found some code to do that here (commit method): https://github.com/activecq/com.activecq.samples/blob/master/core/src/...
View ArticleHow do I provide app level login?
I've read the tutorials on creating custom login modules (http://dev.day.com/docs/en/crx/current/deploying/custom-login-modules.html) but I don't think this is what I need. I need to allow a user of a...
View ArticleRe: How do I provide app level login?
This is not the case. JAAS supports multiple LoginModules (which is seen in the JAAS configuration file in the documentation page you linked to) each of which is flagged with required, requisite,...
View ArticleRe: How do I provide app level login?
You can also refer to http://www.wemblog.com/2013/03/how-to-create-custom-authentication.html in case you are planning to use custom auth handler with custom module. Yogesh
View ArticleRe: How do I provide app level login?
Thanks to your guidance, I've made some progress on this - I've configured JAAS to allow two login modules, both sufficient. The CRXLoginModule still works. To figure out why mine is not working...
View ArticleRe: How do I provide app level login?
To answer my own question, the login module needs to create a Login Token. I found some code to do that here (commit method):...
View Article