我正在开发一个应用程序,在其中我使用 KSOAP2 库 2.5 来解析 wsdl 基础 webservices。现在我需要在代码中设置 ConnectionTimeOut,所以我参考了一些站点并获得了这样的解决方案......
HttpTransportSE androidHttpTransport = new HttpTransportSE(
URL,0);
并设置 catch Exception ...
catch (InterruptedIOException e) {
Log.e(TAG, "Connection Time Out "+e);
}
但它不会让我在常见情况下执行此代码超时......所以请帮我解决这个问题。