On Fri, Mar 23, 2012 at 10:19 AM, micha899 <[email protected]> wrote:
> Atm. I have implemented this with the tynamo security framework. I can't
> access the "tynamo users mailing list". Am I the only one who cant access
> it?
You have to subscribe via xircles.codehaus.org. What's the error you are seeing?
> My problem with the tynamo configuration is:
> i've implemented my own Authentication realm which returns on
> doGetAuthenticationInfo a new SimpleAuthenticationInfo("John", "John",
> getName());
> just for testing.
> I've implemented this in my AppModule:
> configuration.add(factory.createChain("/**").add(factory.authc()).build());
> configuration.add(factory.createChain("/administration").add(factory.roles(),
> "Administration").build());
> Now i get to a form login but cant login. I will be redirected to the
> login page without error message. I think i have to exclude the login url
> from my secure area
> but all my ideas semms to be not working...
So you are handling login on your own and have your own login page?
You need to let everybody access it *and* the url you are posting the
login to, something like this with the provided login component,
*before* the rest of your rules:
configuration.add(factory.createChain("/login.loginform.tynamologinform").add(factory.anon()).build());
Kalle
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]