Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to test my iPhone and Android application with poor internet. I remember there was a program I read about a while back that would fake different types of poor internet. Does anyone remember what this program was called or if there is something similar I can use to accomplish this task?

share|improve this question
4  
What does this have to do with PHP or JavaScript? – BoltClock Mar 16 '12 at 18:46
1  
Have you checked the simulator options? stackoverflow.com/questions/7045136/… – Joe Mar 16 '12 at 18:47
superuser.com/questions/330501/… looks like it might help. – Ben Barden Mar 16 '12 at 18:48
@BoltClock This is dealing with a mobile application and a web service. So those that are developing with PHP and JavaScript have the same need. – slick28 Mar 16 '12 at 18:49

4 Answers

The one that I use and recommend is Charles Proxy. You set it up so that your iPhone or Android uses it as the proxy. Then it can throttle your connection to simulate poor network conditions like 3G.

It has a lot of other useful features like being able to track and inspect all your HTTP requests and responses which is really helpful when writing apps that access web services.

share|improve this answer
Seconded for Charles. Another option is WebScarab NG (free, but Charles is totally worth the purchase price) – MightyE Mar 16 '12 at 18:55

For your iOS applications, Apple has a program called Network Link Conditioner for free for Lion users as part of xCode. For your Android apps, you can probably use Netlimiter.

Netlimiter: http://www.netlimiter.com/

share|improve this answer

A strategy to fake poor internet could be to open up sockets and send data as quickly as you can - the more threads that are doing this, the more of your device's internet access will be taken up, thus leaving less for the app. For example: if you have 1 other thread sending data, your bandwidth will be halved; if you have 3 other threads, only a quarter will be left for your application, and so on...

I imagine that this is the strategy employed by the program about which you read (although there are other ways in which this could be accomplished).

share|improve this answer

There's the Apple Link Conditioner which is included with all recent installs of the developer tools. It'll be in system preferences once it's installed.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.