【问题标题】:Getting unhandled error and connection get lost when a client tries to communicate with chat server in twisted当客户端尝试以扭曲的方式与聊天服务器通信时,出现未处理的错误和连接丢失
【发布时间】:2013-06-29 16:16:33
【问题描述】:
from twisted.internet.protocol import Protocol,Factory
from twisted.internet import reactor

class ChatServer(Protocol):
def connectionMade(self):
    print "A Client Has Connected"
    self.factory.clients.append(self)
    print"clients are ",self.factory.clients
    self.transport.write('Hello,Welcome to the telnet chat to sign in type aim:YOUR NAME HERE to send a messsage type msg:YOURMESSAGE '+'\n')

def connectionLost(self,reason):
    self.factory.clients.remove(self)
    self.transport.write('Somebody was disconnected from the server')

def dataReceived(self,data):
    #print "data is",data
    a = data.split(':')
    if len(a) > 1:
        command = a[0]
    content = a[1]

    msg=""
    if command =="iam":
    self.name + "has joined"

    elif command == "msg":
    ma=sg = self.name + ":" +content

    print msg
    for c in self.factory.clients:
        c.message(msg)
def message(self,message):
    self.transport.write(message + '\n')

factory = Factory()
factory.protocol = ChatServer
factory.clients = []
reactor.listenTCP(80,factory)
print "Iphone Chat server started"
reactor.run()

上述代码运行成功...但是当我将客户端(通过键入 telnet localhost 80)连接到此聊天服务器并尝试写入消息时,连接丢失并出现以下错误:

Iphone Chat server started
A Client Has Connected
clients are [<__main__.ChatServer instance at 0x024AC0A8>]
Unhandled Error
Traceback (most recent call last):
File "C:\Python27\lib\site-packages\twisted\python\log.py", line 84, in callWithLogger
return callWithContext({"system": lp}, func, *args, **kw)
File "C:\Python27\lib\site-packages\twisted\python\log.py", line 69, in callWithContext
return context.call({ILogContext: newCtx}, func, *args, **kw)
File "C:\Python27\lib\site-packages\twisted\python\context.py", line 118, in callWithContext
return self.currentContext().callWithContext(ctx, func, *args, **kw)
File "C:\Python27\lib\site-packages\twisted\python\context.py", line 81, in callWithContext
return func(*args,**kw)
--- ---
File "C:\Python27\lib\site-packages\twisted\internet\selectreactor.py", line 150, in _doReadOrWrite
why = getattr(selectable, method)()
File "C:\Python27\lib\site-packages\twisted\internet\tcp.py", line 199, in doRead
rval = self.protocol.dataReceived(data)
File "D:\chatserverultimate.py", line 21, in dataReceived
content = a[1]
exceptions.IndexError: list index out of range

我哪里出错了?

【问题讨论】:

    标签: python twisted twisted.internet


    【解决方案1】:

    您错误地缩进了content = a[1] 行。您需要更多空间! :)

    【讨论】:

      猜你喜欢
      • 2013-06-26
      • 2023-03-23
      • 1970-01-01
      • 2016-08-03
      • 2012-09-27
      • 1970-01-01
      • 2022-01-20
      • 2015-02-21
      • 1970-01-01
      相关资源
      最近更新 更多