views:

364

answers:

1

I have written provider part in java. Notification is sent to the APNs. Not getting any exceptions. iPhone app is registered and checked the settings in the iPhone it is fine. But notification is not received by the iPhone. I don't know why? I have a doubt in notification message. But i dont know how to check it out.

+2  A: 

You need to get everything just right or the push notifications will fail silently. Here are a few things you can check:

-Have you installed your application on a real test device, and has your app successfully registered with the Apple APNS servers (I think you've said it is registered)? If there isn't a device to send to then your notifications will get dropped.

-Are you using Development or Distribution certs and profiles? Development MUST send notifications to the Apple sandbox servers, Distribution MUST use the Apple production servers.

-You must turn on APNS in your App ID on the Apple Portal BEFORE you create the provisioning profile. Otherwise it misses out the setting in the provisioning profile (which must contain sandbox or production as per my previous point).

-Does your app ID in your Info.plist exactly match the app ID on the Apple Portal? You need it to be com.domain.appname WITHOUT the unique ID thing that Apple creates for you.

You should be able to run tcpdump or Wireshark to catch the JSON data you are sending to Apple. If you post that then somebody might be able to notice if there is something wrong with it.

Dan J
Thank u for this valuable info...U saved my time....
Sijo