Application agents: Difference between revisions
(Add links to CS in lookup) |
No edit summary |
||
(35 intermediate revisions by 10 users not shown) | |||
Line 1: | Line 1: | ||
{{New Docs}} | |||
{{Raven Legacy}} | |||
To use Raven authentication on a webserver you need to implement a 'Application Agent'. This could be built-in to a web application (such as a CGI script or a PHP program), or it could be an 'Authentication handler' for the webserver that you are using. | To use Raven authentication on a webserver you need to implement a 'Application Agent'. This could be built-in to a web application (such as a CGI script or a PHP program), or it could be an 'Authentication handler' for the webserver that you are using. | ||
This is a pseudo-code example of how an Application Agent might be | |||
implemented: | |||
[[Pseudo-code_Application_Agent]] | |||
Application Agents are available for various platforms and with varying levels of support. | Application Agents are available for various platforms and with varying levels of support. | ||
Line 5: | Line 11: | ||
If you add something new here you might want to send a short announcement to [mailto:cs-raven-announce@lists.cam.ac.uk cs-raven-announce@lists.cam.ac.uk] - it's a moderated list but relevant posts will be approved. | If you add something new here you might want to send a short announcement to [mailto:cs-raven-announce@lists.cam.ac.uk cs-raven-announce@lists.cam.ac.uk] - it's a moderated list but relevant posts will be approved. | ||
== | ==Supported by the [[inst:UIS | University Information Services]]== | ||
* [ | * [[Apache authentication module]] (for Apache 2.0, 2.2, 2.4) | ||
** [[Installing the Apache authentication module under MacOS X]] | |||
==Provided by the [[inst: | ==Provided by the [[inst:UIS | University Information Services]]== | ||
... but not officially supported | ... but not officially supported | ||
* [http://raven.cam.ac.uk/project/iis/ Windows IIS authentication module] (obsolete - for IIS V6 ONLY) Use [[Shibboleth_documentation_and_HOWTOs]] instead. | |||
* [[Ucam-WebAuth-AA Perl module]] | * [[Ucam-WebAuth-AA Perl module]] | ||
* [[PHP library]] | * [[PHP library]] | ||
* [[Servlet filter]] | |||
* [[Apache lookup module]] Deprecated, for Apache 2.2 only (see [[Mod authnz ldap]] for a better way to implement access control in Apache based on information in Lookup). | |||
* [https://wiki.cam.ac.uk/raven/Django-ucamwebauth Django module ] Currently used by Development Operations within UIS | |||
==Provided by others== | ==Provided by others== | ||
Line 24: | Line 36: | ||
* [[JAVA Servlet Library]] | * [[JAVA Servlet Library]] | ||
* [[Python]] | * [[Python]] | ||
* [[Catalyst]] | |||
* [[Drupal]] | |||
* [https://github.com/misd-service-development/raven-bundle Symfony2] |
Latest revision as of 11:46, 3 March 2020
We're working on improving Raven resources for developers and site operators.
Try out the new Raven documentation for size.
The WebAuth protocol should not be used for new sites or applications.
To use Raven authentication on a webserver you need to implement a 'Application Agent'. This could be built-in to a web application (such as a CGI script or a PHP program), or it could be an 'Authentication handler' for the webserver that you are using. This is a pseudo-code example of how an Application Agent might be implemented: Pseudo-code_Application_Agent
Application Agents are available for various platforms and with varying levels of support.
If you add something new here you might want to send a short announcement to cs-raven-announce@lists.cam.ac.uk - it's a moderated list but relevant posts will be approved.
Supported by the University Information Services
- Apache authentication module (for Apache 2.0, 2.2, 2.4)
Provided by the University Information Services
... but not officially supported
- Windows IIS authentication module (obsolete - for IIS V6 ONLY) Use Shibboleth_documentation_and_HOWTOs instead.
- Ucam-WebAuth-AA Perl module
- PHP library
- Servlet filter
- Apache lookup module Deprecated, for Apache 2.2 only (see Mod authnz ldap for a better way to implement access control in Apache based on information in Lookup).
- Django module Currently used by Development Operations within UIS
Provided by others
- Tomcat authenticator and JAAS implementation
- Tomcat Valve
- Ruby Support (including CGI, Webrick and Ruby on Rails)
- JAVA Servlet Library
- Python
- Catalyst
- Drupal
- Symfony2