Hi, I'm new to app engine and I'm having trouble solving a problem:
I have an app (mytestapp) with 1 python script: contact.py . When I configure the app.yaml as below I get no problems (url: http://localhost:8081/): application: mytestapp version: 1 runtime: python api_version: 1 handlers: - url: /.* script: contact.py However if I want to map a request for index.html to contact.py, it doesn't work: application: mytestapp version: 1 runtime: python api_version: 1 handlers: - url: /index\.html script: contact.py The url I request is: http://localhost:8081/index.html. I get the following error printed out to my log: INFO 2010-05-25 03:23:47,851 dev_appserver.py:3261] "GET /index.html HTTP/1.1" 404 - I'm running gae (1.3.3) on windows vista. Also, when I start up the launcher, I also get the following warnings:WARNING 2010-05-25 03:08:41,171 datastore_file_stub.py:622] Could not read datastore data from c:\users\tom\appdata\local\temp\dev_appserver.datastore WARNING 2010-05-25 03:08:41,216 dev_appserver.py:3603] Could not initialize images API; you are likely missing the Python "PIL" module. ImportError: No module named _imaging Right now I'm not making any explicit calls (that I know of) to the datastore or to the any image libraries. I suspect those warnings don't matter though, as I can reproduce this error when I deploy to the web. Anyone have any ideas why I can't get this to work? Thanks! Tom -- 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.
