Re: [twsocket] Do You have the same problem with this url and HttpTst ?

2005-10-19 Thread Francois PIETTE
I get the same result as you. And I found why. And of course I fixed it. Here is the fix (in red bold): procedure THttpCli.SendRequest(const Method, Version: String); ... if (FTargetPort = '80') or (FTargetPort = '') then Headers.Add('Host: ' +

Re: [twsocket] Do You have the same problem with this url and HttpTst ?

2005-10-19 Thread Francois PIETTE
I just tested that URL with the HttpTst and it seems to work fine: Well, not here. The problem was that the host header line was malformed. The port is empty but the colon delimiter is there. Here is the fix (in red bold): procedure THttpCli.SendRequest(const Method, Version: String); ...

Re: [twsocket] Do You have the same problem with this url and HttpTst ?

2005-10-19 Thread Bruno Mannina
Hi Francois, Well, well, well it's Work fine now :) even my program !!! Thank's a lot Bruno - Original Message - From: Francois PIETTE To: ICS support mailing Sent: Wednesday, October 19, 2005 8:26 PM Subject: Re: [twsocket] Do You have the same problem with this url and