[Zope] WebDav FTP
Mayer, Steven
Steven.Mayer@t-systems.com
Fri, 22 Feb 2002 10:16:13 +0100
Hi,
I=B4ve got a problem with WebDav and FTP.
I start Zope with WebDav and/or FTP -> Zope crashes 2-3 times an =
hour....
I start Zope without WebDav and FTP-> Zope work stable.
Is there anybody with the same experience and can help me?
---[zope log]----
------
2002-02-19T13:14:17 ERROR(200) ZServer uncaptured python exception, =
closing channel <PCGIChannel at 8e225ec> (socket.error:(32, 'Broken =
pipe') [/usr/local/lib/python2.1/asynchat.py|initiate_send|213] =
[/usr/local/lib/python2.1/asyncore.py|send|330])
------
----------------------
---[asynchat.py]-------
204 def initiate_send (self):
205 obs =3D self.ac_out_buffer_size
206 # try to refill the buffer
207 if (len (self.ac_out_buffer) < obs):
208 self.refill_buffer()
209=20
210 if self.ac_out_buffer and self.connected:
211 # try to send the buffer
212 try:
213 num_sent =3D self.send =
(self.ac_out_buffer[:obs])
214 if num_sent:
215 self.ac_out_buffer =3D =
self.ac_out_buffer[num_sent:]
216=20
217 except socket.error, why:
218 self.handle_error()
219 return
----------------------
---[asyncore.py]---
322 def send (self, data):
323 try:
324 result =3D self.socket.send (data)
325 return result
326 except socket.error, why:
327 if why[0] =3D=3D EWOULDBLOCK:
328 return 0
329 else:
330 raise socket.error, why
331 return 0
----------------------
Regards=20
Steven