MKNetworkKit is a MacOS & iOS networking framework that automatically takes care of caching responses and remembers operations when the client is offline.

learn more… | top users | synonyms

0
votes
1answer
31 views

MKNetworkKit doesnt retreive any images

NSString *pictureUrl = [[[oneUserDict objectForKey:@"picture"]objectForKey:@"data"]objectForKey:@"url"]; [[AppEngine sharedEngine]imageAtURL:[NSURL URLWithString:pictureUrl] onCompletion:^(UIImage ...
0
votes
2answers
13 views

MKNetworkOperation failedWithError : unsupported URL

i just started using MKNetworkKit for my networking operations and i have tried to simply get some data from the server using these MKNetworkOperation but it rendered me a strange error .. really ...
0
votes
0answers
26 views

App crashes when i perform too many requests - MKNetworkKit - MKOverlayView - WMSOverMapkit

i'm developing a huge map application that covers different kind of map informations. Some of them are traffic data, graphs, and different maps from the apple ones. All of this data is presented in ...
0
votes
0answers
26 views

Is there a networking framework that automatically resumes interrupted downloads?

Example: User begins download of huge 100 MB file. Then internet gets interrupted or user quits app. User starts app or internet works again. Is there a networking framework which will resume ...
0
votes
0answers
20 views

How to restart an MKNetWorkOperation?

when I get a session expired message for an API call in for an MKNetworkOperation , I would like to re-do the operation after renewing the session. However it seems MKNetworkEngine wont let me ...
0
votes
0answers
28 views

MKNetworkKit download different hash

The server generates a file hash (sha1). The mobile device downloads it and generates another file hash (sha1). If it is first attempt and the download occurred normally, the hash check returns true. ...
0
votes
0answers
22 views

How to read HTTP response headers in a completion block of MKNetworkOperation

I want to read the UTC time that server fills in while sending the response in the response headers. How to I access that from an MKNetworkOperation object in the completion block ?
0
votes
0answers
59 views

Call a web service with MKNetworkoperation

In our development team we have implemented a WEB Service which will authenticate a client. From the iPhone application we need to send the client's information to the web service and in order to do ...
0
votes
0answers
22 views

How to get MKNetworkEngine cancelOperationsContainingURLString callback?

When MKNetworkOperation execute a download operation , I'm try to break. [MKNetworkEngine cancelOperationsContainingURLString:@"developer.apple.com"]; It's really stop , but I don't handle any ...
0
votes
0answers
59 views

Tumblr: Avatar request returns not URL

I use MKNetwork Kit for this. MKNetworkOperation *op = [[MKNetworkOperation alloc] initWithURLString:@"http://api.tumblr.com/v2/blog/my_blog.tumblr.com/avatar/512" ...
0
votes
1answer
88 views

Ignore ssl certification MKNetworkKit

So it seems that ASIHTTPRequest allows you to ignore the certificates on https:// endpoints. I'm currently using MKNetworkKit and have implemented all my calls. Unfortunately, our testing server is on ...
0
votes
1answer
83 views

MKNetwroking issue while “POST” request in iOS

I am developing an iOS application. I am getting an issue while sending "POST" request to Java server using MKNetwrokingKit library in iOS. Server side response I am getting is - 2013-02-06 ...
0
votes
0answers
49 views

Crash when using recycled UIView with MKNetworkKit to load image when first load not finished

I am displaying user profiles by having a ProfileViewController with a Paging Scroll View in it. This is displaying ProfileViews by displaying them and then recycling ones that are off screen as you ...
0
votes
0answers
167 views

KNET Payment gateway integration with ASP.net

I want to integrate KNET payment gateway in my asp.net website, but unable to get any help on this, can anyone please suggest, how should I proceed as I am really stuck and I have only one day to ...
0
votes
3answers
122 views

How to cancel / abort an MKNetworkOperation?

I need to abort network operations in MKNetworkKit but can't find the methods to do that in the header files. Anyone?
0
votes
1answer
121 views

Chaining MKNetworkKit API calls and having problems with how to populate an NSMutableArray with the data

I have a UITableView with two sections, where each section needs a call to a REST API for the data. I'm using MKNetworkKit for the calls. My question is how I should populate the NSMutableArray for ...
0
votes
1answer
152 views

MKNetworkKit how to append post data

I'm currently trying to switch from ASIHttpRequest to MKNetworkKit and Im having problems with the post data. How do I do the following in MKNetworkKit? ASIHTTPRequest *request = [ASIHTTPRequest ...
0
votes
0answers
127 views

How to play a video using AVPlayer via a buffer while streaming?

I would like to use MKNetworkKit to download video data onto a circular buffer (https://github.com/michaeltyson/TPCircularBuffer) and then play the video using AVPlayer. I didn't want to use AVAsset ...
0
votes
1answer
150 views

Magic Record Threaded Saves

I can't quite figure out the correct way to do this. I am having trouble persisting the object I create in the block. [op addCompletionHandler:^(MKNetworkOperation *completedOperation) { ...
1
vote
2answers
166 views

Total size of downloading file using MKNetworkKit

I'm downloading a file using MKNetworkKit with the following code in the MKNetworkEngine subclass: - (MKNetworkOperation *)downloadFileFromURL:(NSString *)urlString toFile:(NSString *)filePathString ...
1
vote
1answer
87 views

MKNetworking frozen operation

I am using MKNetworkKit. I have successfully added the package and uploaded to server. However I was not able to activate the frozen operations. I have added the line [self.flOperation ...
0
votes
1answer
95 views

“onDownloadProgressChanged:” not being called (MKNetworkKit)

I'm working on a project that requires downloading a list of users from a server —JSON data created from a PHP script that reads a MySQL database— and I would like to inform the user of the progress ...
0
votes
0answers
78 views

How to directly return to rootViewController? UIStoryboard (or update tableview)

There are some questions I have found but the answers don't work with my code, therefore I ask a question of my own. My objective is reloading a table view from a detailviewcontroller. I tap a cell, ...
0
votes
0answers
115 views

MKNetworkKit: Chain of requests where each subsequent request needs data from the previous

i'm not sure how to implement this the best way: i have multiple rest requests where each on retrieves data from a different resource. the thing is that each requests needs data from the previous ...
1
vote
0answers
209 views

MKNetworkKit and authentication

I just switched from ASIHTTPRequest to MKNetworkKit, anyway I'm facing the following issue, the post request have this kind of url https://username:pass@hostname.com, when I make the request using ...
1
vote
0answers
171 views

MKNetworkkit: Fetching JSONArray from server

I am using MKNewtworkkit for networking operation is my ios app. I have JSONInterface in server through which i can retrieve JSONArray. I am able to fetch data in android app and browser as well, But ...
0
votes
2answers
661 views

MKNetworkKit caching not working

Am facing thi really unusual problem with MKNetworkKit caching. In simple word's the problem is that "It is not working"..! I have created a simple test project which has the problem. The project ...
0
votes
0answers
64 views

How to post AES256 NSData to server using MKNetworKit?

The username has been encrypted via RNCryptor and I would like to send the encrypted username to server using the MKNetworkKit. The encrypted username is in NSData format. But the MKNetworkKit seems ...
0
votes
1answer
122 views

How to use MBProgressHUD with MKNetworkKit?

Im using MKNetworkKit with protocols and delegates to send service calls and get json response. Now I want to implement MBProgressHUD to show a busy indicator while the data is being fetched and ...
2
votes
0answers
379 views

MKNetworkKit download multiple files and wait for all to be ready using addDependency

I want my application to download a zipfile and a couple of movies. I want to wait for all of them to be ready before continuing my app. Here's the code so far. The problem is, the application will ...
14
votes
1answer
1k views

What are the differences between MKNetworkKit and AFNetworking?

I'm running some test on those two networking framework: MKNetworkKit and AFNetworking. And I am seeing that it is not easy to see the differences between the two libs. What are the major differences ...
0
votes
1answer
195 views

Objective C: Accessing files on password protected server with MKNetworkKit

I've been retrieving documents from a public web server by going to the URL and parsing the HTML tree with TFHpple, like this: NSData *documentsHTMLData = [NSData dataWithContentsOfURL:myURL]; ...
4
votes
1answer
532 views

MKNetworkKit operation doesn't resume/complete when reachability changes

I'm new to MKNetworkKit, but I've been able to add it to my project and it's perfectly working except when dealing with reachability changes. Here is the situation: I disable WiFi and run the app. ...
0
votes
1answer
237 views

How to perform a GET-request using MKNetworkKit in a newsstand app that's being started by a content-available notification

My newsstand-app can be launched via a content-available push notification. When this happens the list of issues should be retrieved an a zip file containing the latest issue should be downloaded. ...
0
votes
1answer
234 views

MKNetworkKit - POST always returns 'The operation couldn't be completed'

I'm trying to talk to a WCF service from my iOS app using the MKNetworkKit. I always seem to get a 404 error even though the URL is valid. The operation completes if I use a GET instead of a POST (but ...
0
votes
0answers
158 views

MKNetworkOperation enters completion block if network is unreachable

I am using MKNetworkingKit's networkOperation object to make a request. When I am not connected to the internet or for that matter a VPN an trying to reach the host IP which is not reachable. control ...
0
votes
0answers
127 views

Download and save pdf - oauth ,MKNetworkKit

I have a pdf saved in the server which requires oauth authentication to download.In web browser it asks for authentication when url is fired(sets up oauth token cookie).How can I do this in ios ?I ...
0
votes
1answer
243 views

MKNetworkKit categories not imported correctly when included in Static iOS Framework

I'm building a Static iOS Framework with the templates from jverkoey/iOS-Framework, and in the framework I include the source files for MKNetworkKit. I added the #import "MKNetworkKit.h" and ...
0
votes
0answers
276 views

MKNetworkKit Cache and Upload

I'm developing an application witch has basically two views. 1) create a post (camera roll image and some text) .. Something like facebook and path. 2) show a timeline For many reasons, I'm using ...
3
votes
0answers
269 views

how to resume downloads using MKNetworkKit in the event of network failure

MKNetworkKit allegedly supports resuming of interrupted downloads, but it's not clear how one would go about this. In another thread, it's developer says it works if the server sends Range headers. ...
0
votes
1answer
368 views

How to have multiple subclasses of MKNetworkKit - RESOLVED

I am currently using MKNetworkKit to cache the download of several images from a restful server. I have another restful service I ping to get supplemental information about the images. Whichever ...
0
votes
2answers
614 views

MKNetworkKit - displaying cached images

UPDATE AT BOTTOM I branched off of the MKNetworkKit Flickr demo for this. I have several images on a webserver I want to display in a table. I have a UITableViewCell subclass, ImageCell. Here is ...
0
votes
1answer
503 views

MKNetworkKit and GCD dispatch_group_t

I am trying to use MKNetworkKit to fetch an array of links from a web service, then parse each response on a background thread, and use the dispatch_group_t of GCD to wait until all threads are ...
0
votes
1answer
737 views

How to POST NSData on server using MKNetworkKIt

Currently our application is using ASIFormDataRequest to post data on server. I was using ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:urlWeb]; [request ...
0
votes
2answers
683 views

Streaming with MKNetworkKit on iOS

I'm trying to figure out how to make MKNetworkKit working with data from stream. I can see that some data is beeing downloaded (the indicator on status bar), but I don't have any idea what happens ...
1
vote
0answers
252 views

Intermittent SSL Failures Authenticating with Server Using ASIHTTPRequest and MKNetworkKit

I'm working on an iOS app and I'm having intermittent SSL failures when I try to access some of the APIs on our API server. The failures don't happen all the time, but they happen enough to be a ...
2
votes
2answers
715 views

One MKNetworkEngine object when using MKNetworkKit

I just switched over to using MKNetworkKit and I'm confused whether I should create one MKNetworkEngine object at App launch and use that whenever I want a net connection, or if I should be creating a ...
1
vote
1answer
259 views

MKNetworkKit example calling Amazon S3

Is there a good example of how to use MKNetworkKit with S3? I used to use Asi but switching to MKNetworkKit and I haven't found anything similar.
0
votes
1answer
456 views

Multiple image upload using MKNetworkKit

I'm using MKNetworkKit to fetch server request. How to upload multiple image files using this JSON format? "pictures": [ { "name": "pic1", "qty": 1, "size": 312 }, ...
1
vote
2answers
1k views

How to pass a NSArray to a POST using MKNetworkKit

MKNetworkOperation *op = [self operationWithPath:@"thestore/services/storeservice.svc/getfavorites" params:fetchedObjects ...