0

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

user1047400
  • 45
  • 1
  • 2
  • 8

1 Answers1

1

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.

Jeen Broekstra
  • 21,642
  • 4
  • 51
  • 73