0

I am currently learning Stream Programming Guide from Apple to make use of sockets. Can you guys provide me some reference link which talks about sending HTTP request (GET & POST) via sockets(input & output streams)

Suraj
  • 101
  • 6
  • 1
    http://developer.apple.com/library/ios/ipad/#samplecode/SimpleURLConnections/Introduction/Intro.html#//apple_ref/doc/uid/DTS40009245-Intro-DontLinkElementID_2 – user523234 May 20 '13 at 10:57

1 Answers1

2

Try searching a little yourself before posting a question like this.

http://www.raywenderlich.com/3932/how-to-create-a-socket-based-iphone-app-and-server

Objective C : Post/Get Request using Socket

Make a Http Request With Sockets

UPDATED:

http://www.example-code.com/ios/http_post_json.asp

http://blog.stathat.com/2011/11/28/http-post-in-many-languages.html

Community
  • 1
  • 1
sangony
  • 11,636
  • 4
  • 39
  • 55
  • I went through these links earlier. They only mention about GET request. I want to know about sending POST and other types of requests via sockets – Suraj May 20 '13 at 11:05