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

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

gmail - Is there any documentation for read-only access to the Google Contacts API? -

php - Controller/JToolBar not working in Joomla 2.5 -