Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Push notifications Service using monotouch [closed]

I am starting to look for the Apple Push Notification Service . I have an created using Monotouch framework,

How can I start to let my app use the apple Push Notification Service,

Should I create a Web Service that handle my event and if the insert event is captured for example I send data to the APNS and that is all or should I create something particular. and in the Client Side Should I add some method to handle the notification from APNS??? I am really confused and I don't know from where should I start doing all this. Thanks in Advance for your help

like image 903
Khaldoun Avatar asked Mar 31 '11 19:03

Khaldoun


People also ask

Do push notifications work when browser is closed?

The only time a push won't be received is when the browser is completely closed, i.e. not running at all (no marking). The same applies for Windows, although it's a little trickier to determine whether or not Chrome is running in the background.

Do push notifications work when app is closed iOS?

Apple does not offer a way to handle a notification that arrives when your app is closed (i.e. when the user has fully quit the application or the OS had decided to kill it while it is in the background). If this happens, the only way to handle the notification is to wait until it is opened by the user.

Does an app need to be open for push notifications?

Push notifications are small, pop-up messages sent to a user's device by a mobile app that appear even when the app isn't open.

Can push notifications be turned off?

Touch and hold the notification, and then tap Settings . Choose your settings: To turn off all notifications, turn off All notifications. Turn on or off notifications you want to receive.


2 Answers

Trying to figure out the client site of APNS with MonoTouch, i found this article very helpful: Push notifications in iOS with MonoTouch

like image 173
Arne Claassen Avatar answered Nov 16 '22 03:11

Arne Claassen


The two resources I would start with while beginning to learn about APN are below:

About Local Notifications and Push Notifications

How to build an Apple Push Notification provider server

You may also want to check out Urban Airship. They provide a free APN provider for up to 1 million messages a month.

There is also a project on code.google.com specifically using MonoTouch with APN. apns-sharp I haven't looked at the code but I may help you out.

like image 34
Larry Hipp Avatar answered Nov 16 '22 03:11

Larry Hipp