Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Python > Writing python SOAP client

Reply
Thread Tools

Writing python SOAP client

 
 
Alvin A. Delagon
Guest
Posts: n/a
 
      10-20-2005
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 seem to
find a good documentation of the SOAPpy module. Second, I found a code
snippet of a python SOAP client but it was designed only to use the
SOAPproxy function. How can I create a python SOAP client given these
parameters:

URI: urn:ECASHWS
HOST: https://hostname/cgi-bin/server.cgi

Here's the PERL snippet that I'm trying to convert into a pythinic language:

my $login = SOAP::Lite
-> uri ($URL)
-> proxy ($host)
-> login($uname, $epwd);
my $result = $login
->result;

Help will be greatly appreciated. Thank you in advance and more power to
python programmers!
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
SOAP Client -getting data from SOAP::Mapping::Object? Mason Brown Ruby 1 05-23-2007 03:24 AM
Writing a Simple SOAP Client junk6@microserf.org.uk Ruby 2 06-06-2006 08:12 PM
client-to-client communication via SOAP Bruce ASP .Net Web Services 3 03-28-2005 02:31 AM
client-to-client communication via SOAP Bruce ASP .Net Web Services 0 03-24-2005 06:37 PM
SOAP Client creation in ASP.NET using MS SOAP Toolkit Sham Ramakrishnan ASP .Net 2 07-01-2003 11:29 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57