0
votes
0answers
43 views

Cannot set HTTP request body

Can anyone tell me how to send a file to server and a username. I tried to set HTTP body with the content of the file and use GET method to set username but it doesn't work and encounter the exact ...
0
votes
1answer
42 views

Why do I get a Random Crash during a Network Communication - (crash in CFRelease)?

I am working on one of my projects which is in maintenance phase so I do not have much liberty to change a major chunk at one go, While working on this I get to see this random crash on both Simulator ...
1
vote
2answers
50 views

Chain of POST requests in Objective C (iPhone)

I need to send a server a set of requests with some data. The data in the subsequent requests will be determined based on the server response in the earlier requests. I do not want to use synchronous ...
0
votes
2answers
40 views

iphone - create http server and connect via hotspot

I am interested if there is a way to create a HTTP server on iPhone and connect to it via iphone hotspot, so it would no need for any other infrastructure (e.g. lan). I would like to send it some data ...
0
votes
1answer
74 views

multipart/mixed in Iphone Application

I am currently trying to send a multipart/mixed request in iphone application but the service is always returning the http status code 500. I don't have access to the source code of the webservice. In ...
0
votes
0answers
26 views

iPhone CFSocket send HTTP packet with HTML body

I am writing on Socket Server using CFSocket. When I received the client's connect request(ex: 192.168.1.x:portnumber), I am going to send HTML file so that the client can see it on the web browser. ...
0
votes
0answers
44 views

C - Stream live camera capture on an HTTP server

How might I go about writing a c program that would take live webcam capture and stream it via an server (likely HTTP)? I'm not looking for the exact code, just some pointers on where to get started ...
0
votes
1answer
45 views

xcode Unsupported URL when sending request

I am trying to send a GET Http Request to my computer that runs an Apache server. When I send the request from XCODE to X.X.X.X\my_script.php using sendSynchronousRequest I get a response - ...
0
votes
0answers
31 views

Website only redirecting sometimes

There is a web site that is in the process of being taken down. Whenever I try to access it on my computer, it automatically reroutes to the new site; however, if I try to view it on my phone, I can ...
0
votes
1answer
47 views

HTTP-connection with credentials to get HTML document

I would like to download an HTML documents(s) to parse the content. The server asks before entering this site to put in my user credentials. In Java I arrived with a basic authentication in an ...
0
votes
0answers
53 views

IOS- Soap method calling from sudzc-master -ObjectARC opensoucre .their is some problems

Ios -Soap , I am using sudzc-master -ObjectARC open source , soap method but response is empty please help me.. i am using these two methods from sudzc-master -ObjectARC from Soap class: NSString ...
0
votes
1answer
51 views

How can I stop HTTP posting to server from iphone

I am posting video to server with HTTP Posting. How can I stop this process while posting. I am getting the written bytes,and if i wish to stop this posting on a button click how can I implement that ...
1
vote
1answer
138 views

Pause/Resume file uploading to server from iphone

I am uploading video to server with HTTP posting. How can I pause and resume this upload process by some button click I am using the following code NSString *urlString ...
0
votes
1answer
89 views

File uploading issue in iphone

