6

I understand this is a long shot but, would there happen to be a clojure library for responding to kerberos over http (aka spnego) requests?

I'm currently looking into using spring-security framework for this but thought i'd ask about a more clojure friendly approach just in case.

Arthur Ulfeldt
  • 90,827
  • 27
  • 201
  • 284

1 Answers1

0

There's nothing special involved to integrate a clojure app with Spring Security. However, you are bound by its implementation as a servlet filter, so you cannot easily use it under a generic http library. Under a j2ee container, it is a good choice.

gtrak
  • 5,598
  • 4
  • 32
  • 41