android 设置 webService 超时时间

ksoap2它的2系列的jar包是没有超时时间的,所以看到网上有人说修改源码,在什么ServiceConnection接口中新增一个setConnectTimeOut(int timeOut)的方法

时间过了这么久了,我看的博客是10年写的,现在3系列是不用了,可以在HttpTransportSE的构造函数中传

先附一段源码说明原因
android 设置 webService 超时时间_第1张图片

附使用

  // 创建HttpTransportSE对象,传递WebService服务器地址和设置超时时间
   HttpTransportSE httpTransportSE = new HttpTransportSE(url,1000*60*3);

我设置的是3分钟

遇到这个问题的朋友,就不要再去麻烦的重写源码了

下载地址,不管用的话,去搜,ksoap2 的 3.2.0

你可能感兴趣的:(android 设置 webService 超时时间)