Possible Duplicate:
How secure is sending sensitive data over https?
JSON data to web service- how do define expected JSON data
I am building a REST web service that accepts JSON as its payload. Now, my web service is very simple. It simply accepts data from a client system and creates an order in our system ( the web service is basically a wrapper for existing functionality).
Now, I authenticate users through a username and password in the application. Do I simply ask them to provide their username/password in the JSON data that they send? Is this secure?
The service runs over HTTPS.
