apns

Problem generating APN SSL certificate after submitting to apple store

I'm having trouble getting Apple to generate an APN SSL certificate for my app ID. I've submitted the application to the Apple store, and it is pending review. I tested the application using an Ad Hoc app ID "${bundle_id}.adHoc" and everything went fine. I submitted to the Apple store with app ID "${bundle_id}.release". Now I want to g...

Push notifications work for Ad Hoc, but not when downloaded from the Apple store.

My app just got approved for the apple store. I downloaded it an installed it on my iPhone - but it looks like push notifications are broken! I was successfully testing push notifications in production using an adHoc provisioning profile. I had no problems. The only thing I did differently when I submitted to apple was using an app stor...

Urban Airship Tags issue

I modified the alias sample code from: [request addRequestHeader: @"Content-Type" value: @"application/json"]; [request appendPostData:[[NSString stringWithFormat: @"{\"alias\": \"%@\"}", self.deviceAlias] dataUsingEncoding:NSUTF8StringEncoding]]; to: [request addRequestHeader: @"Content-Type" value:...

Distributing APNS providers

I'm writing a business-focused iPhone app which includes a self-hosted server component. I'd like to include push notification functionality in the server; reading through the programming guide it looks as if this would involve either: Distributing the provider certificate with the server component - this doesn't sound like a terribly ...

Trouble sending multiple notifications using APNS

I'm trying to send multiple notifications using my PHP script. But after sending about 50 or so out of the 10k users, I get a broken pipe warning. I'm not sure whether that message is sent. From various other posts, I learnt that it could be because of a invalid token. However, my feedback service returns no invalid tokens. (ssl://feedba...

Moving APNS to Production with app that is alreay in appstore

I have a application in the app store, the current Distribution certificate was issued before I configured APNS. I want to build a update that will include APNS. My question is do I need to revoke and re-issue the Distribution certificate for APNS to work or is that just included? I know that I had to do that with the provisioning profi...

Apple Push Notification Feedback Service - how frequently does it check

I have been able to successfully create push notifications and I have also received responses from the feedback service, so I am confident that my configuration is correct, but I was wondering, how long after a device has been made inactive, will it be picked up by the Apple Push Notification Service. When I first polled the feedback ...

Push notification or thread with timer

Hi all, In my application, I'm having functionality like twitter that when you have not refreshed your screen, and if there're new messages then you get this message that "You have n new messages" and a refresh button, which on press will refresh the screen. I'm basically fetching all the data from an xml with some url. In case of thr...

How good is ApnsPHP?

Hi guys, I want to build a push server that can handle a heavy load of push notifications that it needs to send. I was wondering if ApnsPHP (http://code.google.com/p/apns-php/) is the right chice for me, or if I should build it using some other language. Any help or pointers would be highly appreciated! ...

Can APNS token be used by other apps to send notification?

Hello, I have an app A which is registered to apple to receive notifications and this generates "tokenA" which is passed to "providerA". Now there is a another app B which is registered to apple to receive notifications and this generates "tokenB which is passed to "providerB". So if "providerB" somehow gets hold of "tokenA" can "prov...

how do you convert your aps_developer_identity.cer to a .p12 to use with windows

I am trying to convert my apns cert to p12 so i can use it with .net ...

Apple push notifications acting weird

Hi When I started coding the notifications, they were handled in one of 2 ways. If the app wasn't open or the phone was locked, the user would get the alert with a "view" button to open the app. if the app was open, the alert was handled in the app delegate. Now that I have deployed the app, if the phone is locked, the user recieves ...

APNS-php fails to send to more than 1 recipient when using production certificate

We utilize php-apns to send push notifications to our iPhone app users. This worked great when we were developing, however once the app was in the app store and I switched to the production certificate, I'm only able to send to a single recipient. Any more than that and no one gets a push notification. I've read elsewhere that others ...

How to update the applicationbadge number when application is not running ?

Hi all , I have implemented APNS in my application . It works like a charm . There is just one problem that i don't know how to update the badge number if two subsequent notifications come and the application is not yet launched . suppose first time is 1 then 2 just like the mail application . thanks ...

Add iPhone push notification using ASP.NET server

Here's the overview. I need to add push notification to an iPhone app. Server side is ASP.NET in c#. What I would like is some coaching to work through the process. I will then post generic code for an iPhone project and an ASP.NET web app along with step-by-step instructions so that others can learn. Here is my understanding: Apply...

apns-python-wrapper device token issues

To use the module apns-python-wrapper here: http://code.google.com/p/apns-python-wrapper/ you need to convert your iPhone's APNS device token, however, I'm not sure how to convert it. Here is the fresh new token returned from the device: 8fa9c60685c158a3cf6f9c5de164b3817e68a075fcfdafcd982aa4b3d2ca99c7 And this is what it needs to look...

apple push notification with APNS sharp.

i use APNS Sharp library for my apple push notification. i have downloded from Here.i use sample test program provided by APNS sharp library without any modification. it simply does not send any notification until i put break point at that line of code. if i put break point. i just work fine.is this expected behaviour or i am doing somet...

iOS - Handling pushed notifications with APNS

Hello! Considering that I receive a pushed notification on my iPhone. What happens: If the application is started: is there a way to get the payload? Do I see the notification on my screen? If the application is not started, is there a way to get the payload? Thx for your answers ...

iOS - Latency of APNS

Hello! I'd like to know what is the latency between sending a message from thé APNS server to the iPhone, once the provider sent it to the APNS server? Is it few milliseconds? Few seconds? Few minutes? Thx! ...

iOS - Push Notification: does it always display a notification

Hello! I'd like to know if it is possible to send a push notification, through APNS, without displaying a notification if the application isn't started? (in this case, the message received will be thrown away) Thx ...