Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i want to pass data from android application to sql server 2008 from through .net web service.. How to do so?

HttpClient httpClient = new DefaultHttpClient();
    HttpPost httpPost = new HttpPost(
            "http://10.0.2.2:51889/OMS/WebServices/Service.asmx/Test");

List<NameValuePair> nameValuePair = new ArrayList<NameValuePair>(2);
nameValuePair.add(new BasicNameValuePair("email", "abc"));
nameValuePair.add(new BasicNameValuePair("pwd", "123"));


// Url Encoding the POST parameters
try {
    httpPost.setEntity(new UrlEncodedFormEntity(nameValuePair));
} catch (UnsupportedEncodingException e) {
    // writing error to Log
    e.printStackTrace();
}

// Making HTTP Request
try {
    HttpResponse response = httpClient.execute(httpPost);


} catch (ClientProtocolException e) {
    // writing exception to log
    e.printStackTrace();

} catch (IOException e) {
    // writing exception to log
    e.printStackTrace();
}

Now how to get data which is returned by HttpResponse in .net WebService?

share|improve this question
You could post this question under asp .net category not in android. – Dinesh Jan 10 at 5:32

closed as not a real question by Jonathon Reinhart, Sankar Ganesh, Niranjan Kala, Anoop Vaidya, IceMAN Jan 10 at 7:33

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 0 down vote accepted

Write this String result = EntityUtils.toString(response.getEntity()); line after this line of your code HttpResponse response = httpClient.execute(httpPost); after use that your whole response is stored on result.

share|improve this answer
thanks.. i m getting result.. now how can i get that in .net as i want it in .net web service to save it in sql server? – abc Jan 10 at 5:25
@MonalGodiwala This is not Android Related Question and post another question for that. – Dipak Keshariya Jan 10 at 5:29
ok. thanks..... – abc Jan 10 at 5:34

Use the following code snippet to get the actual response of a HTTP POST call.

HttpResponse response = httpClient.execute(httpPost);
HttpEntity httpentity = response.getEntity();
String outResponse = EntityUtils.toString(httpentity);
outResponse = outResponse.trim();
share|improve this answer
this code is for .net or android? – abc Jan 10 at 5:19
For android only. – Dinesh Jan 10 at 5:21
but i want these data in .net web service.. – abc Jan 10 at 5:26

Not the answer you're looking for? Browse other questions tagged or ask your own question.