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
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
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
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
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
> 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 "
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