私は.net Webサービスを使用して、Androidアプリケーションから取得している応答をキャッチしています。Androidアプリケーションから以下の行に戻っています
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();
}
.net Web サービスでこの応答を取得するにはどうすればよいですか?
私はアンドロイドからこのようなデータを取得します
どうすればC#.netでそのデータを取得できますか???