Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Scout/JAXWS-RT/BasicAuthenticationHandler"

(Replaced content with "The Scout documentation has been moved to https://eclipsescout.github.io/.")
 
Line 1: Line 1:
{{ScoutPage|cat=JAXWS-RT}}
+
The Scout documentation has been moved to https://eclipsescout.github.io/.
[http://en.wikipedia.org/wiki/Basic_access_authentication 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 <code>#username</code> and <code>#password</code> of the respective {{ScoutLink|JAXWS-RT|AbstractWebServiceClient}}.
+

Latest revision as of 07:21, 18 March 2024

The Scout documentation has been moved to https://eclipsescout.github.io/.

Back to the top