Re: [Twisted-Python] Queries about connecting to a XML-RPC server over IPv6

2013-12-09 Thread Amit Saha
- Original Message - > From: "Phil Mayers" > To: twisted-python@twistedmatrix.com > Sent: Monday, December 9, 2013 7:33:17 PM > Subject: Re: [Twisted-Python] Queries about connecting to a XML-RPC server > over IPv6 > > On 09/12/13 05:28, Amit Saha wrote: > > > proxy = Proxy('http://lo

[Twisted-Python] ISSLTransport.getPeerCertificate returning None?

2013-12-09 Thread Laurens Van Houtven
Hi! I'm trying to authenticate a client by looking at their SSL certificate. I'm calling it from within an AMP responder (so, there's bytes going over the TLS transport already), and it's still None, so this is unrelated to calling it in connectionMade. That leads me to believe my client is doing

Re: [Twisted-Python] Do Viewables absolutely have to be return'ed by Avatars?

2013-12-09 Thread Wenxiang Wu
I'm On Nov 21, 2013 7:56 AM, "Daniel Sank" wrote: > From some experimentation I find that the only way to make a Viewable > get a meaningful perspective argument when executing view_* methods is > to make sure that the references to that Viewable are given to clients > as return values from persp

Re: [Twisted-Python] Do Viewables absolutely have to be return'ed by Avatars?

2013-12-09 Thread Daniel Sank
> What exactly is the problem with login? In an effort to stay on topic and reduce mailing list entropy I just responded to this question in another thread that was about the broken log-in. ___ Twisted-Python mailing list Twisted-Python@twistedmatrix.co

Re: [Twisted-Python] Filing Bugs

2013-12-09 Thread Daniel Sank
This is an update because glyph asked about this issue in another thread but I want to put the information where it belongs: 1. Try to log in. Does not accept credentials (login box simply reappears with username and password fields blank). 2. Cannot find a password reset option. Scratch head. 3

Re: [Twisted-Python] Queries about connecting to a XML-RPC server over IPv6

2013-12-09 Thread Phil Mayers
On 09/12/13 14:54, Phil Mayers wrote: On 09/12/13 13:28, Glyph wrote: On Dec 9, 2013, at 1:33 AM, Phil Mayers mailto:p.may...@imperial.ac.uk>> wrote: The IPv6 support in Twisted is very new - check your version even *has* it - and it's still a work in progress. You might find that you can't do

Re: [Twisted-Python] Queries about connecting to a XML-RPC server over IPv6

2013-12-09 Thread Phil Mayers
On 09/12/13 13:28, Glyph wrote: On Dec 9, 2013, at 1:33 AM, Phil Mayers mailto:p.may...@imperial.ac.uk>> wrote: The IPv6 support in Twisted is very new - check your version even *has* it - and it's still a work in progress. You might find that you can't do this. I'd have to read the code to be

Re: [Twisted-Python] Queries about connecting to a XML-RPC server over IPv6

2013-12-09 Thread Glyph
On Dec 9, 2013, at 1:33 AM, Phil Mayers wrote: > The IPv6 support in Twisted is very new - check your version even *has* it - > and it's still a work in progress. You might find that you can't do this. I'd > have to read the code to be sure and I don't have time right now, but my > guess is th

Re: [Twisted-Python] Do Viewables absolutely have to be return'ed by Avatars?

2013-12-09 Thread Glyph
On Dec 8, 2013, at 7:56 AM, Daniel Sank wrote: >> I would like to know, is there anyone else who knows how pb works, >> or is it mostly just you (glyph)? > > I'm asking this just to get a feel for who's who among twisted > developers, not for any other reason. To be clear your help has been > a

Re: [Twisted-Python] Do Viewables absolutely have to be return'ed by Avatars?

2013-12-09 Thread Glyph
On Dec 8, 2013, at 7:46 AM, Daniel Sank wrote: >> I would strongly encourage you to contribute documentation enhancements that >> add the requisite level of docstring coverage to PB. > > Eagerly awaiting for the website login to work so I can do that. What exactly is the problem with login?

Re: [Twisted-Python] Queries about connecting to a XML-RPC server over IPv6

2013-12-09 Thread Phil Mayers
On 09/12/13 05:28, Amit Saha wrote: proxy = Proxy('http://localhost6:8000') proxy.callRemote('my_proxy_method').addCallbacks(printValue, printError) When I run it, i get "No route to host: 101, Network is unreachable". However, 'curl -6 localhost:8000' succeeds. What could be going on here?