On Wed, Apr 8, 2015 at 9:05 AM, Edu App <[email protected]> wrote:
> I think because I am using *-Dserver.host=My_Network_IP *only my device > or devices under this network IP address can register to client app. > I have posted detail question on stackoverflow > <http://stackoverflow.com/questions/29495757/is-it-necessary-to-have-all-devices-in-same-network-to-receive-the-push-notifica/29496604?noredirect=1#comment47185689_29496604>. > I got one answer that I need to deploy my server code to some web > server. Do I need to host some web server for this? other person answered > me like " you can deploy it on the cloud in minutes with no charge" Will > it help me? If so then how to do it? > You're absolutely correct: the *server.host* argument is there so devices on the local network can access your application while it's in the dev server. Currently your application is running on your local computer within a development server. If you want the whole Internet to be able to access and use your web application, you need to upload your application to a server. You can do that by following the steps here: https://cloud.google.com/appengine/docs/java/tools/uploadinganapp#Uploading_the_App . Make sure you have an App Engine account and application ID <https://cloud.google.com/appengine/docs/java/gettingstarted/creating> set up before you upload. ----------------- -Vinny P Technology & Media Consultant Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/CALSvALBFSgC9XLRR0Qx%2BiABbNsD60KK1-mmo3g-_ALa7fUzHCQ%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
