[twsocket] Connection not closed in WebServer with IE

2005-05-19 Thread Bruno Sonnino
I am using a program based on the WebServer demo, where I generate my pages. When using IE as the client (this doesn't happen with FireFox), the connection is not closed after the page is sent, and the progressbar doesn't close in IE. Did anybody see something similar? Is there any way to avoid th

Re: [twsocket] Connection not closed in WebServer with IE

2005-05-19 Thread Bruno Sonnino
ngth". > > Regards, > > SZ > > - Original Message - > From: "Bruno Sonnino" <[EMAIL PROTECTED]> > To: > Sent: Thursday, May 19, 2005 5:30 PM > Subject: [twsocket] Connection not closed in WebServer with IE > > > > I am u

Re: [twsocket] Connection not closed in WebServer with IE

2005-05-19 Thread Bruno Sonnino
a look at AnswerString in HTTPSrv, > you > > have: > > But you are not using AnswerString. Are you ? > > -- > [EMAIL PROTECTED] > http://www.overbyte.be > > - Original Message - > From: "Bruno Sonnino" <[EMAIL PROTECTED]> > To: &

Re: [twsocket] Connection not closed in WebServer with IE

2005-05-19 Thread Bruno Sonnino
_Time as an example of AnswerString > use. > Put your code into that sample program. > -- > [EMAIL PROTECTED] > http://www.overbyte.be > > > - Original Message - > From: "Bruno Sonnino" <[EMAIL PROTECTED]> > To: > Sent: Thursday, May 19, 2

RE: [twsocket] Connection not closed in WebServer with IE

2005-05-21 Thread Bruno Sonnino
nder : TObject); begin TMyHttpConnection(Sender).Close; end; Bruno -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bruno Sonnino Sent: Thursday, May 19, 2005 3:55 PM To: twsocket@elists.org Subject: Re: [twsocket] Connection not closed in WebServer with IE

Re: [twsocket] Connection not closed in WebServer with IE

2005-05-21 Thread Bruno Sonnino
-- > [EMAIL PROTECTED] > http://www.overbyte.be > > > - Original Message - > From: "Bruno Sonnino" <[EMAIL PROTECTED]> > To: "'ICS support mailing'" > Sent: Saturday, May 21, 2005 11:18 AM > Subject: RE: [twsocket] Connection not closed

Re: Re[2]: [twsocket] Connection not closed in WebServer with IE

2005-05-21 Thread Bruno Sonnino
No, I don't have any exceptions - the program runs in the debugger with no errors. The strangest thing is that in Firefox, the connection closes fine all times, but in IE, it doesn't - that happens only for virtual docs. When you request a page, the connection closes ok on both browsers. Bruno On

Re: [twsocket] Connection not closed in WebServer with IE

2005-05-21 Thread Bruno Sonnino
François: Maybe it's the firewall, I'm using Windows firewall. I'd like to try your version, if you could send it to me, I'd be glad, thanks About the latest version, I'm using it - I've downloaded it yesterday from your website, do the display from the server I've sent in last message show som

Re: [twsocket] Connection not closed in WebServer with IE

2005-05-22 Thread Bruno Sonnino
> -- > Contribute to the SSL Effort. Visit http://www.overbyte.be/eng/ssl.html > -- > [EMAIL PROTECTED] > http://www.overbyte.be > > > > - Original Message - > From: "Bruno Sonnino" <[EMAIL PROTECTED]> > To: > Sent: Saturday, May 21, 2

Re: [twsocket] Connection not closed in WebServer with IE

2005-05-22 Thread Bruno Sonnino
that you have a lot of programs running. Stop > all > programs and services that are not strictly necessary to make Windows > work. > > -- > [EMAIL PROTECTED] > http://www.overbyte.be > > > - Original Message - > From: "Bruno Sonnino" <[EMAIL P

Re: Re[2]: [twsocket] Connection not closed in WebServer with IE

2005-05-22 Thread Bruno Sonnino
, a lots of virus scanners can give TCP problems. > > --- > Rgds, Wilfried > http://www.mestdagh.biz > > Sunday, May 22, 2005, 17:23, Bruno Sonnino wrote: > > > My system has all updates, but this happens also on other machines (I > can > > put the server in m

Re: [twsocket] Connection not closed in WebServer with IE

2005-05-22 Thread Bruno Sonnino
François: > Virtual pages and document pages are the same. Virtual pages use a > TMemoryStream with your data with document page use a TFileStream. Yes, I know, but the behavior is very consistent to be just coincidence. I've tried to follow ICS' source code to see any differences, but there was

Re: Re[2]: [twsocket] Connection not closed in WebServer with IE

2005-05-22 Thread Bruno Sonnino
, I'll be pleased to know. I'd like to thank everybody who helped me to track this thing. Bruno On 22/5/2005 14:38:47, Bruno Sonnino ([EMAIL PROTECTED]) wrote: > I begin to think that this is the problem - I was thinking two options: > something with the Brazilian Portug

Re: Re[2]: [twsocket] Connection not closed in WebServer with IE

2005-05-22 Thread Bruno Sonnino
se Microsoft > AntiSpy to detect those beast that are not detected by anti-virus. > > -- > [EMAIL PROTECTED] > http://www.overbyte.be > > > - Original Message - > From: "Bruno Sonnino" <[EMAIL PROTECTED]> > To: > Sent: Sunday, May 22, 20

