复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311在Android端为了与服务器端进行通信有几种方法:1、Socket通信2、WCF通信3、WebService通信。因为ASP.net中发布WebService非常简单,所以我们选择用WebService来进行通信。在Android端调用.Net的WebService又有两种方法:1、开源的ksoap-2类库进行soap通信2、通过Http请求来调用,我们选择第二种方法,简单快捷。 首先,先准备服务器端,在web.config里面的的system.Web节点添加 <webServices> <protocols> <add name= "HttpPost"/> <add name= "HttpGet"/> </protocols> </webServices> 否则通过“WsUrl/方法”的路径访问WebService时会出现“因URL 意外地以“/方法名”结束,请求格式无法识别。执行当前Web 请求期间生成了未处理的异常。可以使用下面的异常堆栈跟踪信息确定有关异常原因和发生位置的信息。 ”的错误。在IIS中部署网站,分配“8082”端口给该网站,然后在Windows防火墙的“高级设置”中添加“入站规则”,将“8082”端口添加访问权限到入站规则中,如果不添加入站规则,则在打开windows防火墙的情况下局域网内的客户端是不能够通过"http://192.168.1.122:8082"访问到该网站的,会显示“无法打开网页”的错误,因此更不可能通过“http://192.168.1.122:8082/WebServices/TestService.asmx/GetUserList”访问到WebMethod。新建一个名为TestService.asmx的WebService,并在TestService.asmx中新建两个方法,一个带参数,一个不带参数,如下: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Services; //using System.Web.Script.Services;//[ScriptMethod(ResponseFormat=ResponseFormat.Json)]所需引用的命名空间 using BLL; using Model; namespace Test.WebServices { /// <summary> /// TestService的摘要说明 /// </summary> [WebService(Namespace = "http://www.testservice.com/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] [System.ComponentModel.ToolboxItem(false)] // 若要允许使用ASP.NET AJAX 从脚本中调用此Web 服务,请取消对下行的注释。 [System.Web.Script.Services.ScriptService]//这个属性必须把注释取消掉 public class TestService: System.Web.Services.WebService { [WebMethod] //[ScriptMethod(ResponseFormat=ResponseFormat.Json)] public string HelloWorld() { return "Hello World"; } [WebMethod] // [ScriptMethod(ResponseFormat = ResponseFormat.Json)]//不需要该属性,Android端设置Http头的Content-Type为application/json即可返回JSON数据格式给客户端 public List<ModelUser> GetUserList() { BLLUser bllUser = new BLLUser(); return bllUser.GetModelList(); } [WebMethod] //[ScriptMethod(ResponseFormat = ResponseFormat.Json)] public ModelUser GetUserByUserName(string strUserName) { BLLUser bllUser = new BLLUser(); return bllUser.GetModel(strUserName); } } public class ModelUser { public string UserName{get;set;}; public string Password{get;set;}; } } www.2cto.com ASP.net服务器端的的代码准备好之后开始编写Android客户端的代码,如下: package com.wac.Android.TestService; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import org.apache.http.HttpEntity; import org.apache.http.HttpHost; import org.apache.http.HttpResponse; import org.apache.http.client.ClientProtocolException; import org.apache.http.client.HttpClient; import org.apache.http.client.entity.UrlEncodedFormEntity; import org.apache.http.client.methods.HttpPost; import org.apache.http.entity.StringEntity; import org.apache.http.impl.client.DefaultHttpClient; import org.apache.http.protocol.HTTP; import org.apache.http.util.EntityUtils; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; import android.app.Activity; import android.os.Bundle; import android.util.Log; import android.view.View; import android.view.View.OnClickListener; import android.widget.TextView; import android.widget.Button; public class TestServiceActivity extends Activity { private static final String TAG = "TestService"; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); OnClickListener listener = new OnClickListener() { public void onClick(View v) { try { //1、调用不带参数的WebMethod final String SERVER_URL = "http://192.168.1.122:8082/WebServices/TestService.asmx/GetUserList"; HttpPost request = new HttpPost(SERVER_URL); // 根据内容来源地址创建一个Http请求 request.addHeader("Content-Type", "application/json; charset=utf-8");//必须要添加该Http头才能调用WebMethod时返回JSON数据 HttpResponse httpResponse = new DefaultHttpClient().execute(request); // 发送请求并获取反馈 // 解析返回的内容 if (httpResponse.getStatusLine().getStatusCode() !=404) //StatusCode为200表示与服务端连接成功,404为连接不成功 { //因为GetUserList返回的是List<ModelUser>,所以该数据的JSON格式为: //{"d":[{"__type":"Model.ModelUser","UserName":"wa1","Password":"123"},{"__type":"Model.ModelUser","UserName":"wa2","Password":"123"}]} String result = EntityUtils.toString(httpResponse.getEntity()); Log.i("result",result);// System.out.println(result); JSONArray resultArray=new JSONObject(result).getJSONArray("d"); //获取ModelUser类型的JSON对象数组 TextView tv=(TextView)findViewById(R.string.textview1); tv.setText(((JSONObject)resultArray.get(0)).getString("UserName").toString()); //获取resultArray第0个元素中的“UserName”属性 } /* //2、调用带参数的WebMethod final String SERVER_URL = "http://192.168.1.122:8082/WebServices/TestService.asmx/GetUserByUserName"; // 带参数的WebMethod HttpPost request = new HttpPost(SERVER_URL); // 根据内容来源地址创建一个Http请求 request.addHeader("Content-Type", "application/json; charset=utf-8");//必须要添加该Http头才能调用WebMethod时返回JSON数据 JSONObject jsonParams=new JSONObject(); jsonParams.put("strUserName", "wa1");//传参,如果想传递两个参数则继续添加第二个参数jsonParams.put("param2Name","param2Value") HttpEntity bodyEntity =new StringEntity(jsonParams.toString(), "utf8");//参数必须也得是JSON数据格式的字符串才能传递到服务器端,否则会出现"{'Message':'strUserName是无效的JSON基元'}"的错误 request.setEntity(bodyEntity); HttpResponse httpResponse = new DefaultHttpClient().execute(request); // 发送请求并获取反馈 // 解析返回的内容 if (httpResponse.getStatusLine().getStatusCode() !=404) //StatusCode为200表示与服务端连接成功,404为连接不成功 { //因为GetUserByUserName返回的是ModelUser,所以该数据的JSON格式为: //{"d":{"__type":"Model.ModelUser","UserName":"wa1","Password":"123"}} String result = EntityUtils.toString(httpResponse.getEntity()); Log.i("result",result); JSONObject resultJSON=new JSONObject(result).getJSONObject("d");//获取ModelUser类型的JSON对象 TextView tv=(TextView)findViewById(R.string.textview1); tv.setText(resultJSON.getString("UserName").toString()); Log.i("resultJSON",resultJSON); } */ } catch (Exception e) {} }}; Button button = (Button) findViewById(R.id.button1); button.setOnClickListener(listener); } } 至此,客户端访问服务端的代码已经完成。
最后
以上就是怕黑花生最近收集整理的关于Android客户端调用Asp.net的WebService的全部内容,更多相关Android客户端调用Asp.net内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复