<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2900.2180" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>import SocketServer<BR>class
EchoRequestHandler(SocketServer.BaseRequestHandler):<BR> def
handle(self):<BR> print
'Connesso!'<BR> while
1:<BR> msg =
self.request.recv(1024)<BR>
if not
msg:<BR>
break<BR>
print
'Ricevuto:',msg<BR>
self.request.send(msg)<BR> print
'Disconnesso'<BR>server =
SocketServer.ThreadingTCPServer(('127.0.0.1',7777),EchoRequestHandler)<BR>server.handle_request()</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>Il vero problema lo incontro quando mi connetto:
tutto cio' che scrivo viene spedito un carattere alla volta e poi è
visto come una stringa e nn come un comando, in sostanza dovrei fare in
modo che il comando venga interpretato ed eseguito alla pressione del tasto
'enter' e non alla pressione di un qualunque tasto e poi, come faccio a far
eseguire il comando ricevuto ?</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV></BODY></HTML>