Skip to main content
Jump to: navigation, search

Scout/JAXWS-RT/Webservice Provider authentication

< Scout
Revision as of 18:28, 10 November 2011 by Daniel.wiehl.yahoo.com (Talk | contribs) (New page: {{ScoutPage|cat=JAXWS-RT}} Authentication of webservice requests is not done by Serlvet filters, but webservice handlers instead. Scout provides the following authentication mechanism: * ...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


Scout
Wiki Home
Website
DownloadGit
Community
ForumsBlogTwitterG+
Bugzilla
Bugzilla

Authentication of webservice requests is not done by Serlvet filters, but webservice handlers instead. Scout provides the following authentication mechanism:

This list is not complete, meaning that you can implement your own authentication mechanism.

An authentication handler knows how to extract credentials from within a request. In turn, it passes the requests's credentials to a configured credential validation strategy ICredentialValidationStrategy to be validated. This enables you to arbitrary combine an authentication mechanism with various credential validation strategies such as LDAP, database or config.ini.

Back to the top