Re: [twsocket] Newbie here

2005-03-28 Thread Francois PIETTE
> Each client thread Frequently using threads result from a misconception about using TCP/IP, specially with asynchronous component such as ICS. You don't need multithreading to support a large number of concurrent users ! You _may_ need multithreading for your dataprocessing if it is blocking (a

Re: [twsocket] Newbie here

2005-03-28 Thread Wilfried Mestdagh
Hello Andy, First of all, you dont need threads if you wants to have multiple connections. All go in main thread also. Could be that you need a thread or many, but certainly not for this reason. If the encryption of the data is a lenghty operation then it can maybe in your database class. This cl

Re: [twsocket] Newbie here

2005-03-28 Thread Guillaume MAISON
> Hi > > I'm looking to build a server application that will receive data from > multiple clients. > > Each client thread will send it's data encypted and compressed, the server > will process this and the post the information to a Firebird Database; > > I've been playing around with the ThrdSrv