Reputation: 3345
I am facing a challenge to upload & download data, to and from the server using RESTful web services.
Is it possible to use a RESTful service client, if possible any way to achieve that in an iOS app to send data to the service.
Upvotes: 2
Views: 1056
Reputation: 439
Take a look at ASIHTTPRequest or use RestKit for some more advanced stuff!
RestKit works really nice!
Upvotes: 0
Reputation: 1003
@Ajay: As Claus mentioned there are number of public frameworks/wrappers are there, you can use them for RESTful service interaction from your code. The one I frequently use is ASIHttpRequest
, quite handy and easy to use. There are enough examples out there with ASIHttpRequest
you can use it as reference.
Let me know if that helps.
Upvotes: 1
Reputation: 3934
You question is not clear. Do you need to push data from the server to the iOS app using a REST service? If so, REST does not provide an interface for push. (It only provides a client->server Create/Read/Update/Delete API).
Upvotes: 0