> I have a SocketServer because it's the way to make a listening > UDP server isn't it ?
No!! TSocketServer is designed for TCP, not UDP, it listens on a port for a new connection then transfers that connection to a new socket for each client. UDP is connectionless and only supports one client at a time, so there is no need for a new socket for each client, you just reply using the listening TWSocket. This probably explains all your problems, TSocketServer is still using the listening socket, but you trying to reply on a different socket. You need to removed TSocketServer from the project, replace it with TWSocket and sanity should prevail. Angus -- To unsubscribe or change your settings for TWSocket mailing list please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket Visit our website at http://www.overbyte.be
