My apologies, I'm not familiar with Python at all. I've been using version 7b of the aim client and it was working great. I am using jabberd 1.4.4
Now, after its running as soon as a client tries to connect I get the below set of errors. Any advice will be greatly appreciated! Traceback (most recent call last): File "/usr/local/lib/python2.4/site-packages/twisted/python/ log.py", line 56, in callWithLogger return callWithContext({"system": lp}, func, *args, **kw) File "/usr/local/lib/python2.4/site-packages/twisted/python/ log.py", line 41, in callWithContext return context.call({ILogContext: newCtx}, func, *args, **kw) File "/usr/local/lib/python2.4/site-packages/twisted/python/ context.py", line 52, in callWithContext return self.currentContext().callWithContext(ctx, func, *args, **kw) File "/usr/local/lib/python2.4/site-packages/twisted/python/ context.py", line 31, in callWithContext return func(*args,**kw) --- <exception caught here> --- File "/usr/local/lib/python2.4/site-packages/twisted/internet/ selectreactor.py", line 139, in _doReadOrWrite why = getattr(selectable, method)() File "/usr/local/lib/python2.4/site-packages/twisted/internet/ tcp.py", line 351, in doRead return self.protocol.dataReceived(data) File "/usr/local/jabberd/transports/pyaim-t-0.7b/src/tlib/ oscar.py", line 442, in dataReceived self.connectionLost("Connection rejected.") File "/usr/local/jabberd/transports/pyaim-t-0.7b/src/legacy/ aimt.py", line 381, in connectionLost self.aimcon.session.removeMe() exceptions.AttributeError: 'NoneType' object has no attribute 'removeMe' Traceback (most recent call last): File "main.py", line 466, in ? reactor.run() File "/usr/local/lib/python2.4/site-packages/twisted/internet/ posixbase.py", line 199, in run self.mainLoop() File "/usr/local/lib/python2.4/site-packages/twisted/internet/ posixbase.py", line 210, in mainLoop self.doIteration(t) File "/usr/local/lib/python2.4/site-packages/twisted/internet/ selectreactor.py", line 133, in doSelect _logrun(selectable, _drdw, selectable, method, dict) --- <exception caught here> --- File "/usr/local/lib/python2.4/site-packages/twisted/python/ log.py", line 56, in callWithLogger return callWithContext({"system": lp}, func, *args, **kw) File "/usr/local/lib/python2.4/site-packages/twisted/python/ log.py", line 41, in callWithContext return context.call({ILogContext: newCtx}, func, *args, **kw) File "/usr/local/lib/python2.4/site-packages/twisted/python/ context.py", line 52, in callWithContext return self.currentContext().callWithContext(ctx, func, *args, **kw) File "/usr/local/lib/python2.4/site-packages/twisted/python/ context.py", line 31, in callWithContext return func(*args,**kw) File "/usr/local/lib/python2.4/site-packages/twisted/internet/ selectreactor.py", line 149, in _doReadOrWrite self._disconnectSelectable(selectable, why, method=="doRead") File "/usr/local/lib/python2.4/site-packages/twisted/internet/ posixbase.py", line 237, in _disconnectSelectable selectable.connectionLost(failure.Failure(why)) File "/usr/local/lib/python2.4/site-packages/twisted/internet/ tcp.py", line 556, in connectionLost Connection.connectionLost(self, reason) File "/usr/local/lib/python2.4/site-packages/twisted/internet/ tcp.py", line 402, in connectionLost protocol.connectionLost(reason) File "/usr/local/jabberd/transports/pyaim-t-0.7b/src/legacy/ aimt.py", line 381, in connectionLost self.aimcon.session.removeMe() From [EMAIL PROTECTED] Thu Jan 5 12:07:20 2006 From: [EMAIL PROTECTED] (Daniel Henninger) Date: Thu Jan 5 12:07:26 2006 Subject: [py-transports] was working, then it stopped! In-Reply-To: <[EMAIL PROTECTED]> References: <[EMAIL PROTECTED]> Message-ID: <[EMAIL PROTECTED]> Is this a specific client or does this happen to multiple clients? That may be occuring if their password is not correct. Looks like I'm removing the session before I completely remove the aim connection pieces in that case. Daniel On Jan 4, 2006, at 10:42 PM, Peter Brown wrote: > My apologies, I'm not familiar with Python at all. > > I've been using version 7b of the aim client and it was working > great. I am using jabberd 1.4.4 > > Now, after its running as soon as a client tries to connect I get > the below set of errors. > > Any advice will be greatly appreciated! > > Traceback (most recent call last): > File "/usr/local/lib/python2.4/site-packages/twisted/python/ > log.py", line 56, in callWithLogger > return callWithContext({"system": lp}, func, *args, **kw) > File "/usr/local/lib/python2.4/site-packages/twisted/python/ > log.py", line 41, in callWithContext > return context.call({ILogContext: newCtx}, func, *args, **kw) > File "/usr/local/lib/python2.4/site-packages/twisted/python/ > context.py", line 52, in callWithContext > return self.currentContext().callWithContext(ctx, func, *args, > **kw) > File "/usr/local/lib/python2.4/site-packages/twisted/python/ > context.py", line 31, in callWithContext > return func(*args,**kw) > --- <exception caught here> --- > File "/usr/local/lib/python2.4/site-packages/twisted/internet/ > selectreactor.py", line 139, in _doReadOrWrite > why = getattr(selectable, method)() > File "/usr/local/lib/python2.4/site-packages/twisted/internet/ > tcp.py", line 351, in doRead > return self.protocol.dataReceived(data) > File "/usr/local/jabberd/transports/pyaim-t-0.7b/src/tlib/ > oscar.py", line 442, in dataReceived > self.connectionLost("Connection rejected.") > File "/usr/local/jabberd/transports/pyaim-t-0.7b/src/legacy/ > aimt.py", line 381, in connectionLost > self.aimcon.session.removeMe() > exceptions.AttributeError: 'NoneType' object has no attribute > 'removeMe' > Traceback (most recent call last): > File "main.py", line 466, in ? > reactor.run() > File "/usr/local/lib/python2.4/site-packages/twisted/internet/ > posixbase.py", line 199, in run > self.mainLoop() > File "/usr/local/lib/python2.4/site-packages/twisted/internet/ > posixbase.py", line 210, in mainLoop > self.doIteration(t) > File "/usr/local/lib/python2.4/site-packages/twisted/internet/ > selectreactor.py", line 133, in doSelect > _logrun(selectable, _drdw, selectable, method, dict) > --- <exception caught here> --- > File "/usr/local/lib/python2.4/site-packages/twisted/python/ > log.py", line 56, in callWithLogger > return callWithContext({"system": lp}, func, *args, **kw) > File "/usr/local/lib/python2.4/site-packages/twisted/python/ > log.py", line 41, in callWithContext > return context.call({ILogContext: newCtx}, func, *args, **kw) > File "/usr/local/lib/python2.4/site-packages/twisted/python/ > context.py", line 52, in callWithContext > return self.currentContext().callWithContext(ctx, func, *args, > **kw) > File "/usr/local/lib/python2.4/site-packages/twisted/python/ > context.py", line 31, in callWithContext > return func(*args,**kw) > File "/usr/local/lib/python2.4/site-packages/twisted/internet/ > selectreactor.py", line 149, in _doReadOrWrite > self._disconnectSelectable(selectable, why, method=="doRead") > File "/usr/local/lib/python2.4/site-packages/twisted/internet/ > posixbase.py", line 237, in _disconnectSelectable > selectable.connectionLost(failure.Failure(why)) > File "/usr/local/lib/python2.4/site-packages/twisted/internet/ > tcp.py", line 556, in connectionLost > Connection.connectionLost(self, reason) > File "/usr/local/lib/python2.4/site-packages/twisted/internet/ > tcp.py", line 402, in connectionLost > protocol.connectionLost(reason) > File "/usr/local/jabberd/transports/pyaim-t-0.7b/src/legacy/ > aimt.py", line 381, in connectionLost > self.aimcon.session.removeMe() > > _______________________________________________ > py-transports mailing list > py-transports@blathersource.org > http://www.modevia.com/cgi-bin/mailman/listinfo/py-transports > >