An NSURLConnection is the Apple Foundation Framework class that provides support to perform the loading of a URL request.
0
votes
2answers
42 views
IOS NSURLConnection and Dispatch_sync
Im am new to IOS Im building a http request with a response from the server when the request is complete. I have however created a new object to handle the request ...
As far as i can see the ...
0
votes
1answer
34 views
Create SSL connection using certificate
I have ssl certificate (.cer) which was provided to me as file.
I added it to bundle and want to use it communicating with server.
I used apple provided code:
- (void)connection:(NSURLConnection ...
0
votes
0answers
29 views
Downloading Data with a login
I am trying to get data from a site that is kind of nightmare to get data from. I was wondering if anyone know anything that could help me out or if you know a better way.
So here is the issue. I ...
0
votes
2answers
25 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 ...
0
votes
1answer
5 views
Call multiple web services simultaneously with NSURLConnection
Can multiple webservices be called with one connection simultaneously using NSURLConnection?
Or do I have to create a connection for each call?
0
votes
0answers
13 views
Can´t save SQLITE_BLOB
Am try'n to save the Facebook user image in a SQLite DB.
NSURL *url = [NSURL URLWithString:path];
NSURLRequest *urlRequest = [NSURLRequest requestWithURL:url];
NSURLResponse *response = nil;
NSError ...
0
votes
1answer
31 views
iPhone and asp.NET MVC File Upload with URL Parameter
this is going to be a question about sending data from the iPhone to a MVC 3 function.
To get into the topic what I'm already doing and what is working, just to see the style how I'm implementing ...
0
votes
1answer
25 views
How can I call a https endpoint by NSURLConnection sendSynchronousRequest in case of untrusted certificate?
I have an IOS6 app, that connects to a REST API to fetch some data.
I use NSURLConnection sendSynchronousRequest in my data fetcher class, and I call its methods by GCD async pattern with blocks from ...
1
vote
1answer
34 views
NSURLConnection delegates not being called even when run on main thread
I know that this kind of question has been asked many times, but all of them point to saying that the connection must be on a different thread.
-(void)distanceMatrix{
NSMutableURLRequest *request ...
1
vote
1answer
44 views
NSURLConnection refuses to use OSX System Proxy Settings
Ok so everywhere I've read and everyone I've talked to says that NSURLConnection when used in asychronous mode should automatically use OSX's system proxy settings.
Here's what I've done:
Setup a ...
1
vote
2answers
54 views
NSURLConnection Async intermittently returns null
Considering the below code, I moved my app from a synchronous to asynchronous calls to stop the UI freezing. -- Everything works fine except a few small details.
When it was synchronous calls they ...
0
votes
1answer
22 views
Asynchronous Data Call & CoreAnimation
I'm currently doing this:
NSData *response = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
and then I update the UI and run alot of animations to display ...
0
votes
2answers
32 views
Use a NSURLconnection for multiple posts to API
I having a situation here where I have some templates (objects), which I want to push to my backend. Now When the users presses the synchronise button, there is a connection to the backend form which ...
0
votes
3answers
24 views
iOS hiding activity indicator for multiple webservice call
I am making call to two web services simultaneously, i am showing activity indicator at that time. Since either of the service can end first. I am not sure how to hide the activity indicator. I am ...
0
votes
1answer
28 views
NSURLConnection sendAsynchronousRequest does not hit completion handler on some refresh requests
I have this code block:
+(void)requestPath:(NSString *)path onCompletion:(RequestCompletionHandler)complete
{
// Background Queue
NSOperationQueue *backgroundQueue = [[NSOperationQueue ...
0
votes
1answer
17 views
Wait for URLConnection block to finish
I'm creating a REST client class for my iPad app. So I created a BOOL method which does the login using an NSURLConnection subclass I created earlier.
This JWURLConnection has block type properties ...
0
votes
0answers
24 views
Error in downloading an audio file form server synchronously
I am using a NSBlockOperation in which i am trying to downlaod an audio file from server & storing it in documents directory.
NSBlockOperation *audioOperation = [NSBlockOperation ...
0
votes
2answers
47 views
Mulipartpost NSURLConnection over 3G network problems
we have an iOS app that uploads images to a server using a multipart post. Everything is ok while using wifi, but on 3G for large images we are getting network errors.
On the client (iPhone):
I got ...
0
votes
1answer
34 views
NSURLConnection not working
I need to open my php url from xcode and I am passing a variable in the url. I am performing the following code but it is not working, I have already checked that typing this url in the web browser ...
0
votes
0answers
8 views
General NSURLConnection security questions
After long research and thousands of attempts to do encryption / decryption (for interest) I decided to secure my REST client using HTTPS and a certificate.
I have a self-signed certificate and a ...
1
vote
0answers
15 views
NSURLConnection Memory
I have a problem in NSURLConnection. i.e.
I have created a global instance of NSURLConnection.
NSURLConnection *con;
So when i am using it any where i am checking firstly that whether con is ...
-1
votes
0answers
19 views
mpmovieplayercontroller not playing all video [closed]
I created a program that downloads videos over the net and play it in iOS device, the downloading ran smoothly, but playing the video is not just going to my expectation - it plays the audio so well, ...
0
votes
2answers
34 views
Difference between cancelling a connection and setting it to nil
In iOS I am using NSURLConnection -
NSURLConnection *aConnection = [[NSURLConnection alloc....
is there a difference between:
[aConnection cancel];
and
aConnection = nil;
Thanks
0
votes
1answer
28 views
NSURLConnection 5 seconds delay
i have the following code to make requests to my api:
-(void)makeApiCall:(NSString *)function params:(NSDictionary *)params notificationName:(NSString *)notificationName
{
NSURL *url = [NSURL ...
1
vote
2answers
42 views
Core Data locking when downloading images on background threads
I'm trying to download images asynchronously and store them in Core Data. Step one is to download a json file, parse it, and save an entity in Core Data for each object in the feed. That part is ...
-2
votes
1answer
33 views
not able to upload image on server [closed]
i am trying to upload image on localserver but not able to upload image on server actually i m using using this code for uploading image on server but not succeed. i am trying this for whole day but ...
1
vote
2answers
69 views
AFNetworking and NSURLConnection on main thread
EDIT: The highlighted row in the screenshot is what I have a problem with, why is NSURLConnection running on [NSThread main] when I'm not calling it, AFNetworking is.
I'm using AFNetworking for my ...
0
votes
1answer
26 views
Simulating kCFURLErrorNotConnectedToInternet error
I can't seem to cause NSURLConnection to raise the kCFURLErrorNotConnectedToInternet error.
I have tried the following:
Airplane mode or disable wifi with no 3G. Both returns ...
0
votes
2answers
48 views
My iOS Live App. is caching download links
I have a live app on the apple store now. My app connect to my server to download videos and store them on the device for later use. My server went down yesterday causing my app to crash when trying ...
0
votes
0answers
44 views
Website does not download completely
When I download the tagesanzeiger.ch website with the following code, it does not download completely. Only about a quarter of the content downloads but I receive the "Download completed" message ...
3
votes
1answer
84 views
NSURLConnection works perfectly in iOS 4.3 but not in iOS 5 / iOS 6
I am having some really strange problems with NSURLConnection so I hope you can help me out.
What I am trying to do is download some data from a given URL using NSURLConnection.
I made my own helper ...
1
vote
1answer
50 views
MBProgressHUD And NSURLConnection
I have the following question..
I made an API class with all my functions and they return the result when the url request is finished.
I want to make an loader before the request is made and remove ...
0
votes
1answer
61 views
iPhone Downloading large size videos to Documents Directory(~300 mb)
Need your suggestions/advice on a scenario I am stuck into. I am developing an iPhone Application which has 12-15 videos. User can download any video and then play it on his iPhone. The problem is ...
-2
votes
2answers
59 views
NSURLConnection with POST doesn't work
I'm trying request a URL parsing parameters with POST, but mypage.php is not receiving this parameters...
Here is my code:
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL ...
1
vote
3answers
41 views
Run http request on other thread on ios
so I want my app not to lock the GUI while sending an http request and getting the response, I made an attempt, but it complains that i use uikit outside of the mainthread, can someone please tell me ...
0
votes
1answer
37 views
Website Does Not Download Completely - Using stringWithContentsOfURL:
I am attempting to download a website but get only about a quarter of the entire site.
NSString *tagiString = @"http://www.tagesanzeiger.ch";
NSURL *tagiURL = [NSURL ...
1
vote
1answer
54 views
Why does an asynchronous NSURLConnection make the UI sluggish on iOS?
I noticed that the framerate while scrolling a collection view on an iPhone 4 dropped significantly (at times to 5 FPS) when a download using NSURLConnection was taking place in the background. I ...
0
votes
3answers
57 views
Parsing NSDictionary data from JSONValue as a string
I just fetched data but when i try to append it to string from NSData , compiler occurs Exception error .
My code seems like this:
NSDictionary *allDAtaDictionary = [NSJSONSerialization ...
-1
votes
1answer
64 views
Objective C: Show Hidden Button After Download and Keep It
I am trying to make an app that downloads PDF files from URL with asynchronous connection using the NSURLConnection then save it locally on the app and open it on iBooks using the ...
0
votes
0answers
34 views
Loadrequest: in a Non-Visible UIWebView or load a webPage without using a UIWebView?
Am need to download and cache an entire webPage before navigating to another screen. For caching I have sub classed NSURLCache and and saving the response by overriding ...
0
votes
1answer
37 views
AFNetworking returning reponse in NSError object
I was using NSURLConeection to consume service now I am switching to AFNetworking but getting some strange error. My code
Note : CTPHTTPClient is subclass of AFHTTPClient
NSDictionary *parameters = ...
1
vote
1answer
55 views
Using NSURLConnection with iOS 5 doesn't work properly
UPDATE: Apparently on iOS 5 the problem is the "Chunked-Encoding", When sending without that everything works. Seems on server that for some reason on iOS 5 the transfer never ends (on iOS 6 ...
0
votes
2answers
24 views
UITableViewCells and NSURLConnection
I have a custom UITableViewCell, and when the user clicks a button i make a request to a server and update the cell. I do this with a NSUrlConnection and it all works fine (this is all done inside the ...
0
votes
1answer
51 views
How to resolve multiple NSURLconnection with separated data
I have 2 separate NSURLConnection.
NSURLConnection * connection_users;
NSURLConnection * connection_cards;
Then i created the data with parameters, etc. and I finish with:
connection_users = ...
2
votes
4answers
66 views
What is the best networking solution for a complex multithreaded app?
I have a streaming iOS app that captures video to Wowza servers.
It's a beast, and it's really finicky.
I'm grabbing configuration settings from a php script that shoots out JSON.
Now that I've ...
0
votes
4answers
128 views
NSOperation Queue vs NSUrlConnection async
I have an app that is downloading several photos off of Flickr. Right now, all the photos are downloaded with a custom NSOperation class run on an NSOperationQueue.However, I have heard about ...
2
votes
3answers
64 views
Is it necessary to declare an object as a delegate to use it as such?
I made a NSURLConnection with the calling class as the delegate.
I built this on to my test device before realizing I never declared the object as observing the protocol, but it ran (I would say ...
0
votes
1answer
50 views
Simultaneous NSURLConnection from within prepareForSegue
I have a UITableView that requests for more data from the server when the user hits the bottom of the table (similar to the Twitter application). However, I'm trying to use a modal segue to filter out ...
1
vote
0answers
31 views
Async NSURLConnection with delegate pattern
I know this question has been asked a lot of time and a lot of suggestions exist on the net. But i am still not able to conclude what is the right way.
After ASIHTTPRequest becoming obsolete, i think ...
3
votes
3answers
78 views
How to send big big string through NSURLConnection
This is my code.
- (void)loadData:(NSString *)url {
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:url]];
[[NSURLConnection alloc] initWithRequest:request ...






