Why does an HTML page request crash my local Google App Engine server?

Why does an HTML page request crash my local Google App Engine server?

This only happens if the second or third time I make a request in Internet Explorer 9, and this is not a problem with other browsers.

This is very annoying since I have to restart my server all the time.

Error:

Traceback (most recent call last): File "C:\Program Files\Python25\lib\SocketServer.py", line 222, in handle_request ---------------------------------------- Exception happened during processing of request from ('127.0.0.1', 54978) self.process_request(request, client_address) File "C:\Program Files\Python25\lib\SocketServer.py", line 241, in process_request self.finish_request(request, client_address) File "C:\Program Files\Python25\lib\SocketServer.py", line 254, in finish_request self.RequestHandlerClass(request, client_address, self) File "C:\google_appengine\google\appengine\tools\dev_appserver.py", line 3932, in __init__ BaseHTTPServer.BaseHTTPRequestHandler.__init__(self, *args, **kwargs) File "C:\Program Files\Python25\lib\SocketServer.py", line 521, in __init__ self.handle() File "C:\Program Files\Python25\lib\BaseHTTPServer.py", line 316, in handle self.handle_one_request() File "C:\Program Files\Python25\lib\BaseHTTPServer.py", line 310, in handle_one_request method() File "C:\google_appengine\google\appengine\tools\dev_appserver.py", line 3942, in do_GET self._HandleRequest() File "C:\google_appengine\google\appengine\tools\dev_appserver.py", line 4199, in _HandleRequest raise e error: (10053, 'Software caused connection abort') ---------------------------------------- 
+4
source share
2 answers

I am having the same problems. The only thing that helps is to run devappserver with the specified IP address of your computer, and not run it on localhost (by default).

like this:
google_appengine\dev_appserver.py --address=192.168.1.33 myapp

Please confirm if it works?

+2
source

All Articles