I\'m using Corona SDK to post data to my C# server:
headers[\"Content-Type\"] = \"application/x-www-form-urlencoded\" headers[\"Accept-Language\"] = \"en-US\" l
This actually works great:
var body = this.Request.Body; int length = (int) body.Length; // this is a dynamic variable byte[] data = new byte[length]; body.Read(data, 0, length); Console.WriteLine(System.Text.Encoding.Default.GetString(data));