on iOS , NSURLRequest objects represent a URL load request in a manner independent of protocol and URL scheme. NSURLRequest encapsulates two basic data elements of a load request: the URL to load, and the policy to use when consulting the URL content cache made available by the implementation.
0
votes
3answers
48 views
How can I wait for a NSURLConnection delegate to finish before executing the next statement?
This has been a hard one to search.
I found a similar question, iOS 5 Wait for delegate to finish before populating a table?, but the accepted answer was 'Refresh the table view,' and that does not ...
0
votes
1answer
24 views
How to properly form the requestString for a POST NSUrlRequest on iOS when array values are involved?
I need to form a POST NSURLRequest and I need to pass into the request this structure:
inspection (an array of NSDictionaries with string keys and values)
property (same structure as array1)
...
0
votes
1answer
35 views
iOS NSURLRequests Status Code Always 200
Our requirements include checking Internet access to a specific file on the web-server. This file is checked every n minutes. NSURLRequests never calls connection:didFailWithError whether or not there ...
0
votes
1answer
50 views
NSURLRequest with UTF8 password
Here is a method I've written to connect to a server and get a user auth token:
+ (void)getAuthTokenForUsername:(NSString *)username
password:(NSString *)password
...
0
votes
2answers
47 views
“No Action header was found” error message while using SOAP webservice
Getting following error while consuming SOAP webservice in iOS App
"No Action header was found with namespace 'http://www.w3.org/2005/08/addressing' for the given message."
The same webservice ...
0
votes
0answers
25 views
iPhone App needs to Load PHP Generated URL
Lets say an App needs to present a city's weather forecast webpage in a UIWebView - except the URL for this page will change according to whatever City the user chooses from a menu of 15 cities.
So ...
0
votes
0answers
37 views
iOS: Sending HTML source code to PHP server & back
I am using stringWithContentsOfURL to get the source code of a html site.
NSError* error = nil;
NSString *content = [NSString stringWithContentsOfURL:[NSURL URLWithString:@"http://www.apple.com"] ...
0
votes
1answer
29 views
Is this the correct way to use a checksum?
I'm working on an app that, among other things, downloads images from the web. Some of my testers are finding that images fails to download. In some cases, downloading fails in the middle. The image ...
0
votes
1answer
36 views
ios NSURLConnection how to post back a html form without creating a new request with headers and post values
I am making a request to a html webpage using NSURLConnection. The page returns a web form with many (changing) hidden fields.
There is an ok/cancel button in the form with associated actions on the ...
0
votes
0answers
41 views
NSMutableURLRequest, setURL/setHTTPBody/Posting form data assistance
I'm currently looking into communicating with the Imgur REST API. I'm not too familiar with using NSMutableURLRequests for POST/GET and general HTML form information. I do know I am able to get a ...
0
votes
2answers
61 views
SDWebImage NSURLRequests failing intermittently
I'm loading images from a remote server using SDWebImage into a UICollectionView using the following code:
[myCell.imageView setImageWithURL:imgURL placeholderImage:nil options:SDWebImageRetryFailed ...
0
votes
1answer
47 views
NSUrlRequest itself adding %0 in url
The NSURLRequest is adding %0 in request. I created the string and converted it into base 64 then send to url, but NSURLRequest is automatically adding %0 in it. Below is the code i am using.
This is ...
1
vote
3answers
213 views
Multiple NSUrlRequests To Fetch Different Pages Of WebService To Load More Data In TableView
I have a simple iPhone app that is parsing data (titles, images etc.) from rss feed and showing in the tableview.
The viewDidLoad has an initial counter value to reach the first page of the feed and ...
0
votes
2answers
32 views
iOS store-and-forward framework for offline HTTP POST requests
Is there a way (presumably a library?) to store HTTP POST requests when the user is offline, and then transmit the POST requests when the user is back online?
(I don't need to read the server's ...
1
vote
0answers
18 views
response.expectedContentLength allway return -1
i have a connection use NSURLConnection, i want to draw a progress for this connection but when i try to print current received data and total data length, something went wrong ...
0
votes
2answers
57 views
Trouble sending https POST request to server via API, getting “HTTPS Required”
In the app I'm building, I need to send a secure POST request to an API. The body of the request is JSON. Specifying the request as below:
NSMutableURLRequest *urlRequest=[NSMutableURLRequest
...
0
votes
1answer
30 views
JSON truncated when sent via NSMutableURLRequest to APS.NET MVC controller
I am building a JSON post in objective-c and sending it to an ASP.NET MVC controller.
I am building the NSMutableURLRequest as follows:
request = [[NSMutableURLRequest alloc] initWithURL:url];
...
0
votes
1answer
63 views
How to insert header info into MPMoviePlayerController url?
I need to implement video streaming service with http protocol.
I know how to set url into MPMoviePlayerController, and how to set headerField into NSMutableURLRequest, but I have no idea how to ...
0
votes
0answers
62 views
NSURLRequest Authorization Header missing UIWebView
I need to authenticate an app with Basic HTTP Auth. I tried a lot of method:
NSURLConnection with it's authentication challenge delegate
Using AFNetworking to do the hard stuff
Inject the ...
1
vote
1answer
42 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
12 views
How to make NSURLRequest to obtain any Twitter json with accessToken?
How can I make an NSURLRequest to obtain any Twitter API JSON response if I have an accessToken? I would like to do this Without using any library or framework.
1
vote
1answer
60 views
Again: Easy way to request JSON with posting data
I´m really new to Xcode and Objective-C ... I receive an JSON-Array to show the contents in my TableView:
in my -viewDidLoad:
[super viewDidLoad];
self.navigationItem.title = @"Kategorien";
NSURL ...
1
vote
1answer
84 views
How to convert this HTML form to iOS
I'm trying to subscribe emails to my Sendy installation running on my EC2 server - the API docs for Sendy can be found here.
In my list, Sendy suggests that
<form ...
1
vote
2answers
143 views
How to download a web page with it's inner resoures like images,css in iOS?
I'm trying to download the specified web pages with their inner page resources to disk.
When I send a NSURLRequest, only the initial URL would be request, but the resources as images,css,js would not ...
0
votes
1answer
79 views
Intercepting spawned URL requests from UIWebView
I'm trying to cache specified web pages to disk by NSURLProtocol,now I can only get the first URL request, but the UIWebView spawns further URL requests for loading graphics. So how can I Intercept ...
1
vote
2answers
52 views
No visible @interface for 'NSURLRequest' declares the selector 'initwithURL:' [closed]
New to Xcode, what's wrong with my coding here?
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
Webview.userInteractionEnabled = TRUE;
[UIWebView ...
0
votes
1answer
43 views
ios get the headers from NSURLRequest I get error [NSConcreteMutableData allHeaderFields]: unrecognized selector
I'm trying to get the headers of the NSURLRequest with the following line:
NSString *contentType = [[(NSHTTPURLResponse *)data allHeaderFields] valueForKey:@"Content-Type"];
but I'm getting the ...
1
vote
1answer
37 views
How I know the the posting data goes correctly
-(IBAction)clicked:(id)sender{
NSString *CIDString = cID.text;
NSURL *url = [NSURL URLWithString:@"http://localhost:8080/test/?"];
NSString *postData = [NSString ...
0
votes
1answer
87 views
XCode GET POST WebServer
I'm beginner from Xcode. I have to do an application that get and send data from embedded webserver that I designed in a microcontroller MICROCHIP.
Now I'm able to get information from webserver ( ...
1
vote
0answers
62 views
Connection to Server successfully but got some crap after json format strings
I have successfully connected to a server, and getting correct json format String from it. Somehow 9 out of 10 times it return with something extra.. like some crap code i don't recognize. sometimes ...
0
votes
1answer
110 views
iOS NSURLRequest in HTML form
I am creating a NSMutableURLRequest, a post request, so is there is a way I can check my request in HTML for so that i can verify with the web developer is my requests are proper or not.
Thank you.
0
votes
0answers
7 views
NSURLConnection doesn't honor Cache-Control for GET requests? [duplicate]
I have a test server that properly responds to ETag requests for both GET and HEAD requests (curl -vvv and curl -i both respond with 304 when sending the correct ETag).
When I make the same request ...
0
votes
1answer
122 views
How to encode MYSQL response in JSON and parse in iOS app
my php has a method called load. I am able to insert on a different method, but when I change the parameters to speak to this method, I think it sends the data correctly but it's not showing up on my ...
0
votes
0answers
121 views
NSURLConnection scheduleInRunLoop 'leak'
I am POSTing form data asynchronously using NSURLConnection. Using instruments I can see that memory usage increases on starting the connection, but once the connection completes the memory usage ...
0
votes
1answer
54 views
NSURLResponse Content-Length mismatch size of actual data when running concurrent downloads
I have a UITableView, when a cell is selected, I make a service call to asynchronously download a PDF file from a web service. It works great, until you select multiple cells directly after ...
2
votes
2answers
153 views
How to use a proxy server in objective-c when send a NSMutableURLRequest?
I want to use the proxy server as below to send a request.But I don't know the way to use a proxy server in objective-c?
proxy server:
72.64.146.136: 3128
Can anyone tell me?Thank you sincerely!
2
votes
2answers
166 views
NSURLConnection and multiple asynchronous requests - is it messing with the data being transmitted?
I have an NSArray of links I want to parse through with an online article extractor API (Clear Read), and with the result given back for each article (some HTML) I throw it into an NSString.
My ...
0
votes
0answers
48 views
NSURLRequest Very Slow at First?
So, I am using NSURLRequest in my app twice to get two .txt files from my server using the following code:
NSString *responseStringIfYes;
NSURLResponse *responseIfYes;
NSError *errorIfYes = nil;
...
0
votes
1answer
206 views
iOS - How to attach a JSON Object to web request? (NOT using NSURLConnection)
I am trying to send some web requests to back-end API I have setup on my web server.
However, to make things universal I would like to send an entire JSON object to the back-end, and do all my ...
2
votes
2answers
97 views
NSURLConnection different result when get error
I'm using -[NSURLConnection initWithRequest...] to connect to a server,
and when the server side fails it will respond with an error 400 with a message in the body.
When there is no error, I can get ...
0
votes
1answer
21 views
Cancelling a URL request
I was wondering if there was a way to cancel a URLRequest?
Use intended is for example if a user taps a button that uses a URLRequest to get data from my server, but then changes his mind and taps ...
3
votes
1answer
47 views
NSURLResponse returns Content-Range, ignoring the Range that I asked for
When downloading a file, I want to be able to resume the download. For example:
NSFileManager *fm = [NSFileManager defaultManager];
NSString *downloadTempPath = [_tempPath path];
if ([fm ...
0
votes
1answer
47 views
Dealing with more than one NSURLRequest
I have two NSURLRequest objects, connecting to a web service and invoking 2 different services.
The problem is that I have a random results, sometimes the first one is displayed first and sometimes ...
2
votes
0answers
56 views
NSURLConnection waits for server to finish processing before returning response - browser doesn't
I've built an iOS Application that frequently connects to my server via NSURLConnection. It's a pretty standard setup; the app sends various information to the server, and the server returns a JSON ...
0
votes
0answers
55 views
Unable to send data to server using NSURLRequest and NSURLConnection
I am trying to send data to server using below process:
Retrieving data from local db as array of dictionaries, using core data fetch request.
Using NSJSONSerialization to convert received array ...
0
votes
1answer
321 views
Base64 encoded image corrupted during transfer to server
For some reason i can't upload a jpeg file to a server using the post method in NSURLRequest
I have an android app that uses the same php code and can upload and download images fine by converting ...
0
votes
1answer
101 views
Objective C: http POST request getting Unescaped
I am using a NSMutableURLRequest to send a (synchronous) POST request to a web service.
The request body contains a combination of XML and JSON. Something like :
<element>
<element 2>
...
0
votes
1answer
97 views
NSURLRequest not being sent?
I have a JSON request that gets sent to a server based on the response of another JSON request, I used this method to check what NSURL connection is being used to handle the response:
...
0
votes
1answer
61 views
How can i attach a tls/ssl certificate in a NSURLRequest?
I need to communicate with a server and I need to attach a self signed TLS certificate with every NSURLRequest.
Is there a way to do that?
0
votes
0answers
145 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 = ...



