yazz.com
yazz.com

Reputation: 58786

Can an iphone/android app connect send a request to any server?

I am developing an app where iphone and android phones need to send requests to different servers. Are there any restrictions on this (ie: can we only send via apple gateway)?

Upvotes: 0

Views: 115

Answers (2)

sergio
sergio

Reputation: 69027

You can absolutely send request to any server. Have a look at NSURLRequest and NSURLConnection if you are interested in communicating through the HTTP protocol.

Anyway, for HTTP communication, I strongly suggest the ASIHTTP framework. It makes everything easier.

Here you can find a general overview of what networking technologies Apple offers.

Upvotes: 1

ceejayoz
ceejayoz

Reputation: 180004

Yes, you can send requests to any server.

Upvotes: 4

Related Questions