views:

356

answers:

2

i read in some stackOverflow post that The host would need to have port 2195 open and support push notifications under apns.how do i make my server to support apns.

what does this line means in Push Notification guide

To establish a trusted provider identity, we should present this certificate to APNs at connection time using peer-to-peer authentication.

do i need to make a connection to APns through my native app? someone please explain this

+2  A: 

Pretty much any server that doesn't have restriction on what sockets you can open is ready to be an APNS provider. In your project code, you can just open a socket to Apple servers (or use a library).

My understanding that Google App Engine and basically any traditional shared web hosting block any port other than 80, so you cannot use them. However, you can look into Urban Airship that provides a RESTful API that basically use from any service. It might get pricy though.

notnoop
what if i don't want to use urban airship.i have my own server just want to know that do i have to pay for sending notification to iphone devices or just send the payload to apple's getway......?
Rahul Vyas
You don't need to pay to send notifications. What language are using to build your back-engine? We can provide with sample projects for sending notifications.
notnoop
i just have created my native iphone app.here what i actually want to do.in my app user starts a countdown timer.as timer started suppose it started on 35 minutes,so send a request to server to show notification when 10 minutes left even app is closed.also if app is already running the alert shows from within application not from the APNs.also tell me how do i manage all the requests,how do i cancel the request from being sent to APNs.thanks for your answer
Rahul Vyas
is there a step by step guide available after creating application.waht are the steps to use push notification,if there is no guide could you please explain this in a step by step manner.i'm totally noob in this field so any help would be appreciated
Rahul Vyas
A: 
slf
do i need to pay for sending remote notification? how do i authenticate my own server to APNs?
Rahul Vyas
the guide details that information, your company must be registered with apple as an iPhone developer
slf