Reputation: 69
I want to review a deal. So i want to post a request. Can some one please help me in posting the request with 6 parameters
Web Service is : http://www.xxxxxx.in/rest/rate
Parameters are : userName, email, rating, comment, dealId,key,mobile no
Upvotes: 1
Views: 307
Reputation: 1789
There example:
string uri = "http://www.xxxxxx.in/rest/rate";
//data to post
string data = "userName={0}&email={1}&rating={2}&comment={3}&dealId={4}&key={5}&mobile={6}";
//fill data
data.Format(userName, email, ratings, comment, dealId, key, mobile);
//encode
byte[] byteArray = Encoding.UTF8.GetBytes (data);
//create request
HttpWebRequest request = WebRequest.Create(uri);
//set method
request.Method = "POST";
//set data length
request.ContentLength = byteArray.Length;
request.ContentType = "application/x-www-form-urlencoded";
//get stream and write into
Stream dataStream = request.GetRequestStream ();
dataStream.Write (byteArray, 0, byteArray.Length);
//do request
IAsyncResult asyncResult = request.BeginGetResponse(p =>
{
WebResponse response = request.EndGetResponse(p);
//call callback when get response
if (callback != null)
callback(response.GetResponseStream());
}, null);
You need set callback delegate Action<Stream> callback
Upvotes: 0
Reputation: 499
i would try something like this:
void Post()
{
WebClient client = new WebClient();
client.UploadStringCompleted += new UploadStringCompletedEventHandler(client_UploadStringCompleted);
client.Headers["Content-Type"] = "application/x-www-form-urlencoded";
client.Encoding = Encoding.UTF8;
client.UploadStringAsync(new Uri("http://www.example.com/api/path/"), "POST", "userName=userName&email=email&rating=rating&comment=comment&dealid=dealid&key=key&mobileno=mobileno");
}
void client_UploadStringCompleted(object sender, UploadStringCompletedEventArgs e)
{
MessageBox.Show(e.Result);
}
Upvotes: 0