Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have been trying to upload an image to the server and i am currently using HttpURLConnection to upload and to execute this particular line

int serverResponseCode = connection.getResponseCode();

It takes about an minute which is not a good one. Is there any other way to upload the image to server in a fast manner? I don't want to change the server side process because its working fine with the iPhone.

share|improve this question
What's the actual size of the image and what's the device's bandwidth? – Mat Sep 7 '11 at 6:30
Actual image size 1.38MB and Device upload speed is 4.41mbps – Vinoth Kumar Sep 7 '11 at 6:51
@Vinoth Kumar did you use a bandwidth tester app to get that value of 4.41mbps? or is it theoretical? either way, bandwidth != speed, and there are a lot of reasons an upload could seem slow (disk read time, network latency, contention on the server, ...) – CrackerJack9 Sep 7 '11 at 17:38

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.