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

2013-12-12 Thread Amit Saha
- Original Message - > From: "Phil Mayers" > To: twisted-python@twistedmatrix.com > Sent: Thursday, December 12, 2013 10:33:21 PM > Subject: Re: [Twisted-Python] Queries about connecting to a XML-RPC server > over IPv6 > > On 12/12/13 12:23, Amit Saha wr

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

2013-12-12 Thread Phil Mayers
On 12/12/13 12:23, Amit Saha wrote: - Original Message - From: "Amit Saha" To: "Twisted general discussion" Sent: Tuesday, December 10, 2013 11:59:27 AM Subject: Re: [Twisted-Python] Queries about connecting to a XML-RPC server over IPv6 - Original Messag

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

2013-12-12 Thread Amit Saha
- Original Message - > From: "Amit Saha" > To: "Twisted general discussion" > Sent: Tuesday, December 10, 2013 11:59:27 AM > Subject: Re: [Twisted-Python] Queries about connecting to a XML-RPC server > over IPv6 > > > > - Origina

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 wr

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] 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?

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

2013-12-08 Thread Amit Saha
- Original Message - > From: "Amit Saha" > To: twisted-python@twistedmatrix.com > Sent: Monday, December 9, 2013 3:28:47 PM > Subject: [Twisted-Python] Queries about connecting to a XML-RPC server over > IPv6 > > Hello, > > I am trying to connec

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

2013-12-08 Thread Amit Saha
Hello, I am trying to connect to a local XML-RPC server with IPv4 *disabled*. Here is my script: from twisted.web.xmlrpc import Proxy from twisted.internet import reactor def printValue(value): print repr(value) reactor.stop() def printError(error): print 'error', error reactor