Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be 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/WsseUsernameTokenAuthenticationHandler"

(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/.
WSSE Username Token is an authentication mechanism to include the user's credentials in the SOAP message headers which also works across firewalls and proxy servers.
+
 
+
However, the disadvantage of WSSE UsernameToken Authentication is that it transmits unencrypted 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.
+
 
+
==Webservice Provider==
+
Handler to protect your webservice with WSSE Username Token message level authentication.
+
==Webservice Consumer==
+
Handler to include user's credentials in webservice requests by using WSSE Username Token message level 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:22, 18 March 2024

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

Back to the top