Re: Python SOAP library

2012-05-10 Thread John
W dniu 2012-05-02 17:35, Alec Taylor pisze: Would you recommend: http://code.google.com/p/soapbox/ Or suggest another? I am having lots of fun and positive experience with https://github.com/arskom/rpclib Awesome doc and example code and, most importantly, it works! :) -- John -- http://mail

Re: Python SOAP library

2012-05-02 Thread Alec Taylor
Client and server (unfortunately) I need to support serialisation between formats On Thu, May 3, 2012 at 7:24 AM, John Nagle wrote: > On 5/2/2012 8:35 AM, Alec Taylor wrote: >> >> What's the best SOAP library for Python? >> I am creating an API converter which will be serialising to/from a varie

Re: Python SOAP library

2012-05-02 Thread John Nagle
On 5/2/2012 8:35 AM, Alec Taylor wrote: What's the best SOAP library for Python? I am creating an API converter which will be serialising to/from a variety of sources, including REST and SOAP. Relevant parsing is XML [incl. SOAP] and JSON. Would you recommend: http://code.google.com/p/soapbox/

Python SOAP library

2012-05-02 Thread Alec Taylor
What's the best SOAP library for Python? I am creating an API converter which will be serialising to/from a variety of sources, including REST and SOAP. Relevant parsing is XML [incl. SOAP] and JSON. Would you recommend: http://code.google.com/p/soapbox/ Or suggest another? Thanks for all inf

Re: Python, SOAP & SSL

2007-02-28 Thread Simon Brunning
On 2/28/07, Barker, CJ <[EMAIL PROTECTED]> wrote: > Was this ever solved? You might get more feedback about this on the Python web services list at . -- Cheers, Simon B [EMAIL PROTECTED] http://www.brunningonline.net/simon/blog/ GTalk:

Python, SOAP & SSL

2007-02-27 Thread Barker, CJ
Was this ever solved? I'm running into the same problem right now. Any help is much appreciated. -cjb -- http://mail.python.org/mailman/listinfo/python-list

Re: Python SOAP and XML-RPC performance extremely low?

2006-07-07 Thread skip
>> As someone else noted though, a five-second delay for such a small >> example doesn't seem to be an XML-RPC problem. A simple round-trip >> to my XML-RPC server running on the localhost takes about 5 >> *milli*seconds. Fredrik> even if the service you're connecting is wait

Re: Python SOAP and XML-RPC performance extremely low?

2006-07-07 Thread Fredrik Lundh
[EMAIL PROTECTED] wrote: > As someone else noted though, a five-second delay for such a small example > doesn't seem to be an XML-RPC problem. A simple round-trip to my XML-RPC > server running on the localhost takes about 5 *milli*seconds. even if the service you're connecting is waiting 5 seco

Re: Python SOAP and XML-RPC performance extremely low?

2006-07-07 Thread skip
Jack> No, I'm not using any accelerator. The code is extremely simple Jack> (from toofpy): ... To use sgmlop, just download and install it. Your code doesn't need to change. The xmlrpclib module detects its presence and uses it automatically. As someone else noted though, a five-se

Re: Python SOAP and XML-RPC performance extremely low?

2006-07-07 Thread Jack
Ha! Thanks Fredrik for the big hint :) I wasn't careful when reading that page. Was in too much of a hurry to try the code :) > and a "5" as the second argument in the greeting call. I wonder what that > does ? ;-) > > (if you need a hint, look for "waits the given number of seconds" on this >

Re: Python SOAP and XML-RPC performance extremely low?

2006-07-07 Thread Fredrik Lundh
Jack wrote: > When I try TooFPy with the SOAP and XML-RPC sample client code > provided in TooFPy tutorials, a log entry shows up quickly on web server > log window, but it takes a long time (5 seconds or longer) okay, 5 seconds... > No, I'm not using any accelerator. The code is extremely simpl

Re: Python SOAP and XML-RPC performance extremely low?

2006-07-06 Thread Jack
No, I'm not using any accelerator. The code is extremely simple (from toofpy): # XML-RPC test import xmlrpclib srv = xmlrpclib.Server('http://localhost:4334/RPC2/greeting') print srv.greeting('you', 5) # SOAP test import SOAPpy srv = SOAPpy.SOAPProxy('http://localhost:4334/SOAP/greeting') print

Re: Python SOAP and XML-RPC performance extremely low?

2006-07-06 Thread Boris Borcic
the web server is fast because the > log > entry shows immieidately on web server console. But it takes Python XML/SOAP > parser a long time to parse the extremely simple result. If so, wouldn't > this > render Python SOAP and XMP-RPC implementation useless in real life?

Re: Python SOAP and XML-RPC performance extremely low?

2006-07-06 Thread skip
Jack> When I try TooFPy with the SOAP and XML-RPC sample client code Jack> provided in TooFPy tutorials, a log entry shows up quickly on web Jack> server log window, but it takes a long time (5 seconds or longer) Jack> for the client to output a "Hello you." For XML-RPC are you u

Python SOAP and XML-RPC performance extremely low?

2006-07-06 Thread Jack
log entry shows immieidately on web server console. But it takes Python XML/SOAP parser a long time to parse the extremely simple result. If so, wouldn't this render Python SOAP and XMP-RPC implementation useless in real life? -- http://mail.python.org/mailman/listinfo/python-list

WS-Security support for Python SOAP libraries

2006-06-14 Thread Satchidanand Haridas
Hi, Do any of the existing SOAP libraries for Python have support for WS-Security? thanks, Satchit -- http://mail.python.org/mailman/listinfo/python-list

Re: python soap web services

2006-05-13 Thread Butternut squash
tion theme for that purpose that can be > used to infer the WSDL - or you write WSDL yourself. Which is a major > PITA, as the whole SOAP mess. > > Ravi OTH has pointed out _running_ a SOAP service is easy as cake. > I agree python soap is pretty easy to use. Just a bit harder to

Re: python soap web services

2006-05-12 Thread Diez B. Roggisch
Butternut squash wrote: > Is there any reason why there isn't any python library that makes > using soap as easy as how microsoft .net makes it. > > I mean I write rudimentary asmx files call them from a webbrowser. > The WSDL is generated and then there is documentation and a form to > invoke a

Re: python soap web services

2006-05-12 Thread Ravi Teja
> Is there any reason why there isn't any python library that makes > using soap as easy as how microsoft .net makes it. SOAP with Python is easy too in a different sort of way. I don't know about the equivalent for autogenerating WSDL bit as in .NET. #!/usr/bin/env python def hello(): return "

python soap web services

2006-05-11 Thread Butternut squash
Is there any reason why there isn't any python library that makes using soap as easy as how microsoft .net makes it. I mean I write rudimentary asmx files call them from a webbrowser. The WSDL is generated and then there is documentation and a form to invoke a function. When do you think someone

Python & SOAP

2005-12-25 Thread annaiak
I trying to run some implementation of SOAP in Python. Iam using ZSI, but iam little bit lost. I downloaded the official documentation, but iam still not able to understand relations between objects (soapwriter, typecode). Everything i can, is send a simple string via return value of server fun

Writing python SOAP client

2005-10-19 Thread Alvin A. Delagon
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