just_a_dude
just_a_dude

Reputation: 2735

XMLHttpRequest from Google App Engine app to other Google App engine app (different ports)

I'm attempting to make an XMLHttpRequest (i.e. $.ajax) from a google app engine application (front-end) to another google app engine app (back-end that returns JSON), however, when I try the call always fails ... probably because the user from the first application is not logged into the second application, I was wondering if some of you had the same issue and how is it possible to resolve it.

(GAE Java SDK)

Thanks

Upvotes: 0

Views: 237

Answers (1)

dardo
dardo

Reputation: 4960

If the two apps have different URLs, it might be related to this:

http://en.wikipedia.org/wiki/Same_origin_policy

Upvotes: 1

Related Questions