Tagged Questions
The nsmutableurlrequest tag has no wiki summary.
8
votes
1answer
5k views
NSMutableURLRequest not obeying my timeoutInterval
I'm POST'ing a small image, so i'd like the timeout interval to be short. If the image doesn't send in a few seconds, it's probably never going to send. For some unknown reason my NSURLConnection is ...
5
votes
4answers
125 views
When does -copy return a mutable object?
I read in Cocoa and Objective C: Up and Running that -copy will always return an immutable object and -mutableCopy will always return a mutable object:
It’s important to know that calling -copy on ...
3
votes
3answers
371 views
iphone: NSMutableURLRequest returns strange characters for MS Word style apostrophe
We are pulling content off our website using XML/NSMutableURLRequest and sometimes it pulls through the "curly" style apostrophe and quotes, ’ rather than '. NSMutableURLRequest seems to hate these ...
2
votes
2answers
225 views
Why does my NSURLMutableRequest POST request act like a GET request?
I've got a problem with my objective c code. I have a API-key protected WCF API that I built that takes POST requests and writes them to a Java servlet with C#. Anyway, this works great when testing ...
2
votes
1answer
386 views
Setting time out for NSMutableURLRequest to custom time [closed]
Possible Duplicate:
NSMutableURLRequest timeout doesn't trigger if data starts to load but not webViewDidFinishLoad
I am using a Async HTTP request and setting timeout for my ...
2
votes
1answer
400 views
iPhone facebook app: wall post won't appear on news feed
I have an iPhone app, which posts messages to Facebook me/feed via NSMutableURLRequest and it works fine, with one exception, app posts appear on user wall, but NOT in the News Feed, so their friends ...
2
votes
1answer
1k views
iPhone https post request
Ho all! I'm trying to' make a login with the iPhone into a https server.. I tried different solution, also asihttprequest and the solution works fine with http normal website, but with https the ...
2
votes
2answers
3k views
Sending a POST request from Cocoa to Tumblr
This code snippet isn't working, I'm getting an "Authentication Failed." response from the server. Any ideas?
NSMutableURLRequest *request = [[NSMutableURLRequest alloc]
...
1
vote
0answers
27 views
Is CLLocationManager causing this crash?
I've got a UIPickerView object that lists stores based on either a listed "home" location or one's current location (using CLLocationManager). If the latter is implemented, I make a ...
1
vote
1answer
66 views
Send an http delete request
I need to how I can send an http delete request, I've implemented the code below
- (void) deleteSyncRequestWithURL:(NSString *) url
{
NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] ...
1
vote
0answers
109 views
Parsing for xml with post method
i want to do XML paring but the url is with post method.
I had done it in this way:-
function or passing the request is show below
NSString *urlString = @" ...
1
vote
2answers
120 views
xml parsing with Post method+iphone
I am having problem with xmlparsing with post method.
API URL : http://XXX.XXX.X.XX/api/user.php
Function Name : getUserList
Sample XML :
<root>
<data>
<id>0</id>
...
1
vote
0answers
143 views
Timeout doesn't work properly in the NSMutableURLRequest. But, why?
NSMutableDictionary* headers = [[[NSMutableDictionary alloc] init] autorelease];
[headers setValue:@"application/x-www-form-urlencoded;charset=utf-8" forKey:@"Content-Type"];
[headers ...
1
vote
0answers
1k views
JSON POST Request on the iPhone (Using HTTP) Problems
Im having problems with my request to a asp .net mvc web service. I read in a thread a while ago that its possible to find out what the server wants the the request's content-type to be etc. I get no ...
1
vote
1answer
153 views
A better way to create the body of a NSMutableURLRequest
I'm new to objective-c and am wondering if there is a better way that the following to create the HTTP POST body that the method I have below.
- (NSData*) generateBody: (NSDictionary*) requestParams ...
1
vote
2answers
337 views
Sending images as part of form data from an iPhone
I've managed to get simple text data sent to a server using this code:
NSMutableString *parameterString = [[NSMutableString alloc] initWithString: @""];
[parameterString ...
1
vote
1answer
278 views
NSMutableURLRequest: posting large amounts of data
I need to send large amounts of data (image files) by POST in a WebView, so I'm using NSMutableURLRequest with setHTTPBody:.
Problem: if the data size is more than about 3MB, the app suddenly starts ...
1
vote
2answers
762 views
NSMutableUrlRequest eats plus signs
I create NSMutableUrlRequest for sending data to server, add all necessary fields to it and then add the string for sending like this:
[theRequest setHTTPBody:[postString dataUsingEncoding: ...
1
vote
1answer
519 views
NSMutableURLRequest: didReceiveData not called at the first time
I've dug through a lot of topics regarding didReceiveData: method not being called - the solution is to set appropriate cachePolicy and implement willCacheResponse delegate method.
So I did, now I ...
0
votes
1answer
24 views
xml post loading xml response
I'm trying to hit a REST api to see if a user is valid. I know the connectionDidFinishLoading runs, but I'm not sure how to check the response (xml). Please advise.
The signIn function gets the ball ...
0
votes
1answer
32 views
Upload file from iPhone to Django
Sorry, a beginner's question: I have a very simple function in my Django application with which I can upload a file from a web browser to my server (works perfectly!). Now, instead of the web browser, ...
0
votes
0answers
26 views
NSMutableRequest returns null
Can someone explain why this return null and how can i fix this?
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString: ...
0
votes
2answers
48 views
How can i check that my data is attached with the RequestBody in Post method in Objective C
I making an Login Page for an app. the Credential details are stored in a DB. so i am making an ASP.Net middleware service.
Now previously i was doing GET method to send request which appends the ...
0
votes
1answer
37 views
How to remove headers in a NSMutableURLRequest?
How can I make a request that contains no headers fields? The requests are being sent to my own server implementation from scratch, which doesn't care about header fields. The request will at most ...
0
votes
1answer
66 views
NSURLConnection distinguish 2 different request
In my app I need to download and post some data...
First of all I need to download some data and then I need to do a post request.
I Use async request to don't freeze the UI of my app...
But when I ...
0
votes
0answers
29 views
Test NSMutableURLRequest connection
I'm using NSMutableURLRequest to connect to a Host.
It is working fine, but I would like to test if the Host+Port is available
I can´t find a way to do that
Anyone know some way to do that?
Thanks ...
0
votes
1answer
50 views
Why does my app freeze when I make a POST request with NSURLRequest?
I have a method like this. It works fine when my device is connected through wifi network, but when it is connected through 3G network it freezes my app for some seconds.
So, because it is an ...
0
votes
1answer
80 views
iOS - NSURLConnection - Connecting to server and get Nonce
I'm writing iOS application.
There's a server related to some real estate.
I've to send the following request to server to get the Nonce.
GET /ptest/login HTTP/1.1
Method: GET
User-Agent: MRIS API ...
0
votes
2answers
40 views
Post String to a server
i need to send this SomeString To a server by a post request.
without to make it NSData object and do NSUTF8StringEncoding
the SetHttpBody: ask me only for a NSData object.
how can i Post this ...
0
votes
1answer
226 views
Post json using Xcode
I am trying to send data, in json format to my webservice, using POST. I have a php page on my server that receives the json string and prints it out.
The issue is, that the POST array recieved is ...
0
votes
1answer
65 views
How to make JSON request?
See the format below
{
"layer_id":"1Wn",
"name":"Example Place",
"latitude":"45.5037078163837",
"longitude":"-122.622699737549",
"span_longitude":"0.62",
"extra":{
...
0
votes
2answers
81 views
Sending JSON Request to server?
I have following JSON for sending request on server
{
"name":"Home",
"latitude":"45.5037078163837",
"longitude":"-122.622699737549",
"radius":"240"
}
and URL of for request is
...
0
votes
1answer
90 views
Network error when sending a file through http post with NSMutableURLRequest
I have a problem using setHTTPBodyStream instead of setHTTPBody with a NSMutableURLRequest.
I'm working on code to send large file to a server through http post. With the following portion code, ...
0
votes
1answer
105 views
Cancel NSURLConnection Objective-C
I have a tableviewapplication, wich when the user select one view it needs to parse some XML to display information.But sometimes the XML is not finished downloading and the user can press the button ...
0
votes
0answers
62 views
Send POST variable form iPhone doesn't work
I try to send POST variables to a webserver from my application.
The server responds -1 if my variables $POST['email'] and $['password'] are not set, or responds 1 if all is correct.
Here is my code:
...
0
votes
1answer
74 views
NSMutableURLRequest's addValue does not work?
This is for iOS:
I am trying to resume a file download from a previously interrupted connection. To do so, I simply use the HTTP header's range field to set the starting point of the download request ...
0
votes
1answer
95 views
NSMutableURLRequest and memory issue
Good morning,
I'm developing an application that uploads some files; there are no real issues, but only one big problem: if I try to upload 1gb of files it allocates 1gb of memory, and you can ...
0
votes
0answers
46 views
autologin at community-board with UIWebview using autologin.php
to be honest i never really worked much with NSURLConnection NSURLRequest and all the webconnection stuff.
But for my current project i want to make a autologin-functionality if the user set his ...
0
votes
4answers
288 views
NSMutableURLRequest setTimeoutInterval issue
Ok firstly if I use a NSURLReuqest(non mutable) as following, the the connection do timeout accordingly to what was set.
The weird thing is why does the NSLog always read 0?
self.requestURL = ...
0
votes
0answers
42 views
NSMutableURLRequest with NSTimer the Best Way?
in my app im using NSMutableURLRequest like that
- (void)receiveMess
{
NSString *post2 = [NSString stringWithFormat:@"sender=%@&receiver=%@",
[[sender text] ...
0
votes
1answer
162 views
How to send multiple post data in URL in iphone
Currently I know I can send post data to URL through HTTP request. Is there a way to send multiple post data attached to the URL through HTTP request. I know for the fact that I can send POST data ...
0
votes
1answer
167 views
Using accept header with NSMutableURLRequest on iOS
I have a problem with my NSMutableURLRequest. My server supports both JSON and XML formats and they are separated with an access header. It also defaults to JSON if no access header is set.
Which ...
0
votes
2answers
70 views
HTTP Request Memory leaks
I'm using this code, but when profiling, it tells me I have a many memory leaks within response_error, request and _response variables.
I tried several places to put a release code of each variable ...
0
votes
1answer
90 views
NSMutableURLRequest loses session information
I have an iphone app that I'm trying to get to talk to a rails back end. I'm using NSMutableURLRequest to pull data back and forth. All the calls work fine on GET requests but when I need to post ...
0
votes
1answer
111 views
How to check the NSDATA type?
I have the class which downloads images
First I have NSMutable URLRequest than I establish NSURLConnection and than I want to check which data I received in this function
- ...
0
votes
1answer
278 views
NSMutableURLRequest: Can't get body to add with PUT request
I am trying to perform a PUT. As a test, I execute a GET request on some JSON data and store this receivedData in a variable data that I have initialized elsewhere. I am able to decode the original ...
0
votes
1answer
74 views
Post two textfields in UIWebView
I want to fill two textfields in a page I loaded in UIWebView. I have been busy with NSMutableRequests.
My code:
// webView is an object of UIWebView
// This is my ViewDidLoad Function
NSString ...
0
votes
1answer
142 views
How do do the equivalent of the objective-C mutableCopy in Monotouch?
I have some code in objective-C which uses the 'mutableCopy' method to make a mutable copy of an NSURLRequest object called 'request':
NSMutableURLRequest mutableRequest = [request mutableCopy];
How ...
0
votes
3answers
390 views
How to print NSMutableURLRequest?
How to print NSMutableURLRequest using NSLog ?
Thanks in advance...
0
votes
2answers
503 views
tumblr iphone integration
Hi i have done with status update in tumbler but i am facing problem when i am sending photo in the form of data, as shown below.
-(IBAction)sendPhoto
{
NSString *email = ...