I have a zope page which goes off to an external method which can, sometimes, take a long time (minutes). Apparently IE will timeout. My user then does a reload which causes the external method to be re-executed, etc. Any suggestions as to what to do?
Dennis Allison wrote at 2003-10-2 13:37 -0700:
I have a zope page which goes off to an external method which can, sometimes, take a long time (minutes). Apparently IE will timeout. My user then does a reload which causes the external method to be re-executed, etc.
Any suggestions as to what to do?
You may use the "refresh" "meta" tag. Search for details... Dieter
Hi Dieter, Dieter Maurer wrote:
Dennis Allison wrote at 2003-10-2 13:37 -0700:
I have a zope page which goes off to an external method which can, sometimes, take a long time (minutes). Apparently IE will timeout. My user then does a reload which causes the external method to be re-executed, etc.
Any suggestions as to what to do?
You may use the "refresh" "meta" tag. Search for details...
I'm sure this will not help to avoid the timeout :-) Dennis, try to output something during your method execution via response.write() Regards Tino
Thanks Tino -- looks liike that will resolve the problem. On Sat, 4 Oct 2003, Tino Wildenhain wrote:
Hi Dieter,
Dieter Maurer wrote:
Dennis Allison wrote at 2003-10-2 13:37 -0700:
I have a zope page which goes off to an external method which can, sometimes, take a long time (minutes). Apparently IE will timeout. My user then does a reload which causes the external method to be re-executed, etc.
Any suggestions as to what to do?
You may use the "refresh" "meta" tag. Search for details...
I'm sure this will not help to avoid the timeout :-)
Dennis,
try to output something during your method execution via response.write()
Regards Tino
_______________________________________________ Zope maillist - Zope@zope.org http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce http://mail.zope.org/mailman/listinfo/zope-dev )
participants (3)
-
Dennis Allison -
Dieter Maurer -
Tino Wildenhain