我需要一个有效的示例/教程,介绍如何将输入数据从Android传递到.net Web服务以及将结果检索到Android应用程序。
请分享您可能认为与我的需求相关的指南,示例和教程的任何链接。
答案 0 :(得分:1)
你可以创建一个Rest Webservice,这里是tutorial,你可以使用URI传递输入数据,你应该计划你的URI应该如何发布客户名称:
[OperationContract]
[WebInvoke(Method = "POST",
ResponseFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Wrapped,
UriTemplate = "json/post-customer/{name}")]
void postCustomer(string name);
使用客户ID获取客户数据:
[OperationContract]
[WebInvoke(Method = "GET",
ResponseFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Wrapped,
UriTemplate = "json/get-customer/{id}")]
Customer getCustomer(string id);
然后在托管您的网络服务后,您需要使用HTTP客户端从您的Android应用程序访问它,例如:
String uri = "uri to your service";
HttpClient httpclient = new DefaultHttpClient();
HttpGet request = new HttpGet(uri);
ResponseHandler<String> handler = new BasicResponseHandler();
String result = null;
try {
result = httpclient.execute(request, handler);
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
httpclient.getConnectionManager().shutdown();
之后你应该在“result”中有一个字符串,这个字符串代表你的响应(json或xml)。
希望此信息可以帮助您。
答案 1 :(得分:0)
这里给出小样本试试这个帖子
public void post(String appid,String custlogid,String cityareaid,String mosqname,String mosqid,String lat,String lon){
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(globalconstant.URL_mosquepost);
UrlEncodedFormEntity form;
// Add your data
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(6);
nameValuePairs.add(new BasicNameValuePair("APPUDID", appid));
nameValuePairs.add(new BasicNameValuePair("CUSTLOGID", custlogid));
nameValuePairs.add(new BasicNameValuePair("CITYAREAID", cityareaid));
nameValuePairs.add(new BasicNameValuePair("CITYMOSQUENAME", mosqname));
nameValuePairs.add(new BasicNameValuePair("CITYMOSQUEID", "0"));
nameValuePairs.add(new BasicNameValuePair("LATITUDE", lat));
nameValuePairs.add(new BasicNameValuePair("longitude", lon));
try {
form = new UrlEncodedFormEntity(nameValuePairs,"UTF-8");
httppost.setEntity(form);
Log.d("myapp", "works till here. 2");
try {
HttpResponse response = httpclient.execute(httppost);
Log.d("myapp", "response " + response.getStatusLine().getStatusCode()+"\n"+EntityUtils.toString(response.getEntity()));
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
}