Ian Vink
Ian Vink

Reputation: 68750

WCF REST Security Options for clients not all using .NET

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

Answers (1)

Ladislav Mrnka
Ladislav Mrnka

Reputation: 364279

For interoperability reason the best security option is HTTPS for confidentiality and integrity and either custom or HTTP Basic authentication.

Upvotes: 2

Related Questions