Skip to main content
Jump to: navigation, search

Scout/JAXWS-RT/BasicAuthenticationHandler


Scout
Wiki Home
Website
DownloadGit
Community
ForumsBlogTwitterG+
Bugzilla
Bugzilla

Basic Access Authentication is an authentication mechanism to include user's credentials in the HTTP headers. Basic authentication also works across firewalls and proxy servers.

However, the disadvantage of Basic authentication is that it transmits unencrypted base64-encoded passwords across the network. Therefore, you only should use this authentication when you know that the connection between the client and the server is secure. The connection should be established either over a dedicated line or by using Secure Sockets Layer (SSL) encryption and Transport Layer Security (TLS).

Webservice Provider

Handler to protect your webservice with Basic Access Authentication.

Webservice Consumer

Handler to include user's credentials in webservice requests by using Basic Access Authentication. User's credentials are configured in config.ini by specifying the properties #username and #password of the respective AbstractWebServiceClient.

Back to the top