Re: httplib/HTTPS Post Problem

2005-07-22 Thread michaelparkin
Thanks for the replies, Andreas and Peter. Andreas Kostyrka wrote: > Just a curious guess: Are you behind a proxy? If so, it's a known and > never fixed bug from Python 1.5 times ;) No, I'm not behind a proxy - the server is on the same PC as my client (while I'm testing!). > You might also t

Re: httplib/HTTPS Post Problem

2005-07-15 Thread Andreas Kostyrka
Am Montag, den 11.07.2005, 06:29 -0700 schrieb [EMAIL PROTECTED]: > Hi, > > Sorry to post what might seem like a trivial problem here, but its > driving me mad! > > I have a simple https client that uses httplib to post data to a web > server. > > When I post over http & https using curl the dat

Re: httplib/HTTPS Post Problem

2005-07-14 Thread Peter A.Schott
Have you tried using pycurl? That may be an easier way to port over your CURL code directly. Relatively easy to use, too. -Pete [EMAIL PROTECTED] wrote: > Hi, > > Sorry to post what might seem like a trivial problem here, but its > driving me mad! > > I have a simple https client that uses h

Re: httplib/HTTPS Post Problem

2005-07-11 Thread Thomas Guettler
Am Mon, 11 Jul 2005 06:29:23 -0700 schrieb michaelparkin: > Hi, > > Sorry to post what might seem like a trivial problem here, but its > driving me mad! > > I have a simple https client that uses httplib to post data to a web > server. > > When I post over http & https using curl the data is re

httplib/HTTPS Post Problem

2005-07-11 Thread michaelparkin
Hi, Sorry to post what might seem like a trivial problem here, but its driving me mad! I have a simple https client that uses httplib to post data to a web server. When I post over http & https using curl the data is recieved by the web server with no problems. When I post using my python clien