Re: [Twisted-Python] XMPP server implementations with twisted/words

2010-02-15 Thread Werner Thie
Hmm, thanks for the advice, I was leaning to the lean side of a server something like pjabberd seems to have taken as an approach, so to say a skeleton where one can hang the meat, ending up with the functionality I need and no more. So with t.w.xish I seem to have the bones and no blueprint fo

Re: [Twisted-Python] XMPP server implementations with twisted/words

2010-02-15 Thread Alvin Delagon
Hello, I used to write XMPP servers and clients using twisted (currently in production) using what's available in twisted.words.xish. The docs are scarce but you can start off reading the code and the api doc here: http://twistedmatrix.com/documents/8.2.0/api/twisted.words.xish.htmlspecially the d

Re: [Twisted-Python] XMPP server implementations with twisted/words

2010-02-15 Thread Christopher Armstrong
On Mon, Feb 15, 2010 at 6:47 PM, Werner Thie wrote: > Hi > > Although I'mm using twisted/nevow now for more than three years it was > only recently that I felt the need to look into the words section of > twisted. After googling 'python xmpp server' I found two projects aiming > at writing an xmpp

[Twisted-Python] XMPP server implementations with twisted/words

2010-02-15 Thread Werner Thie
Hi Although I'mm using twisted/nevow now for more than three years it was only recently that I felt the need to look into the words section of twisted. After googling 'python xmpp server' I found two projects aiming at writing an xmpp server in python, namely pjabberd (non twisted) and pretzel

Re: [Twisted-Python] Authenticating with md5 hashed passwords

2010-02-15 Thread exarkun
On 06:35 pm, r...@cttc.upc.edu wrote: >Jean-Paul, > >On Mon, 2010-02-15 at 16:45 +, exar...@twistedmatrix.com wrote: >> >checker, but as you have said this is going to be deprecated. >> >>This discussion has led me to realize that checkMD5Password probably >>shouldn't be deprecated. Instead th

Re: [Twisted-Python] Authenticating with md5 hashed passwords

2010-02-15 Thread Ramiro Alba Queipo
Jean-Paul, On Mon, 2010-02-15 at 16:45 +, exar...@twistedmatrix.com wrote: > >checker, but as you have said this is going to be deprecated. > > This discussion has led me to realize that checkMD5Password probably > shouldn't be deprecated. Instead the documentation should be fixed so > tha

[Twisted-Python] Need help for structured application development

2010-02-15 Thread Einar S . Idsø
Hi, I am planning to develop an application that will query a number of services at given intervals, and Twisted seems like a very nice platform to do so. However, because of little previous experience with Twisted, especially with building proper applications, using interfaces and using plugins,

Re: [Twisted-Python] Authenticating with md5 hashed passwords

2010-02-15 Thread exarkun
On 04:32 pm, r...@cttc.upc.edu wrote: >Jean-Paul: > >On Mon, 2010-02-15 at 13:25 +, exar...@twistedmatrix.com wrote: >> >>What do you mean when you say you're using plain text passwords? >> >>Authentication involves multiple parties handling the password in >> >>multiple ways, and the "plain te

Re: [Twisted-Python] Authenticating with md5 hashed passwords

2010-02-15 Thread Ramiro Alba Queipo
Jean-Paul: On Mon, 2010-02-15 at 13:25 +, exar...@twistedmatrix.com wrote: > >>What do you mean when you say you're using plain text passwords? > >>Authentication involves multiple parties handling the password in > >>multiple ways, and the "plain text"-ness of the password changes from > >>st

Re: [Twisted-Python] Authenticating with md5 hashed passwords

2010-02-15 Thread exarkun
On 09:54 am, r...@cttc.upc.edu wrote: >Jean-Paul, > >Thanks for your answers. Answers bellow. Also attachments of >client/server application tests. > >On Fri, 2010-02-12 at 20:06 +, exar...@twistedmatrix.com wrote: >>On 06:03 pm, r...@cttc.upc.edu wrote: >> >Hello everybody, >> > >> >I am tryin

Re: [Twisted-Python] Authenticating with md5 hashed passwords

2010-02-15 Thread Ramiro Alba Queipo
Jean-Paul, Thanks for your answers. Answers bellow. Also attachments of client/server application tests. On Fri, 2010-02-12 at 20:06 +, exar...@twistedmatrix.com wrote: > On 06:03 pm, r...@cttc.upc.edu wrote: > >Hello everybody, > > > >I am trying to build a a client/server application using

Re: [Twisted-Python] reactor.run hangs

2010-02-15 Thread giskard
Hi all, i've moved reactor.run() out of the class and put in the main() in the class i've: def addReactor(self): print 'dentro al run' factory = client.basicClientFactory(self.jid, self.option['jabber']['password']) print "factory initialized" factory.addBootstrap(xmlstream.ST