Back to project page FrameLite.
The source code is released under:
GNU General Public License
If you think the Android project FrameLite listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.miku.framelite.api.webservice; /*from www . j a v a 2s . com*/ import java.io.IOException; import org.ksoap2.transport.HttpTransportSE; import org.ksoap2.transport.ServiceConnection; public class WebServiceHttpTransportSE extends HttpTransportSE { private int mConnectTimeout = 300; private int mReadTimeout=0; public WebServiceHttpTransportSE(String url, int connectTimeout,int readTimeout) { super(url); mConnectTimeout = connectTimeout; mReadTimeout=readTimeout; } public WebServiceHttpTransportSE(String url) { super(url); } protected ServiceConnection getServiceConnection() throws IOException { return new WebServiceConnectionSE(url,mConnectTimeout,mReadTimeout); } }