Aleksey, > 1)I've posted some code in my message, what is there wrong there ?
That snippet just assigns some properties so doesn't tell me anything. > 2) I used threads because i even didn't know that TFTPCli can handle > concurrent connections. Sure i would try this method, but can you > give me some advices how to use this feature ? Or even maybe some > samples ? You do not need multiple threads for the socket I/O, multiple threads should be used only for blocking, lengthy tasks such as an SQL query or something. To get an first idea of the asychronous (non-blocking) nature of ICS read this first: http://wiki.overbyte.be/wiki/index.php/Asynchronous_Paradigm You may also have a look at the MailSndAsync demo of V5, it's SMTP but the same principle applies to the FTP component. If you have further questions, please post them here. --- Arno Garrels [TeamICS] http://www.overbyte.be/eng/overbyte/teamics.html > > With Respect, > Aleksey > >> Message: 6 >> Date: Mon, 11 Dec 2006 15:15:09 +0100 >> From: "Arno Garrels" <[EMAIL PROTECTED]> >> Subject: Re: [twsocket] I found some bugs in your ICS (or mine maybe) >> To: "ICS support mailing" <[email protected]> >> Message-ID: <[EMAIL PROTECTED]> >> Content-Type: text/plain; charset="iso-8859-1" >> >> Hello Aleksey, >>>> system call (#10004)" I'm totally sure that this is bug of >>>> TFTPClient when you trying to use threads, >> >> I'm totally sure that this is because you do not use the >> component correctly. >> Tell us why you want to use threads, ICS can handle hundreds >> of concurrent connections easily, each transferring data at >> the same time, since it uses non-blocking sockets. >> >> --- >> Arno Garrels [TeamICS] >> http://www.overbyte.be/eng/overbyte/teamics.html > > --- > Aleksey Potjomkin > > _________________________________________________________________ > Express yourself instantly with MSN Messenger! Download today it's > FREE! http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/ -- To unsubscribe or change your settings for TWSocket mailing list please goto http://www.elists.org/mailman/listinfo/twsocket Visit our website at http://www.overbyte.be
