Reputation: 68750
We have a WCF RESTful service which is to be consumed by Android (Java) and iPhone/iPad devices running MonoTouch (.NET)
What security options can WCF support which Android (Java) and iPhone (.NET) take advantage of?
Upvotes: 3
Views: 381
Reputation: 364279
For interoperability reason the best security option is HTTPS for confidentiality and integrity and either custom or HTTP Basic authentication.
Upvotes: 2