Not able to get Pushnotification - iphone

while i'm using push notification in iphone with local server(used php), not able to receive the notification...it shows an error like "Connection timed out (60)".....
can any one tell me clear idea for implementing the server side code (php)

Check this site: http://www.easyapns.com/.
They show all the steps and give to you a simple APNS server in php/mysql.
Hope it helps.

Related

Notifications in background

I work on application in swift3, my application receive data from web server, I need my application push notification when new item added in server side, Even when my application is closed, without consuming mobile resource or periodically update, How can I do that?
Push notifications does not consume resources, your app must not be open to make it work, so it looks like the solution to your problem is just to implement them on your server and app.
Please note that the user will be prompt to accept or decline the use of push notifications, and based on his answer he will receive or not your messages.
To know how to implement push notifications this tutorial might help you.
https://www.raywenderlich.com/123862/push-notifications-tutorial
This is the official apple documentation about push notifications:
https://developer.apple.com/library/content/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/APNSOverview.html#//apple_ref/doc/uid/TP40008194-CH8-SW1
The official apple documentation explains how to implement the communication between your server and APNs.
Hope it is enough for you to get started with that. :)

Getting error in receiving push notification using apple push notification service in ios

I have developed a application that uses appcelerator cloud service and APN everything working fine I was able to register the device for push notification and even able to successfully send notification but in the receiving path of the notification I am getting error like UILocalNotification keyed archive array contains invalid classes: *** -[NSKeyedUnarchiver decodeObjectForKey:]: data to unarchive contains class (NSDecimalNumberPlaceholder) which has not been allowed. Ignoring.
I am not able to trace what this error try to say please help me out.
Thanks
Pushpa
Just ran into this as well. It seemed to consistently happen for me when you set the badge in the APNS payload to a negative number. See if this goes away if you add a check on your server to make sure the badge is always set to >=0.
Hope that helps.
Cheers,
Ashu

Retrieve and save all Apple Push Notification Device Tokens in our server for APNS?

Am trying to integrate Apple Push Notification in my app. I have studied the Apple Document and other tutorials for my understanding. But, still i have a doubt to create a server and store all Apple Push Notification devicetokens in the database. Am not going to work on Server side but, i need to explain the approach to my client. I need to understand to create a APNS server provider and save all the apple push notification device tokens and retrieve all devicetoken and retrieve a single devicetoken to send notificaions. Can you please suggest me any sample code to save all apn devicetokens and retrieve from the server? I suggest my client to create a server in C#.net platform is this correct? Thanks in advance.
Essentially, you just need to decide on a way for your app to let your servers know the device tokens. So, there are many ways to achieve this.
If your server side already involves a website, the easiest way would be to use HTTPS to do a POST request from your app. Then, the server-side code can be written as if it is handling form request from browsers. I can't really give you sample code since I don't know any C#, but this should be familiar to any web developer.

Adding PushNotification service to an iPhone app

I am trying to implement Push Notification from server site in my application since many day but I am unable to get push notification service in my application. but I am getting this error:
error : Domain=NSCocoaErrorDomain Code=3000 'no valid' aps- environment' entitlement string found for application UserInfor=0x170140 {NSLOcalizedDescription=no valid 'aps- environment' entitlement string found for application}
Can any one help me out to resolve this error?
Or give me some more clear steps what I am missing in my application.
Actually I have to Send notification on some changes in my Server side application. Like If some one post a Blog on the site it should be shown in every app holder. For this we need to generate the JSON. So my main worry is how to connect my Server or my JSON updates with PushNotification service. I Think now it's more clear.
Thank you.
perhaps this will help you:
http://blog.boxedice.com/2009/07/10/how-to-build-an-apple-push-notification-provider-server-tutorial/
and try to do a bit of googling!!

I want to use Push Notification for My app for IPhone

I want to use Push Notification service for my app ,but I am not sure how to utilize this ,please help
you have a good tutorial for push notifications here explaining the server side implementation details:
http://blog.boxedice.com/2009/07/10/how-to-build-an-apple-push-notification-provider-server-tutorial/
and here explaining the client side details:
http://mobiforge.com/developing/story/programming-apple-push-notification-services
Also here is the link to the Apple developer guide on local and remote push notifications: http://developer.apple.com/library/ios/#documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Introduction/Introduction.html
Hope this helps.
To send remote push notifications using PHP, I suggest you take a look at the php-apns project on Google Code. I've had good experience with it.
You will have to enable push notifications on iTunes Connect, if you didn't do that already. Your app will have to get the push notifications token from the OS, and deliver it to server. This token may change from one launch to another, so recommended way is to fetch the notification token at launch, and deliver it to the server. Server can then decide when it wants to deliver a notification to which device; at that point, you use php-apns which will connect to Apple's server on port 2195 (make sure you have a hosting which allows that) and, using several certificates you also put on the server, communicate with it.
Make sure the certificates are not downloadable when you upload them on the server.
You cannot test push notifications on the Simulator.