I'm in the planning phase of an iPhone application and am considering using Google App Engine for my server component due to its scalability features.
Push notifications are sent using a binary interface to gateway.push.apple.com:2195
.
However, the JRE for the server is only allowed to use the following standard classes, which does not include the Socket
classes. Can URLConnection
be used somehow to do this?
Is there a way to implement push notifications given the restrictions on Google App Engine applications?
I'd like to avoid using a third-party service such as AppNotify or UrbanAirship if possible.