currently i am thinking about using push notification service as an alternative to SMS in my applications.
What i need to do, is to send request (with data - e.g. user fills in text field on device, and request containing this text is sent to server via push notification service) from device to server. Server then processes this request, and sends back push notification (with some processed data) to original device.
So basically i am asking: is also device to server communication possible with push notification services?
Thank for your help.
As requested in comments, I've posted this as an answer
Why using push? Why not just sending HTTP requests?
Have a look at
NSURLConnection
andNSURLConnectionDelegate
as these are probably the classes you'll want to use.