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" Sent: Wednesday, April 20, 2005 5:45 PM Subject: Re: Re[4]: [twsocket] Multithreaded http... > Before you start your request (before the

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 wil

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 sma

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; THTT

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; THTTPCli(Sender

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 su

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 Obj

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

2005-04-20 Thread Wilfried Mestdagh
Hello Ann, > AStream.Seek(0, sofromBeginning); <--- Access Violation... Probably the stream is invalid or not assigned. Try this: if Assigned(AStream) then AStream.Seek(0, soFromBeginning); This does a check if the pointer contain nill or a value. --- Rgds, Wilfried http://www.mestdagh.biz

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" > Sent: Friday, April 15, 2005 10:55 PM > Subject: Re: Re[2]: [twsocket] Is there a > waytosetupa valuefor > maximaldownloadspeed? (wrong lin

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

2005-04-20 Thread Ann
- Original Message - From: "Arno Garrels" <[EMAIL PROTECTED]> To: "ICS support mailing" Sent: Monday, April 18, 2005 7:52 AM Subject: Re: Re[4]: [twsocket] Multithreaded http... >Ann wrote: > But how do i convert it to StringList ? >OT, but try AStream.Seek(0, sofromBeginning); <---

Re: [twsocket] HttpCli and the 404 status code

2005-04-20 Thread Francois PIETTE
> > 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 ! -- [EMAIL PROTECTED] http://www.overbyte.be -- To unsubscribe or change your

[twsocket] VOIP

2005-04-20 Thread Arno Garrels
Hello, Voice Over IP is really working great, I didn't believe it until I tested it. I've now moved to a new provider, attached a VOIP-WLAN-Ethernet router (SIP) and the quality is great even on slow 2048/196 ADSL and I even get faxes thru. I'm sure VOIP will be a winner. I found just one Delph

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, prob