I am uploading video to server with HTTP posting. I am using the following code NSString *urlString =@"http://sampleurl.com/upload_video"; NSMutableURLRequest *request= [[[NSMutableURLRequest ...
0
votes
1answer
171 views

Uploading video with AFNetworking from iPhone app

I am posting a video file to server from my iPhone app. Currently I am using HTTP POST method. I would like to learn about upload using AFNetworking. Hope someone will help me. Here is the sample ...
2
votes
1answer
159 views

How do I post images to reddit in iOS / Objective C?

I am trying to post an image to reddit; however, I only kind of know what I am doing. I am using objective c for my iphone app. Prior to the code listed below I obtain a modhash and cookie by ...
0
votes
0answers
71 views

How to make a http post request equivalent to selecting a file and uploading?

I need to make a post request and uploading should be equivalent to uploading file(s) on html page. I have tried to make post request for multi-form data request. I tried to do by my self appending ...
3
votes
1answer
327 views

Video Uploading to server from iphone app

From my iPhone app,I am uploading video to the server through HTTP posting.I am successful in posting the video, even though I have 3 question(I have to fix this) 1.How can I restart uploading if ...
0
votes
3answers
137 views

Java server to handle requests from iOS via JSON?

I've been tasked with creating a server which will receive requests for information from an iOS device (iPhone) and then return results based on this request. I've done some research, and it seems ...
4
votes
1answer
245 views

What are the disadvantage(s) of using HTTP pipelining?

I learnt a new phrase today from WWDC 2012 session 706 - Networking Best Practices: HTTP Pipelining. It looks great - but I don't understans why you would ever not have it on. From my experiments, ...
0
votes
1answer
67 views

Chat between two iphones

I am looking to create a chat app so that two iphones/mobile can chat with each other. I am kinda noob in networking so Can someone please head me in the right direction ? 1. Should I try to connect ...
0
votes
0answers
183 views

Is Youtube using HTTP Live Streaming?

I am looking into HTTP Live-streaming. Apple says it will only support large videos with the HTTP live-streaming protocol I want to show a Youtube video in iOS, Is Youtube using HTTP live-streaming ...
-1
votes
1answer
30 views

What server should I configure for [closed]

I am currently trying to do the following tasks:- Make HTTP GET requests from several different APIs Results are parsed and stored in a MySQL DB Data is manipulated and outputted on a website and ...
0
votes
1answer
47 views

server not getting image datas while posting from iPhone App

I am posting multiple images to server url,But i am facing one issue. After posting the image datas,The serever get only the image data i send first.The remaining datas are null.But at the time of ...
0
votes
0answers
77 views

Unable to add NSMutableURLRequest HTTPHeader with Line break

I am trying to pass some base64 in a NSMutableURLRequest HTTPHeader field but it is not working. The header field will not get set because there is a line break \n or \r carriage return. Here is an ...
0
votes
3answers
130 views

Sending data to a website and getting results of search iOS

I am very new to iOS and I've just begun reading about HTTP requests and POST and GET methods. Let's say, for example, I want to have the user input a string, and then send that data to a website, ...
1
vote
2answers
86 views

What is the standard response for successful http request for json format without body?

I had some trouble with the title, sorry. I'm having a discussion with a server gal from my work, we're developing iphone application on REST json standard, now the discussion is, that she said that ...
0
votes
0answers
301 views

IOS iphone ASIHTTPRequest cookie

i use ASIHttpReuqest to manager cookie ,but is it will lost session cookie Server is java tomcat http header is: cookie=user2=VXNlcklkOjI7ZW1ha=; user=VXNlcklkOjI7ZW1ha=; ...
0
votes
1answer
123 views

ASIHttpRequest setProgress: called only with a value of 0.0 and 1.0

I was woking on YouTube Resumable Uploads The progress jumps from 0 to 1 with ASIHTTPRequest. Here is my code : -(void)uploadVideoFile:(NSDictionary *) params { if(_location && ...
1
vote
1answer
236 views

CFNetwork reads http header Transfer-Encoding Identity but wireshark shows chunked

I am using the CFNetwork to read through the headers and I am trying to read what type of "Transfer-Encoding" my request is. It should be "chunked" Wireshark shows the correct request of ...
0
votes
1answer
101 views

Does a https connection automatically encrypts the data with ssl

I am just programming a iPhone application and I want to establish a https connection to the client's server. So far I have used ASIHTTPRequest. What I learned so far is that I need a certificate to ...
1
vote
2answers
453 views

Xcode HTTP GET REQUEST between views

I'm incredibly new at xcode and know a bit of coding but I'm trying to implement the use of an api in my app. Heres what I'm trying to do. Take a geolocation from my first viewcontroller. Take ...
9
votes
4answers
950 views

HTTP byte range protocol client behaviour on iPad/iPhone

I was testing a HTTP servlet implementation (kindly shared by BalusC) which supports HTTP byte range requests. I have found some peculiar differences between different HTTP clients, and was wondering ...
0
votes
0answers
46 views

Cookies to http proxy

I'm trying to send some informatins like (email,id,...) to the http proxy that my iphone connected to it. So is it possible to force my iPhone app to send shared cookies to my http proxy ? help please ...
0
votes
1answer
68 views

Iphone apps and cookies

Is it possible to force all iphone apps to use the same cookies in all http requests ? Example: i want to send my email in all http requests.
0
votes
0answers
176 views

iphone mobileconfig and udid

I want to send a unique information in all iphone http requests(of any apps or browser). Is it possible by "mobileconfig" file ? I found out some links, but i am not sure about it.
1
vote
1answer
171 views

UDID iphone in http header request

it's possible to let my iPhone send automatically the UDID in all http request header?
0
votes
1answer
82 views

http request with Devise Login

This is a really nooby-question. I wanna link my iphone app with a devise login on an existing site. the existing scripts shouldnt be changed, there should be a simple 'interface' between the app and ...
0
votes
0answers
93 views

How to log into a site using objective c

I'm working on a project where I need to log into a site, retrieve a URL after logging in and parse the data. So far I have been able to parse some of the site data I need without logging in, but now ...
0
votes
2answers
410 views

How do I setup CFReadStreamRead to timeout in iOS?

I have legacy code using CFReadStreamRead on the iOS, but if there is no/loss of a connection CFReadStreamRead will block forever. How do I setup CFReadStreamRead to timeout? Thanks in advance
0
votes
3answers
533 views

Get image from HTTP POST with PHP

So I am sending an image over the internet using HTTP POST and sending it to a php script on my server. I want to be able to take that image and save it. I am doing this fine with text, but when it ...
2
votes
2answers
102 views

iOS accessing stored files in cloud storage

I have a lot of files in a cloud storage website. To access them, just in the browser, I have to login and then get to the files. I'm new to iOS and I want to know if it is possible to do this within ...
0
votes
2answers
243 views

Listen to incoming HTTP messages on iPhone

I have to do a simple iPhone project as part of an university exam which consists in creating a simple instant messenger based on a client/server system using the Java Servlet technology (required). ...
0
votes
1answer
102 views

http GET Limit (iPhone)

I know that http GET can be limited by the browser but what if you are using an iPhone? What is the limit if I do something like this? NSString *urlString = [NSString ...
1
vote
2answers
115 views

How to make my app send a message to a desktop program?

I am working on a mobile app (Android and iOS) to take delivery orders for a restaurant. The app allows the user to pick stuff from the menu, and when he is done I need to send his order to the ...
-1
votes
2answers
132 views

How can i get UDID from http request sent form an iPhone?

I need to track requests for each mobile device, and for that to happen I need the unique identifier. Does the iPhone send UDID in each HTTP request header? If yes how could I read it? What is the ...
1
vote
1answer
177 views

403 Forbidden Error Objective c to PHP

I have a very diverse script that makes a GET http call in objective c, but in return I receive a 403 Forbidden error server-side... My objective c code... NSString *result = (__bridge NSString *) ...
0
votes
1answer
441 views

GET http requests In Objective C

I have the following code in objective c that is supposed to make a GET http request to my website which in turn will submit something into my MySQL database... NSMutableURLRequest *request ...
-4
votes
1answer
90 views

Give me an example of how to log into a web page using http POST method in iOS

I am very new to developing iOS apps and would be grateful if you anyone of you can show me how to log in to a web page by sending HTTP POST method, taking the username and password from the user.
0
votes
0answers
55 views

iPhone app NSURLConnection fails

My app loads a series of web pages. Some page requests require our customers to be logged into an account, and to send back a token, they got from the login response. If they log in somewhere else, ...

1 2 3 4 5 7