Re: [twsocket] Bug report for HTTPProt.pas Line 2644

2006-04-10 Thread Francois PIETTE
l 10, 2006 9:54 AM Subject: [twsocket] Bug report for HTTPProt.pas Line 2644 > Hello, > > It should be > > else if Field = 'transfer-encoding' then >FTransferEncoding := LowerCase(Data) > > Not, > > else if Field = 'transfer-encoding' then

Re: [twsocket] Bug report for HTTPProt.pas Line 2644

2006-04-10 Thread Fastream Technologies
y, April 10, 2006 11:43 AM Subject: Re: [twsocket] Bug report for HTTPProt.pas Line 2644 > Hello Fastream, > > Hum... is this really a bug or is it Abyss server that is not RFC > compliant with a small "c" ? > > FT> It should be > > FT> else if Fi

Re: [twsocket] Bug report for HTTPProt.pas Line 2644

2006-04-10 Thread Primož Gabrijelčič
An usual practice in the RFC world is to be very strict when sending data and very forgiving when receiving. I always code such tests as 'if SameText(..., ...)'. I would support this "fix", too. Primoz > Hum... is this really a bug or is it Abyss server that is not > RFC compliant with a small

Re: [twsocket] Bug report for HTTPProt.pas Line 2644

2006-04-10 Thread Dod
Hello Fastream, Hum... is this really a bug or is it Abyss server that is not RFC compliant with a small "c" ? FT> It should be FT> else if Field = 'transfer-encoding' then FT> FTransferEncoding := LowerCase(Data) FT> Not, FT> else if Field = 'transfer-encoding' then FT>

[twsocket] Bug report for HTTPProt.pas Line 2644

2006-04-10 Thread Fastream Technologies
Hello, It should be else if Field = 'transfer-encoding' then FTransferEncoding := LowerCase(Data) Not, else if Field = 'transfer-encoding' then FTransferEncoding := Data as for example Abyss web server returns "Chunked" instead of "chunked". Best Regards, SZ