views:

596

answers:

2

I want to check if Push Notification can be done using a hosting server before purchasing hosting plan.what is the shortest way to check this.Also i have godaddy.com's hosting plan can i use push notification from godaddy's hosting server?

A: 

I just purchased my Godaddy account to find out it blocks all connections except 80 and one other. In other words we can't use the 2195 connection that is required. If you find another one please let me know.

Bryan
@Bryan godaddy service is not so good but you can use urabnairship.com it's free for 10000 push messages.try this out with your godaddy hosting for more information log on to urabnairship.com
Rahul Vyas
A: 

You can confirm definitively by using telnet and specifying which port to connect to. From the command line run:

MyServer:~ Home$ telnet gateway.sandbox.push.apple.com 2195
Trying 17.149.34.143...
Connected to gateway.sandbox.push-apple.com.akadns.net.
Escape character is '^]'.

If there is an error connecting then it will just hang and not return - the above shows a working example where I can connect.

You'll need an SSH login to your hosting service to test it this way, and unfortunately you are unlikely to be able to test it without buying an account - so you probably have to rely on asking their customer services.

Be aware that basic hosting packages normally just provide an FTP login to let you serve up files, you'll usually have to pay extra to get a hosting package which provides SSH access (which you'll need if you are going to run code to connect to the Apple Push Notification Servers).

Dan J