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

Popular posts from this blog

jquery - Invalid Assignment Left-Hand Side -

java - Play! framework 2.0: How to display multiple image? -

asp.net mvc - Implementing normal user/pass, Twitter & Facebook auth -