The problem is here (have you the "app.yaml" file?):
def CreateServer(root_path,
login_url,
port,
template_dir,
serve_address='',
require_indexes=False,
python_path_list=sys.path):
"""Creates an new HTTPServer for an application.
Args:
root_path: String containing the path to the root directory of the
application where the app.yaml file is.
login_url: Relative URL which should be used for handling user
login/logout.
port: Port to start the application server on.
template_dir: Path to the directory in which the debug console
templates
are stored.
serve_address: Address on which the server should serve.
require_indexes: True if index.yaml is read-only gospel; default
False.
python_path_list: Used for dependency injection.
Returns:
Instance of BaseHTTPServer.HTTPServer that's ready to start
accepting.
"""
On Sep 28, 12:04 pm, dr hil <[EMAIL PROTECTED]> wrote:
> I installed python 2.5 on my machine, working fine.
> I am working on windows XP sp3,
> I installed the google app engine as explained in the tutorial and
> when I tried to run the script I have got:
>
> C:\Program Files\Google\google_appengine>dev_appserver.py helloworld/
> Traceback (most recent call last):
> File "C:\Program Files\Google\google_appengine\dev_appserver.py",
> line 55, in
> <module>
> execfile(script_path, globals())
> File "C:\Program Files\Google\google_appengine\google\appengine\tools
> \dev_apps
> erver_main.py", line 358, in <module>
> sys.exit(main(sys.argv))
> File "C:\Program Files\Google\google_appengine\google\appengine\tools
> \dev_apps
> erver_main.py", line 306, in main
> config, matcher = dev_appserver.LoadAppConfig(root_path, {})
> File "C:\Program Files\Google\google_appengine\google\appengine\tools
> \dev_apps
> erver.py", line 2636, in LoadAppConfig
> raise AppConfigNotFoundError
> google.appengine.tools.dev_appserver.AppConfigNotFoundError
>
> the port localhost:8080 is not working.
> what could be the problem?
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---