Re: SOAP web services using python. Would like to change the Envelope Document using MessagePlugin before sending it using suds

2013-02-19 Thread dieter
sarat.devin...@gmail.com writes: > My current SOAP request sent via suds.client looks like this: > > > > > > > > Test > > > > > > > This request fails on my server. If i take the same XML request and massage > it and

SOAP web services using python. Would like to change the Envelope Document using MessagePlugin before sending it using suds

2013-02-17 Thread sarat . devineni
Hi , My current SOAP request sent via suds.client looks like this: Test This request fails on my server. If i take the same XML request and massage it and send it visa SOAPUI, it works fine. What I did was

SOAP web services

2006-08-29 Thread Yusnel Rojas
I'm trying to make the wsdl asociated with this sample but I cannot make it workimport SOAPpydef doUpper(word):    return word.upper()server = SOAPpy.SOAPServer(("", 8000)) server.registerFunction(doUpper)server.registerFunction(who)server.serve_forever()can anyone tell me how to do this?anyone

Re: python soap web services

2006-05-13 Thread Butternut squash
Diez B. Roggisch wrote: > 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 docum

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