I am having problem with xmlparsing with post method. API URL :http://XXX.XXX.X.XX/api/user.php Function Name : getUserList
Ok firstly if I use a NSURLReuqest(non mutable) as following, the the connection do timeout accordingly to what was set.
Currently I know I can send post data to URL through HTTP request. Is there a way to send multiple post data attached to the URL through HTTP request. I know for the fact that I can send POST data sin
I\'ve got a problem with my objective c code.I have a API-key protected WCF API that I built that takes POST requests and writes them to a Java servlet with C#.Anyway, this works great when testing wi
I\'m using this code, but when profiling, it tells me I have a many memory leaks within response_error, request and _response variables.
I have an iphone app that I\'m trying to get to talk to a rails back end.I\'m using NSMutableURLRequest to pull data back and forth.All the calls work fine on GET requests but when I need to post data
NSMutableDictionary* headers = [[[NSMutableDictionary alloc] init] autorelease]; [headers setValue:@\"application/x-www-form-urlencoded;charset=utf-8\" forKey:@\"Content-Type\"];
This question already has answers here: Closed 11 years ago. Possible Duplicate: NSMutableURLRequest timeout doesn't trigger if data starts to load but not webViewDidFinishLoad
I am trying to perform a PUT.As a test, I execute a GET request on some JSON data and store this receivedData in a variable data that I have initialized elsewhere.I am able to decode the original data
I want to fill two textfields in a page I loaded in UIWebView. I have been busy with NSMutableRequests.