I made a few applications with GAE for Python.
I find a problem in all application, so I'll report it and ask for
your advise.
I'm using webapp Framework in program like this.
----------------------------------------------------------------------------------------
application = webapp.WSGIApplication([('/', TopPage),
('/hoge', HogePage),
('/hage', HagePage),
('/(.*)', FileNotFound),
],
debug=True)
def main():
run_wsgi_app(application)
if __name__ == '__main__':
main()
-----------------------------------------------------------------------------------------
(The TopPage,HogePage,HagePage are defined as RequestHandler.)
I think this is OK and this can serve as I hope, but it is not.
I can't get response by GAE server.
Firstly, I deployed this application for GAE server. I wrote app.yaml
and succeeded it.
Secondly, I opened the URL where the application was put, I want the
program work as i hope.
However, the page was EMPTY...
I was confused and tried pushing F5 ( refresh ) and the page was
shown.
I thought "the program was not running when the app has been just
uploaded".
But the phenomenon was repeated for some times.
The page sometimes was shown empty.
I think my program was correct because it'll works well when F5 was
pushed.
Please , give me some advises.
The advise wrote in Japanese is OK. I'm Japanese.
I'm sorry for writing fuzzy things in English.
I can't write English very well.
Thank you for reading my message.
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.