0
votes
2answers
26 views

NSURLConnection only authenticates on second attempt

I am trying to load a secure website in a UIWebView my basic approach is to create a NSURL, the n a NSURLRequest, then a NSURLConnection, then to load the NSURLRequest in the UIWebView. When the ...
1
vote
1answer
61 views

Requesting data from Codeigniter to AFNetworking

I built a simple website with Codeigniter framework (www.imlecturer.arkmon.co.uk). It displays list of people according to search form. My json search request is index.php/find/findemp. Search fields ...
0
votes
0answers
196 views

PUT Method Using AFNetworking

i want to implement afnetworking with put request, but it always shows error when i run it. it works fine with post method, but when i change it to PUT it shows error. AFHTTPClient *httpClient = ...
2
votes
0answers
121 views

AFNetworking - does its HTTP request send with cookies by default?

I am trying to debug a http get request i sent via AFNetworking's AFJSONRequestOperation to see if the cookies are being sent correctly. However, i dont see any cookies in http header. Can some expert ...
0
votes
2answers
135 views

Bug in NSURLRequest or AFNetworking?

Not sure if this is a bug or I am missing something, most likely latter. My AFHTTPClient's base url is: #define kBaseURL @"http://localhost:4567/api/" self.client = [[AFHTTPClient alloc] ...
-3
votes
1answer
102 views

Working with AFNetworking (iOS) [closed]

I'm trying to make a request to a server and I don't know why it doesn't work. Here's my current code: NSURL *url = [NSURL URLWithString:@"http://www.www.www/www"]; AFHTTPClient *httpclient = ...
3
votes
3answers
491 views

Some requests time out with no clear reason

I encountered a bug I can't understand and for now it happens only on a specific device. It happens on an iPhone 5 with iOS 6 but unfortunately I don't have access to another one to check if it's ...
1
vote
0answers
360 views

AFNetworking retry timeout requests using enqueueBatchOfHTTPRequestOperations

There are few similar questions to mine with answers,but could not find a way to use that solutions on my code. I would be glad, if anyone can help me on code. How to retry timeout request? while ...
1
vote
2answers
2k views

AFNetworking: Can't get the response string from AFHTTPRequestOperation

Anyone?): I'm having a problem that has made me scratch my head for the last 2 hours, and it most likely a very simple stupid thing I'm missing. I Keep getting a building error when I Call the ...
0
votes
2answers
49 views

Can I add a UIImage, with the same name, to a NSMutableArray every time method is called?

I'm using the AFNetworking API and I'm using the AFImageRequestOperation function to call a Image URL from a server API to convert that into a UIImage. What I want to do is; every time I call this ...
3
votes
1answer
321 views

Programatically press html button from NSURLRequest

I have a html form which when it loads is already populated with data. It has Save and Apply buttons on. I want to change 1 item on the form and POST it from my iOS app. The problem is that when I ...
2
votes
1answer
514 views

Nested NSDictionary & NSArray with AFNetworking not working properly

NSDictionary *customerDictionary = [NSDictionary dictionaryWithObjectsAndKeys:@"blah@blah.com", @"email", @"1", @"facebook", nil]; NSArray *customerArray = [NSArray ...
1
vote
0answers
378 views

AFURLConnectionOperation + NSURLConnection behaves differently under iOS5.1 & iOS6.0?

I am seeing an issue with iOS6, AFNetworking and NSURLConnection that doesn't make any sense. To reproduce the issue Make a request, any request, and make sure its successful Turn off the internet ...
1
vote
0answers
473 views

AFHTTPRequestOperation nil response instead of error

I am using AFHTTPRequestOperation to get a couple of HTML pages to parse. The problem i'm having, is if I use a wrong port number for example, when connecting to the server, the 'failed' error block ...
0
votes
2answers
330 views

Pause downloads in AFNetworking - objective c

How to pause downloads in AFNetworking? I'm downloading file with AFHTTPRequestOperation, but there is only cancel method. How to pause and resume it?
1
vote
1answer
1k views

AFNetworking http client not sending JSON parameters

I created a subclass of AFHTTPClient and am trying to send some JSON parameters to a server. However the server is responding with a Expected content type {( "text/json", ...
1
vote
1answer
2k views

Converting a cURL request (with --data-urlencode) into AFNetworking GET request

This issue might not be related to AFNetworking specifically, but more in constructing an NSURLRequest. I am trying to issue the falling GET request using AFNetworking- curl -X GET \ -H ...
4
votes
2answers
550 views

AFNetworking Error Domain=NSPOSIXErrorDomain Code=12 "The operation couldn’t be completed. Cannot allocate memory

I'm sending a lot of image files via AfNetworking to a Rails server. On edge and sometimes 3G I get this error: Error Domain=NSPOSIXErrorDomain Code=12 "The operation couldn’t be completed. Cannot ...