Opened 12 years ago

Last modified 12 years ago

#18865 closed Bug

Django connection getting lost in Interner Explorer — at Initial Version

Reported by: umits2009@… Owned by: nobody
Component: Uncategorized Version: 1.4
Severity: Normal Keywords: Django, Internet Explorer
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Hi Team,

I ran into an issue while running my application.The connection between django and server is getting lost while I am clicking on a hyperlink.Because of this,session variables are getting out of scope.I am using Django 1.4.Python 2.7.
This issue is coming only for IE.I tried in IE8 and IE9.
PFB the logs for the same:
Traceback (most recent call last):

File "C:\Python27\lib\wsgiref\handlers.py", line 86, in run

self.finish_response()

File "C:\Python27\lib\wsgiref\handlers.py", line 127, in finish_response

self.write(data)

File "C:\Python27\lib\wsgiref\handlers.py", line 210, in write

self.send_headers()

File "C:\Python27\lib\wsgiref\handlers.py", line 266, in send_headers

self.send_preamble()

File "C:\Python27\lib\wsgiref\handlers.py", line 189, in send_preamble

self._write('HTTP/%s %s\r\n' % (self.http_version,self.status))

File "C:\Python27\lib\wsgiref\handlers.py", line 387, in _write

self.stdout.write(data)

File "C:\Python27\lib\socket.py", line 322, in write

self.flush()

File "C:\Python27\lib\socket.py", line 301, in flush

self._sock.sendall(view[write_offset:write_offset+buffer_size])

error: [Errno 10054] An existing connection was forcibly closed by the remote ho
st


Exception happened during processing of request from ('127.0.0.1', 60681)
Traceback (most recent call last):

File "C:\Python27\lib\SocketServer.py", line 582, in process_request_thread

self.finish_request(request, client_address)

File "C:\Python27\lib\SocketServer.py", line 323, in finish_request

self.RequestHandlerClass(request, client_address, self)

File "C:\Python27\lib\site-packages\django\core\servers\basehttp.py", line 139

, in init

super(WSGIRequestHandler, self).init(*args, kwargs)

File "C:\Python27\lib\SocketServer.py", line 641, in init

self.finish()

File "C:\Python27\lib\SocketServer.py", line 694, in finish

self.wfile.flush()

File "C:\Python27\lib\socket.py", line 301, in flush

self._sock.sendall(view[write_offset:write_offset+buffer_size])

error: [Errno 10054] An existing connection was forcibly closed by the remote ho
st

Thanks,
Umit

Change History (0)

Note: See TracTickets for help on using tickets.
Back to Top