Here is the server code:-from twisted.internet.protocol import
Protocol, Factoryfrom twisted.internet import reactorimport sys
class MyServer(Protocol): def connectionMade(self):
self.transport.write("Hello")
factory = Factory()factory.protocol = MyServer
reactor.listenTCP(
Hi,
--- On Wed, 5/13/09, Itamar Shtull-Trauring wrote:
>
> Have you read the client-side howto?
>
> http://twistedmatrix.com/projects/core/documentation/howto/clients.html
>
>
Have you read my email?
___
Twisted-Python mailing list
Tw
Hi,
--- On Wed, 5/13/09, Adam wrote:
> From: Adam
> Subject: Re: [Twisted-Python] can't get a simple client/server example to
> work!
> To: "Twisted general discussion"
> Date: Wednesday, May 13, 2009, 1:08 AM
> 2009/5/13 bbxx789_0...@yahoo.com
>