I am creating an iOS app in which I want to test several servers with a HTTP request. The app needs to look at a plist file with all the servers to test and expected end results, then execute the test and return a response code (i.e.: 200, 404, etc)
This information needs to then be saved to a server for later evaluation.
The problem I am having is I am unable to find a good viable way to just test a server. I don't need to download anything or save any content from the server, just test it.
How might some of you go about this? AFNetworking? Reachability? NSURLConnection?
Thanks!