Re: A good Soap Client

2014-11-24 Thread Filadelfo Fiamma
Thanks Cameron,Dieter! Sure I haven't understood how to pass and use the certificate to the client. I thought to write a HTTPS client to extract the clean SOAP envelope and then passing it to Suds. Just for info, the service I need to consume It's the Italian Healthcare System for Medical Doctor. C

Re: A good Soap Client

2014-11-24 Thread dieter
Filadelfo Fiamma writes: > Since 2011 I'm using the very good "Suds" library for consuming simple soap > service. > Now I need something for "SOAP over HTTPS", Does anyone know a good > solution? May I use suds and write an envelope for HTTPS? I can enforce Camerons statement: "suds" simply uses

Re: A good Soap Client

2014-11-24 Thread Cameron Simpson
On 24Nov2014 10:46, Filadelfo Fiamma wrote: My question is about Soap Client for python. Since 2011 I'm using the very good "Suds" library for consuming simple soap service. Now I need something for "SOAP over HTTPS", Does anyone know a good solution? May I use suds

A good Soap Client

2014-11-24 Thread Filadelfo Fiamma
Hi guys, My question is about Soap Client for python. Since 2011 I'm using the very good "Suds" library for consuming simple soap service. Now I need something for "SOAP over HTTPS", Does anyone know a good solution? May I use suds and write an envelope for HTTPS? T

Re: SOAP client

2009-02-12 Thread mk
On Feb 11, 11:20 am, Robin wrote: > On Feb 11, 3:33 pm, mk wrote: > > > Hi, > > > I'm trying to consume aSOAPweb service using Python.  So far I have > > found two libraries: SOAPpy and ZSI.  Both of them rely on PyXML which > > is no longer maintained (and there is no build for 64bit Windows and

Re: SOAP client

2009-02-11 Thread JBW
On Wed, 11 Feb 2009 07:33:29 -0800, mk wrote: > I'm trying to consume a SOAP web service using Python. Suds (ibid) -- accept no substitute! -- http://mail.python.org/mailman/listinfo/python-list

Re: SOAP client

2009-02-11 Thread Robin
On Feb 11, 3:33 pm, mk wrote: > Hi, > > I'm trying to consume a SOAP web service using Python.  So far I have > found two libraries: SOAPpy and ZSI.  Both of them rely on PyXML which > is no longer maintained (and there is no build for 64bit Windows and > the setup.py doesn't seem to know how to b

SOAP client

2009-02-11 Thread mk
Hi, I'm trying to consume a SOAP web service using Python. So far I have found two libraries: SOAPpy and ZSI. Both of them rely on PyXML which is no longer maintained (and there is no build for 64bit Windows and the setup.py doesn't seem to know how to build it on Windows). Is there a live SOAP

Re: Soap Client

2009-01-16 Thread Doug
I believe that I have answered my own question. If anyone else is interested in what I did ... using iPython's code completion (. then hit tab tab) I noticed that msg had a _request attribute. I set that attribute to "1" and that sent the message that I needed! Hope everyone has a great day! D

Soap Client

2009-01-15 Thread DougJrs
Good Evening Everyone, I am working to create a Soap client in Python using wsdl2py. So far I have been pretty successful in creating most of the client, but I am having trouble figuring out how to change the content of the message that is being sent. After running wsdl2py I have created this

python equivalent for this perl soap client

2008-08-06 Thread Edwin . Madari
use SOAP::Lite; use Data::Dumper; $ENV{HTTP_proxy} = "my_proxy_server_not_soap_proxy_server"; $ENV{HTTP_proxy_user} = ""; #set correct value $ENV{HTTP_proxy_pass} = ""; #set correct value my $soap = SOAP::Lite ->service('file:./local_file_copy_of_wsdl.wsdl'); my $som = $soap->soapMethod("method",

Writing python SOAP client

2005-10-19 Thread Alvin A. Delagon
Hello python programmers! I would like to add myself to the ever increasing number of python users. Here's my first question. I've written two SOAP clients using PERL and a PHP. I tried to wirte a new SOAP client using python but I'm having problems. First, I can't