Re: socket module - recv() method

2007-04-30 Thread Gabriel Genellina
En Mon, 30 Apr 2007 11:22:23 -0300, <[EMAIL PROTECTED]> escribió: > All of the client apps on which this technique is employed are very > predictable in the sense that the client apps always know in advance > the value of endOfMessageText. > > Questions: > 1) is it theoretically possible that a c

socket module - recv() method

2007-04-30 Thread mirandacascade
Currently using the following technique in serveral client applications to send a request message and receive a response: import socket bufferSize = 50 connectionHandle = socket.socket(socket.AF_INET, socket.SOCK_STREAM) connectionHandle.connect(sa) connectionHandle.sendall(requestMessage) ful