ASIHTTPRequest, a deprecated and outdated framework to replace NSURLConnection on iOS and OS X.
1
vote
1answer
38 views
Unwanted variable release (iOS)
I have UIViewController with strong DataController containing and managing a list of items (itemsList). In the initialization method of the latter, I read items from a file, get additional information ...
0
votes
1answer
19 views
Caching web page in IOS using NSURLCache subclass
I subclassed NSURLCache and overriden – cachedResponseForRequest: and – storeCachedResponse:forRequest: . I am storing all the files am getting in the application's documents directory.
Now, the ...
0
votes
1answer
27 views
Download and cache entire web page on ios
I need to download an entire webPage and store it in app's documents directory and load it from the cache the next time user visits.
No matter how much I search, I always end up with ...
0
votes
1answer
18 views
How to send a token from the iphone to rails backend?
When I'm asking the backend for a token with my username + password, it returns:
{"token":"5KB2bTHSSLgBeZjMqvfa"}
This is what I have working so far. I get the token, it is successfully saved.
- ...
-2
votes
0answers
11 views
ASIFormDataRequest crashed When I use startSynchronous, is anythind wrong? [closed]
When I use ASIFormDataReqequest, i am getting crashed. so, can anyone process this problem, so strange the problem.
have been find many ways to explore the reason, but i can't find it.
Here is ...
0
votes
2answers
23 views
Preparing a GET/POST request to fetch data on iPhone
i am trying to fetch data in JSON format for the search word 'cancer'.
But i can't figure out how to call the websvice, i tried a few things but they are not working, can anybody help me in this.
...
0
votes
1answer
23 views
streaming audio from iphone to server (HTTP streaming )
I use this code below to upload an audio file to server from disk.
I want to upload the file as a stream directly from iphone mic to server ..
using speakHere example we can capture the audio packets ...
0
votes
1answer
32 views
xml parsing of img src from the XML response
I have an xml response as:
{
text = "<img alt=\"Marco Bueno\" src=\"http://u.goal.com/136600/136687_thumb.jpg\" style=\"float: left;margin:0 10px 10px 10px;\" title=\"Marco Bueno\" /><p ...
0
votes
1answer
21 views
asihttprequest or AFJSONRequestOperation issue [closed]
I heard from some developers on some forums that asihttprequest is not supported anymore. And they advised to use AFJSONRequestOperation for iOS development.
But actually I'm used to using ...
1
vote
1answer
27 views
Frequently asihttprequest runrequests crash
thread #7: tid = 0x2403, 0x351b9010 libsystem_kernel.dylibmach_msg_trap + 20
frame #0: 0x351b9010 libsystem_kernel.dylibmach_msg_trap + 20
frame #1: 0x351b920c libsystem_kernel.dylibmach_msg + 56
...
0
votes
0answers
17 views
Cache Video while loading
I tried to search both on the site and google, but I could not find anything.
I want to save the MPMoviePlayerController cache of a video stream.
I tried with different libraries like ASIHttpRequest ...
0
votes
0answers
18 views
ProgressView from inside delegate function
I'm quitte new to building native apps.
Let me explain the situation:
I have a view controller where people can select photo's and add some text.
When a button is clicked my APIService.m is called.
...
0
votes
0answers
33 views
ASIHTTP with SSL failed on iOS 5.x but not in iOS 6
I got an app running ASIHTTPRequest library to receive internet data. I call to an URL with SSL using this code:
NSURL *url = [[NSURL alloc]initWithString:@"https://my.web.com"];
ASIFormDataRequest ...
0
votes
1answer
43 views
ASIHTTPRequest timeout with AnyConnect
In my app I am using ASIHTTPRequest to get information from a server. That works fine as long as I am using the company's wireless.
However, I need to connect now from outside of the network, by ...
-1
votes
3answers
58 views
Capture a video of 10 seconds length and upload it to server using ASIHTTPRequest
I need to capture a video which will be maximum length of 10 seconds, and also need to upload it to server using ASIHttpRequest,
how do I do that?
1
vote
3answers
47 views
ASIHTTP save data on iPhone
I have an app that uses ASIHTTP to interact with the server.
I have a requirement to store some of the data if not all (still to decide) on the iPhone in a sort of caching mechanism. In this way I can ...
0
votes
0answers
12 views
ASIDownloadCache clear all but some items
I used [ASIDownloadCache sharedCache] to cache my HTTP requests, and at specific condition I have to do garbage collection for the some of cached requests.
I have a list of URLs to be kept in the ...
0
votes
0answers
41 views
Error on express with multipart, when Upload files from C# on ubuntu
I have express application:
server.js
var express = require('express');
var app = express();
var path = require('path');
var fs = require('fs');
app.use(express.bodyParser({
uploadDir: __dirname ...
1
vote
1answer
44 views
loading cached webpage in UIWebView in ios
I've a task that increasing speed of webpage loading in UIWebView. For that I'm moving to cache concept. Here I'm using ASIWebPageRequest to cache all the content of the webpage. Its doing well.But ...
0
votes
3answers
78 views
ASIHTTP Request cancelled error in iphone sdk
I am uploading multiple images data using ASIHTTP request method. All Images uploaded successfully but for only last image ASIHttp request goes fail. I tried a lot but i can't get anymore. Can someone ...
0
votes
2answers
35 views
iOS App acting difrently after archiving
while running the app straight from xcode on my phone everything runs great.
after archiving it and running it as an archive the app acts differently and doesn't behave as expected. this is the part ...
0
votes
0answers
31 views
Connection failure error on basic authentication - asihttp request in ios
I'm using "https", "basic authentication", and "post request" by ASIFormDataRequest.
But I'm getting an Error : *A connection failure occurred: SSL problem*
I think the problem may be due to a ...
0
votes
0answers
36 views
ASIHTTP iside a block
I used this link for studying blocks.But when I used ASIHTTP calls inside the blocks it gets crashed with the following error
[ImageDownLoader performSelector:withObject:]: message sent to ...
0
votes
0answers
79 views
Request format is invalid: multipart/form-data when trying to upload video from iphone using ASIFormDataRequest to .net webservice
I have a .Net webservice that accepts a file path of a video file. It works fine on the desktop and i get to upload a video. However when i try it from the device i get the response as
Request ...
0
votes
2answers
57 views
Best library for http request for iOS apps?
In my iPhone app, I use ASIHTTPRequest API to make cURL based http requests. I heard that this API is not being maintained and some times it crashes the app. I need to go with some other API where I ...
0
votes
0answers
20 views
ASIS3ObjectRequest rapidly getting request timeout
I am using ASIS3ObjectRequest to get a zip file from S3 on my iOS app.
Here is my code:
NSString *path = [NSString stringWithFormat:@"%@/%@.zip",_local,_url];
ASIS3ObjectRequest *request = ...
0
votes
1answer
48 views
ASIHTTPRequest Cache cannot be expired
I would like to set a cache with 60-second expiry. The xml file is successfully cached but the cache is kept using after the time expired even when the server updated data. Therefore, I would like to ...
0
votes
1answer
37 views
ASIHTTPRequest don't save pdf file when the delegate set
I try to download a pdf from server and this is my code
ASIHTTPRequest *req = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:[GlobalMethod convertURL:[NSString ...
0
votes
0answers
18 views
progress bar is not working in ASIHTTPRequest When Cookies set
I am downloading pdf through ASIHTTPRequest. When I am downloading setting cookies like
[request setRequestCookies:[NSMutableArray arrayWithObject:cookie]];
this then progressbar is not get ...
0
votes
3answers
80 views
How can I return variables from PHP server to iOS ? (use ASIHTTP)
I had POST a file from iOS to server(use PHP) ,
and I want PHP server to return some variables to iOS,
I use
>[request responseString]
to get server response,
but it always return my HTML ...
0
votes
0answers
27 views
AsihttpFormData request returning null JSON response for Larger files
I am Posting file of about 250Mb to the server from iPad its taking some time and returning null json value ,But when I post a small file its getting easily posted to the server and returning the ...
1
vote
2answers
72 views
empty tableview rows when parsing with NSXMLPaerser using ASIHTTPRequest
I'm pretty new iPhone development and i have a problem.
After several hours of searching and digging in the code I could understand the source of the problem (hope) but do not know how to solve it.
...
1
vote
1answer
62 views
ASIHTTPRequest Monotouch Binding Callback/Event
I am trying to wrap ASIHTTPRequest objective-c library to monotouch and I am stuck on .
The objective-c header file contains
@property (assign) SEL requestDidFinishSelector;
and when I use monotouch ...
0
votes
1answer
97 views
ASIFormDataRequest not Sending JSON data with Image to PHP Server
I want to send POST request to server with JSON and image data. I am using the code below but it gives the following error each time I run it -
{ Code = 400; Detail = "Unable to parse JSON in ...
0
votes
1answer
62 views
Unable to upload video using ASIHttpFormDataRequest — iPhone
I want to make a request in maultipartform, in this format --
<form action="http://xyz.com/web/video/formupload/01f7e4d2-9484-44ed-9e5d-bb4b7ff67739" method="post"
...
0
votes
1answer
50 views
How to check response for multiple requests in ASINetworkQueue?
I am using ASINetworkQueue to send multiple requests to the server one after another. I have 4 consecutive server calls.
I want to know whenever the response is received, I want to handle it in ...
0
votes
0answers
52 views
Mac Popup Menu Bar Application
I downloaded this project (https://github.com/shpakovski/Popup) and tried to implement the ASIHTTPRequest framework but it didn't work.
Because Popup is using ARC I disabled it for the ASI Classes.
...
0
votes
0answers
51 views
autorelease pool page corrupted
Whenever I am using ASIHTTPRequest class for making webservice call I am randomly getting the following crash
autorelease pool page 0x9418000 corrupted
magic a1a1a100 4f545541 454c4552 21455341
...
0
votes
0answers
43 views
Download Folder from Server with ASIHTTPRequest
Is it possible to download an entire folder from a server using ASIHTTPRequest? If not, can I compress the folder and download it instead. From what I have read, ASIHTTPRequest will uncompress ...
0
votes
1answer
86 views
ASIHTTPRequest Custom Progress Tracking
I've read about implementing custom progress tracking in my app using ASIHTTPRequest in the documentation. It mentions implementing 2 methods, request:didReceiveBytes: and ...
3
votes
3answers
227 views
Handle HTTP Header Field name on iOS/OSX
As we know HTTP header names are case insensitive which is specified in RFC2616.
However I found that all popular iOS/OSX framework such as ASIHTTRequest , AFNetworking ,RestKit test whether or not a ...
2
votes
1answer
73 views
Sending .caf to server with ASIHTTPRequest
I am using AVAssetReader to create a .caf file that can play locally on my computer. However, when I try to upload the .caf to a server, the uploaded file can no longer be read. Here is my code :
...
0
votes
0answers
35 views
How to Disable Async Callbacks when PopViewController
I am building an iOS 6 application and I frequently run asynchronous HTTP requests to my server with delegates / callbacks. It's possible the user pops the top view controller (ie. the delegate to the ...
0
votes
0answers
48 views
How to download many levels of web pages in UIWebView?
I use ASIWebPageRequest to save the web pages to local disk, but it can only download the page being viewed current. Is there any way to download muti levels of the website such as download the first ...
1
vote
0answers
52 views
How to make an offline browser on ios?
I need to make an offline browser on ios, which should persistent the specified webpages to the disk with the media resource such as image,css,js. At the same time, the offline browser should be able ...
1
vote
3answers
131 views
Sending UIImage from UIImagePickerController to PHP server using ASIFormDataRequest
In a current project, I have implemented an UITableViewController that collects certain data and send it to the backend server by the users request.
This all works fine and dandy.. however, I have ...
1
vote
0answers
29 views
Can ASIWebPageRequest download multilevels webpages with the sources internel?
What I want is to implement an offline web browser that can save multi levels webpages, like save first level,save two levels.
Is ASIWebPageRequest satiable?
Thank you very much!
2
votes
1answer
137 views
JSON Request Working with NSURLRequest but not with ASIFormDataRequest
I am sending two JSON dictionaries to an url. This is working with NSURLRequest but not with ASIFormDataRequest. When sending the same request with ASIFormDataRequest it shows the following error -
...
0
votes
0answers
23 views
ASIFormDataRequest image upload server execption
NSString *filePath = [[NSBundle mainBundle]pathForResource:@"textFileIcon" ofType:@"png"];
NSError *err =nil;
NSData *fileData = [filePath dataUsingEncoding:NSUTF8StringEncoding];
NSMutableData ...
0
votes
1answer
133 views
posting json array to a url
-(void)makeSecondRequestWithQuestionID:(NSString*)questionID value:(NSString*)value andArray:(NSArray*)array{
NSURL * url = [NSURL URLWithString:URL];
ASIFormDataRequest * request = ...



