Re: [twsocket] No response problem [THttpServer - TCustomLineWSocket]

2005-06-21 Thread Christophe
Ok, thanks so much. I made the changes and it works (though I didn't tested extensively yet). For reference, this is what I did: - use of Connection.PostedDataReceived in the PostedData-event - I don't use LineMode at all (no change if I do) - Changing the way I was answering to GET commands

RE: [twsocket] No response problem [THttpServer - TCustomLineWSocket]

2005-06-20 Thread Bjørnar Nielsen
When users clicks links or post forms in their browsers, sometimes they don't get any answer. By debugging the server I realized that in such a case the OnPostDocument event is never triggered. Are you sure the request you don't get an answer from is received on the server? When you run a

Re: [twsocket] No response problem [THttpServer - TCustomLineWSocket]

2005-06-20 Thread Francois Piette
] No response problem [THttpServer - TCustomLineWSocket] Hi, First of all, I'd like to apologize if my question is inapropriate, it is the first time I am using a mailing list (I usually use php based forums for development issues). I searched a lot about the following problem, but I still don't

Re: [twsocket] No response problem [THttpServer - TCustomLineWSocket]

2005-06-20 Thread Christophe
Bjørnar Nielsen wrote: When users clicks links or post forms in their browsers, sometimes they don't get any answer. By debugging the server I realized that in such a case the OnPostDocument event is never triggered. Are you sure the request you don't get an answer from is received on the

Re: [twsocket] No response problem [THttpServer - TCustomLineWSocket]

2005-06-20 Thread Christophe
THttpServer works). -- [EMAIL PROTECTED] http://www.overbyte.be - Original Message - From: Christophe [EMAIL PROTECTED] To: twsocket@elists.org Sent: Monday, June 20, 2005 4:01 AM Subject: [twsocket] No response problem [THttpServer - TCustomLineWSocket] Hi, First of all, I'd like

Re: [twsocket] No response problem [THttpServer - TCustomLineWSocket]

2005-06-20 Thread Francois Piette
Does it occurs with the sample WebServ delivered with ICS ? Well it seems it doesn't (at least I didn't experienced the problem yet), which is surprising because my program is quite identical to the demo (I mean, I implemented some functions but nothing that directly change the way

RE: [twsocket] No response problem [THttpServer - TCustomLineWSocket]

2005-06-20 Thread Bjørnar Nielsen
Yes, as I explained in my last mail, when a user makes a request (GET or POST or HEAD or whatever), the server get it, and start to analyze it but stops inside TCustomLineWSocket.TriggerDataAvailable. Ok, I missed that part, my previos message does not explain your problem. In

[twsocket] No response problem [THttpServer - TCustomLineWSocket]

2005-06-19 Thread Christophe
Hi, First of all, I'd like to apologize if my question is inapropriate, it is the first time I am using a mailing list (I usually use php based forums for development issues). I searched a lot about the following problem, but I still don't have a clue of what's happening: I have been