Re: [Zope] HTTPSConnection Python 2.3.4

2005-04-01 Thread Chris Withers
Paul Winkler wrote: I have a somewhat similar issue; an in-house Zope product is retrieving some information from a remote URL. If I hit the same URL from the command line on the zope server (using wget), it works fine. When Zope hits it, it gets a Bad Gateway error from the remote (Apache +

Re: [Zope] HTTPSConnection Python 2.3.4

2005-04-01 Thread Paul Winkler
On Fri, Apr 01, 2005 at 08:29:39AM +0100, Chris Withers wrote: Paul Winkler wrote: I have a somewhat similar issue; an in-house Zope product is retrieving some information from a remote URL. If I hit the same URL from the command line on the zope server (using wget), it works fine. When Zope

Re: [Zope] HTTPSConnection Python 2.3.4

2005-04-01 Thread Tino Wildenhain
Hi, Am Freitag, den 01.04.2005, 14:35 -0500 schrieb Paul Winkler: On Fri, Apr 01, 2005 at 08:29:39AM +0100, Chris Withers wrote: Paul Winkler wrote: I have a somewhat similar issue; an in-house Zope product is retrieving some information from a remote URL. If I hit the same URL from the

[Zope] HTTPSConnection Python 2.3.4

2005-03-31 Thread Joshua Jacobson
On the same machine, my script works in python 2.3.4 outside of zope, but it doesn't work in python 2.3.4 within zope as an external script. There I get"sslerror: The read operation has timed out." Here's the script: import httplib, urllibAction = ''CreateFunction = 'Create using

Re: [Zope] HTTPSConnection Python 2.3.4

2005-03-31 Thread Chris Withers
Step back a bit: what are you trying to do and wha tare you trying to do it? ;-) Chris Joshua Jacobson wrote: On the same machine, my script works in python 2.3.4 outside of zope, but it doesn't work in python 2.3.4 within zope as an external script. There I get sslerror: The read operation has

RE: [Zope] HTTPSConnection Python 2.3.4

2005-03-31 Thread Joshua Jacobson
[mailto:[EMAIL PROTECTED] Sent: Thursday, March 31, 2005 1:50 PM To: Joshua Jacobson Cc: zope@zope.org Subject: Re: [Zope] HTTPSConnection Python 2.3.4 Step back a bit: what are you trying to do and wha tare you trying to do it? ;-) Chris Joshua Jacobson wrote: On the same machine, my script

Re: [Zope] HTTPSConnection Python 2.3.4

2005-03-31 Thread Paul Winkler
On Thu, Mar 31, 2005 at 01:12:41PM +0200, Joshua Jacobson wrote: On the same machine, my script works in python 2.3.4 outside of zope, but it doesn't work in python 2.3.4 within zope as an external script. There I get sslerror: The read operation has timed out. I have a somewhat similar issue;