sunil_divum
sunil_divum

Reputation: 69

Posting request in wp7

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

Answers (3)

Eugene
Eugene

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

pieter_dv
pieter_dv

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

Jaapjan
Jaapjan

Reputation: 3385

The RestSharp library gives you an easy way to do Rest requests... and their front page has plenty of examples too!

Upvotes: 1

Related Questions