Reputation: 23522
For implementing SOAP web services, what are benefits and drawbacks of each of these security solutions
Would TLS certificates alone provide enough security for latter being more or less redundant, or should I also use HTTP digest or/and WS-Security? Especially, what benefits WS-Security gives over TLS/HTTP -level authentication and security?
Upvotes: 1
Views: 1360
Reputation: 123551
These are different technologies for different tasks:
If you are familiar with mail transport then WS-Security is similar to using PGP or S/MIME to encrypt the mails end-to-end and also sign the mails to prove who the sender is. TLS instead only secures the transport between the mail client and mail server or between mail servers, i.e. data in transit but not at rest. And authentication in mail transport only authenticates a specific hop and not end-to-end.
Upvotes: 3