What kind of security do I need for the following WCF Rest scenario?
The Response format can be either JSON or XML.
The clients accessing the Service(s) will be web browsers, IPhones, Android Phones, all kinds of smart phones and other types of devices.
The username and password for the users will be stored in a sql server开发者_运维问答 database.
I can't pass the username and password in the UriTemplate.
There will be SSL.
If there is anything else you would like to know in order to help you help me, just ask?
Basic Authentication over SSL should probably be sufficient unless you are dealing with very sensitive data.
Without knowing more about the application it is difficult to provide a better answer.
精彩评论