Re: [twsocket] HttpCli and the 404 status code

2005-04-20 Thread Maurizio Lotauro
Scrive Francois Piette [EMAIL PROTECTED]: Probably a solution could be to expose the FRequestDoneError field. The status code should be meaningful only if FRequestDoneError=0. You mean reporting 10060 (and others) to the error field ? If you mean FRequestDoneError yes. Yes, probably

Re: Re[2]: [twsocket] Is there a waytosetupa valuefor maximaldownloadspeed? (wrong link)

2005-04-20 Thread ahmad saeed ghasemi
thanks :) --- Dan [EMAIL PROTECTED] wrote: - Original Message - From: ahmad saeed ghasemi [EMAIL PROTECTED] To: ICS support mailing twsocket@elists.org Sent: Friday, April 15, 2005 10:55 PM Subject: Re: Re[2]: [twsocket] Is there a waytosetupa valuefor maximaldownloadspeed?

RE: [twsocket] VOIP

2005-04-20 Thread Norbert Saint Georges
Hi, I find that the implementation of SIP and H323 in ICS would be one +. The address of the compo interests me too :-) Norbert -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] De la part de Arno Garrels Envoyé : lundi 18 avril 2005 20:02 À : ICS support mailing

Re: Re[4]: [twsocket] Multithreaded http...

2005-04-20 Thread Ann
I don't really know what to do with TMemoryStream... i need TStringList ... the site isn't that big, so it should be any problem... But i still don't know how do i convert the recived stream to TStringList... ;-( - Original Message - From: Francois Piette [EMAIL PROTECTED] To: ICS

Re: Re[4]: [twsocket] Multithreaded http...

2005-04-20 Thread Dan
Before you start your request (before the get) you need to assign the receive stream: HTTPCli.RcvdStream:=TMemoryStream.Create; Then, in the OnRequestDone, as has been explained, you have the rcvdstream to read from: var StringList: TStrings; StringList:=TStringList.Create;

Re: [twsocket] Multithreaded http...

2005-04-20 Thread Marcello Vezzelli
Dan wrote: Before you start your request (before the get) you need to assign the receive stream: HTTPCli.RcvdStream:=TMemoryStream.Create; Then, in the OnRequestDone, as has been explained, you have the rcvdstream to read from: var StringList: TStrings; StringList:=TStringList.Create;

Re: Re[4]: [twsocket] Multithreaded http...

2005-04-20 Thread Arno Garrels
Ann wrote: I don't really know what to do with TMemoryStream... i need TStringList ... the site isn't that big, so it should be any problem... But i still don't know how do i convert the recived stream to TStringList... ;-( I'm sorry, but I strongly suggest that you learn Delphi by a far

Re: [twsocket] HttpCli and the 404 status code

2005-04-20 Thread Maurizio Lotauro
Scrive Francois PIETTE [EMAIL PROTECTED]: Probably a solution could be to expose the FRequestDoneError field. The status code should be meaningful only if FRequestDoneError=0. I verifyed and actually the OnRequestDone error reflect the winsock error ! Who use sync operation will get an

Re: Re[4]: [twsocket] Multithreaded http...

2005-04-20 Thread Ann
So this ruin everything... semi-multithreading won't make its role... - Original Message - From: Dan [EMAIL PROTECTED] To: ICS support mailing twsocket@elists.org Sent: Wednesday, April 20, 2005 5:45 PM Subject: Re: Re[4]: [twsocket] Multithreaded http... Before you start your request