Newsgroups : Borland : borland.public.delphi.internet.winsock : 2005 Oct : strange TidTCPClient reply....
| Subject: | strange TidTCPClient reply.... |
| Posted by: | "SD" (nospa..@please.it) |
| Date: | Mon, 3 Oct 2005 11:27:35 |
Hi,
I use last Indy9 and the TidTCPServer.
When I reply on OnCommand event with:
var
myreply:string;
....
....
begin
....
....
myreply := 'r=1' + #13#10 + 'v=1.0.1';
....
....
ASender.Reply.NumericCode := 200;
ASender.Reply.Text.Text := myreply;
end;
often I receive on TidTCPClient the strings:
'200-r=1'
'200 v=1.0.1'
where I wait for '200 r=1' but I receive '200-r=1'...
why the '-' char ?
Thank you very much