Timeout for Multipart HTTP post -
how set timeout http multipart file post. want upload image server @ time internet connection not there how handle situation?
finally found solution here code set timeout httpclient
httpparams httpparameters = new basichttpparams();
int timeoutconnection = 30000; httpconnectionparams.setconnectiontimeout(httpparameters,timeoutconnection);
int timeoutsocket = 30000;
httpconnectionparams.setsotimeout(httpparameters, timeoutsocket);
httpclient httpclient = new defaulthttpclient(httpparameters);
Comments
Post a Comment