Date:  05/27/2002 10:48:38 PM Msg ID:  000670
From:  Alexey Kouznetsov Thread:  000670
Subject:  Timeouts while upload data to the foxweb
Hello!
 
We have use foxweb 2.11 and got a trouble when tries to upload big text to the server. fo example, I have create script:

strtofile("Started " + tToC(Datetime()) + chr(13)+chr(10), "savefile.log", .t.)

aaa = formfield("textstring")

bbb = Len(aaa)

strtofile("Downloaded "+Str(bbb), "savefile.log", .T.)

strtofile(chr(13)+chr(10) + "Finished" + tToC(Datetime()) + chr(13)+chr(10), "savefile.log", .t.)

html_out= 'Content-type=text/html'+Chr(10)+Chr(10)

html_out= html_out + '<html>'

html_out= html_out + '<body>'

html_out= html_out + '<form method="post">'

html_out= html_out + '<textarea name="textstring" style="width: 385; height: 60" rows="2" cols="42" tabindex="1"></textarea>'

html_out= html_out + '<button type="submit" name="meddelande"></button>'

html_out= html_out + '</form>'

html_out= html_out + '</body>'

html_out= html_out + '</html>'

Then I enter some amount of the text to text are and send to the server. When I tries to text abot 250k size this stopt works. after timeout (90 secs) I got in the browser FoxWeb Message

The FoxWeb Service has returned the following message:
FoxWeb Timed Out--
 
and in FoxWeb\fwstart.log
------------------------
05/27/2002 18:17:18 Killed Channel 1: /savefile.fwx
05/27/2002 18:17:19 Restarting Channel 1
------------------------
 

no any strings were added to the savefile.log file, so no any part of the our program was executed... after data was sent from the browser to the server and between timeout foxweb takes 100% cpu usage.

with best regards,

/Alexey