Re: [Twisted-Python] twisted version of openid

2009-12-29 Thread Phil Christensen
On Dec 29, 2009, at 1:31 PM, Kevin Horn wrote: On Tue, Dec 29, 2009 at 10:12 AM, Raj kumar wrote: Hi, Currently I'm having a server running under twisted. I'm planning to implement openid in my application. Is there any twisted version of openid api? I need some reference to go through ope

Re: [Twisted-Python] order of remote requests

2009-12-29 Thread Andrew Bennetts
Wolfgang Rohdewald wrote: [...] > I should have given more details, sorry. > > I am writing both the server and the client with twisted pb. > The server (a game server) sends messages to four player clients. > > Say the game server sends messages A and B to a player client. > > Is it granted th

[Twisted-Python] twisted mail client code review

2009-12-29 Thread César García
Hello guys, this are my first steps into twister and this is my first app with twister, using examples from the twisted documentation and reading it a lot ( interfaces are still not for me ), I've come to this code: http://pastebin.com/m2d6c35df My goal for now is to create my own client and be

Re: [Twisted-Python] order of remote requests

2009-12-29 Thread Wolfgang Rohdewald
On Tuesday 29 December 2009, David Ripton wrote: > TCP guarantees in-order message delivery. If you send A before B > over the same TCP connection, and A and B reach the client, then > the client will receive A before B. Of course - now I wonder what made me think otherwise. Thank you for your

Re: [Twisted-Python] twisted version of openid

2009-12-29 Thread Kevin Horn
On Tue, Dec 29, 2009 at 10:12 AM, Raj kumar wrote: > Hi, > Currently I'm having a server running under twisted. I'm planning to > implement openid in my application. Is there any twisted version of openid > api? I need some reference to go through openid examples. > > Thanks in advance. > > Raj. >

[Twisted-Python] twisted version of openid

2009-12-29 Thread Raj kumar
Hi, Currently I'm having a server running under twisted. I'm planning to implement openid in my application. Is there any twisted version of openid api? I need some reference to go through openid examples. Thanks in advance. Raj. The INTERNET now has a personality. YOURS! See your Yaho

Re: [Twisted-Python] order of remote requests

2009-12-29 Thread David Ripton
On 2009.12.29 12:53:07 +0100, Wolfgang Rohdewald wrote: > On Tuesday 29 December 2009, Andrew Bennetts wrote: > > Wolfgang Rohdewald wrote: > > > when I send two remote calls A and B over the network, in that > > > order, using the twisted perspective broker callRemote method, > > > is it granted t

Re: [Twisted-Python] order of remote requests

2009-12-29 Thread Wolfgang Rohdewald
On Tuesday 29 December 2009, Andrew Bennetts wrote: > Wolfgang Rohdewald wrote: > > when I send two remote calls A and B over the network, in that > > order, using the twisted perspective broker callRemote method, > > is it granted that A is processed first on the other side even > > if B arrives

Re: [Twisted-Python] order of remote requests

2009-12-29 Thread Andrew Bennetts
Wolfgang Rohdewald wrote: > Hi, > > when I send two remote calls A and B over the network, in that > order, using the twisted perspective broker callRemote method, > is it granted that A is processed first on the other side even > if B arrives first? Or should I only send B after I got an > answe

[Twisted-Python] order of remote requests

2009-12-29 Thread Wolfgang Rohdewald
Hi, when I send two remote calls A and B over the network, in that order, using the twisted perspective broker callRemote method, is it granted that A is processed first on the other side even if B arrives first? Or should I only send B after I got an answer to A? -- Wolfgang _