Someone has to be able to explain what I\'m doing wrong here! I\'m trying to create the MOST simple example of an AJAX post to a Google App Engine app...and I\'m failing!
All the other answers were stupid.
You want post instead of get. That should say:
class EmailList(webapp.RequestHandler): def post(self): self.response.out.write("You see nothing!")