Re: Re[4]: [twsocket] Connection not closed in WebServer with IE

2005-05-22 Thread Bruno Sonnino
gt; virtual page of 5000 lines, and when I run the server on a slow machine > (PII300) IE timed out a few times. Maybe the documents ar all large and > take a lot of time to build them ?? I did not check the code with the > tests. I dont know if that could has something to do with it. >

Re: Re[2]: [twsocket] Connection not closed in WebServer with IE

2005-05-22 Thread Bruno Sonnino
> In THttpConnection.AnswerStream, add the following block just after the > lines with Content-Length: > > if FKeepAlive then > PutStringInSendBuffer('Connection: Keep-Alive' + #13#10) > else > PutStringInSendBuffer('Connection: Close' + #13#10); > > Tell me if it works without adding the header

Re: Re[2]: [twsocket] Connection not closed in WebServer with IE

2005-05-22 Thread Bruno Sonnino
Taking a look at SendDocument, I saw this: { *DAVID* Revised this if/then/else } if FVersion = 'HTTP/1.0' then begin if CompareText(FRequestConnection, 'keep-alive') <> 0 then Header := Header + 'Connection: Close' + #13#10 else Header := Header + 'C

Re: Re[6]: [twsocket] Connection not closed in WebServer with IE

2005-05-23 Thread Bruno Sonnino
Yes, you're right, It's not respecting the connection Bruno On 23/5/2005 04:01:26, Wilfried Mestdagh ([EMAIL PROTECTED]) wrote: > Hello Bruno, > > > But there is also one other thing, and this I could not track, maybe > it's > > some setting in the server: the connection remains open after you do

Re: Re[2]: [twsocket] Connection not closed in WebServer with IE

2005-05-23 Thread Bruno Sonnino
Author of MidWare (Multi-tier framework, freeware) > http://www.overbyte.be > > > > - Original Message - > From: "Bruno Sonnino" <[EMAIL PROTECTED]> > To: > Sent: Sunday, May 22, 2005 10:39 PM > Subject: Re: Re[2]: [twsocket] Connection not c

Re: Re[2]: [twsocket] Connection not closed in WebServer with IE

2005-05-23 Thread Bruno Sonnino
pile, FKeepAlive isn't defined. > > You defenitely lack the latest release. > -- > [EMAIL PROTECTED] > http://www.overbyte.be > > > - Original Message - > From: "Bruno Sonnino" <[EMAIL PROTECTED]> > To: > Sent: Sunday, May 22, 2

Re: Re[6]: [twsocket] Connection not closed in WebServer with IE

2005-05-23 Thread Bruno Sonnino
I didn't see how I can close the connection. I always get keep-alive in the request, so the response is also keep alive. Bruno On 23/5/2005 03:55:01, Wilfried Mestdagh ([EMAIL PROTECTED]) wrote: > Hello Bruno, > > > Try this - go to Internet Options, Advanced, and uncheck Use HTTP 1.1. > With > >

Re: Re[2]: [twsocket] Connection not closed in WebServer with IE

2005-05-23 Thread Bruno Sonnino
Ok, I will wait and download it again when it's available. Thanks Bruno On 23/5/2005 06:19:51, Francois Piette ([EMAIL PROTECTED]) wrote: > > Can you point me to the right direction? I went to your site today, went > to > > ICS, and redownloaded latest version. HTTPServ is dated 3/13/2005, and >

Re: Re[2]: [twsocket] Connection not closed in WebServer with IE

2005-05-23 Thread Bruno Sonnino
> [EMAIL PROTECTED] > http://www.overbyte.be > > > ----- Original Message - > From: "Bruno Sonnino" <[EMAIL PROTECTED]> > To: > Sent: Monday, May 23, 2005 1:55 PM > Subject: Re: Re[2]: [twsocket] Connection not closed in WebServer with IE

Re: Re[2]: [twsocket] Connection not closed in WebServer with IE

2005-05-23 Thread Bruno Sonnino
able. > > Now available. It contains the fix I mentionned earlier. > > -- > [EMAIL PROTECTED] > http://www.overbyte.be > > > ----- Original Message - > From: "Bruno Sonnino" <[EMAIL PROTECTED]> > To: > Sent: Monday, May 23, 2005 1:55 PM > Subj

Re: [twsocket] Downloading a webpage, including its pictures. How??

2005-10-28 Thread Bruno Sonnino
Chris: I couldn't reproduce it here - I've changed my settings, closed the settings dialog with OK and rebooted, the settings were there. Isn't that what you've done? Bruno On 28/10/2005 12:26:03, Public ([EMAIL PROTECTED]) wrote: > Hello, > > I would like to download a webpage, including all it

Re: [twsocket] Downloading a webpage, including its pictures. How??

2005-10-28 Thread Bruno Sonnino
Sorry, wrong reply, my fault, please disregard it. Bruno On 28/10/2005 12:36:39, Bruno Sonnino ([EMAIL PROTECTED]) wrote: > Chris: > > I couldn't reproduce it here - I've changed my settings, closed the > settings > dialog with OK and rebooted, the settings were there.