I'm new to Web development i want to develop simple app which receives request form mobile parse request body and give me response.
Application shouls use HTTP, JSON
My request from mobile side
Request URL = http://<server-url>/AppName/auth
Request Body = { "user_name" : "abcd", "password":"pass", "time":134124343435}
Response form Web application should be
Response Body = { "Result" : 1, "msg":"Authentication Success", "suid": "uuddi2013092121324434", "time":134124343435}
I want it to develop in C#, can i use WCF? or I there any other way? I referred these 2 links, but they are not parsing request body.
http://www.codeproject.com/Articles/167159/How-to-create-a-JSON-WCF-RESTful-Service-in-60-sec
Please help me with some link to refer or provide me sample code..
Thanks in Advance