RCB
RCB

Reputation: 2263

Can't reach local GAE server through my ip

I developing an app with GAE as a back-end, when I run GAE server locally I can reach it in the browser through localhost:8888 but when I try to reach from an external device on the same wifi network, with my <my local ip>:8888 I get no response. I was always using this way do debug my apps and back-ends and suddenly it stopped working?

Upvotes: 0

Views: 237

Answers (1)

RCB
RCB

Reputation: 2263

Found the answer at last, add 0.0.0.0 address to the servers run arguments. As described here : Can access AppEngine SDK sites via local ip-address when localhost works just fine and a MacOSX

https://developers.google.com/appengine/docs/java/tools/devserver#Using_URL_Fetch

Upvotes: 1

Related Questions