Android 4.0模拟器中调用webservice的配置
我尝试使用 Android 调用 Web 服务。我使用了 httpclient 以及 SOAP。但在每种情况下我都没有得到任何响应。而且例外情况为 NULL。
使用 httpclient 这条线没有执行:
responsePOST = client.execute(post);
那么,我需要在我的 android 模拟器中配置任何属性来调用 web 服务吗?请帮助...
i am try to call webservice using Android.I have used httpclient as well as SOAP.But in each case i am not getting any response.Also the exception is NULL.
using httpclient this line is not executing:
responsePOST = client.execute(post);
So,do i need to configure any properties in my android emulator to call webservices?Please help...
您是否在清单中授予了 Internet 访问权限
android.permission.INTERNET
-Rajdeep
Have you given permission in the manifest for Internet access
android.permission.INTERNET
-Rajdeep