I've been working my way through a Google App Engine tutorial.
I entered the code as shown in section 8.2 and then tried to visit "Static List" from the administrative console.
When I click the link, I get:
Error: Not Found The requested URL /static.html was not found on this server.
I tried to modify "<page name="Static List" url="/static.html" />
" to read either:
<page name="Static List" url="static.html" />
or
<page name="Static List" url="http://fromsometutorial.appspot.com/
static.html" />
but when I tried to deploy the application, I then get:
Unable to update app: Error posting to URL: https://appengine.google.com/api/appversion/create?app_id=fromsometutorial&version=1& 400 Bad Request Error when loading application configuration: Unable to assign value 'http://fromsometutorial.appspot.com// static.html' to attribute 'url': Value 'http://fromsometutorial.appspot.com//static.html' for key url does not match expression '^(?!\^)/|\.|(\(.).*(?!\$).$' See the deployment console for more details Unable to update app: Error posting to URL: https://appengine.google.com/api/appversion/create?app_id=fromsometutorial&version=1& 400 Bad Request Error when loading application configuration: Unable to assign value 'http://fromsometutorial.appspot.com/ static.html' to attribute 'url': Value 'http://fromsometutorial.appspot.com/static.html' for key url does not match expression '^(?!\^)/|\.|(\(.).*(?!\$).$'
What should I be naming this file and where should I be storing it? It wasn't specified in the tutorial, but I assumed \WEB-INF \static.html
BTW, when I try to deploy the application, even if I just changed a character of one file, it seems that eclipse must process the entire project all over again. Is there a way to just deploy the modified files?
-Brian.