user1047400
user1047400

Reputation: 55

User logon with Apache Shiro and Sesame

I have a Sesame triple store where I store users account and I'm building a Java Web Application with a login form. I would like to use Apache Shiro to do this.

Does anyone know how to authenticate users using Shiro and Sesame?

Thank you. -Antonio

Upvotes: 0

Views: 169

Answers (1)

Jeen Broekstra
Jeen Broekstra

Reputation: 22042

You will need a custom Shiro Realm to be able to use Sesame as the underlying database. Since Sesame does not currently provide such a Realm implementation, you will have to implement your own. I expect that you can do so by creating a Sesame-specific extension of AuthenticatingRealm.

Upvotes: 1

Related Questions