[Twisted-Python] twisted and kerberos

2011-09-15 Thread Benjamin Rutt
Hello twisted experts, We are trying to add kerberos authentication to our existing twisted server. We haven't yet found a twisted specific library that can do this; any pointers? What we have found is python-krbV (https://fedorahosted.org/python-krbV/), but we end up using it along with code li

Re: [Twisted-Python] Folding the server into the client?

2011-09-15 Thread Itamar Turner-Trauring
> Itamar, thanks for the reply. > >> You could create a Python API that looks close enough to the code using >> xmlrpclib, but just uses direct Python function calls. Depending on your >> code this may mean you don't actually need the reactor. If you do need a >> reactor, you could still do it with

Re: [Twisted-Python] Folding the server into the client?

2011-09-15 Thread Don Dwiggins
Itamar, thanks for the reply. > You could create a Python API that looks close enough to the code using > xmlrpclib, but just uses direct Python function calls. Depending on your > code this may mean you don't actually need the reactor. If you do need a > reactor, you could still do it without act