Does anyone know of a better/newer module for creating SOAP services
and not just a client?

BTW, nice find with Suds - this is most helpful!

regards,

/p

2008/12/12 Steve <sgibso...@gmail.com>:
>
> Hello Jarek,
>
> That did the trick! I'm still curious to get ZSI working but suds was
> simpler. Here's my first functioning webservice call.
>
> from suds.client import Client
>
> url = 'http://ws.cdyne.com/WeatherWS/Weather.asmx?wsdl'
> client = Client(url)
> result = client.service.GetCityWeatherByZIP('94552')
> print result.Temperature
>
> Thanks!
>
> On Dec 12, 12:24 am, Jarek Zgoda <jarek.zg...@redefine.pl> wrote:
>> Wiadomość napisana w dniu 2008-12-11, o godz. 09:31, przez Steve:
>>
>> > This may be a more of a generic Python question, but I'm working with
>> > Django so thought that I'd see if there's a Django specific solution
>> > to it.
>>
>> > I'm trying to work with SOAP. I'm new to it and a Jr. programmer as
>> > well. From Dive into Python it has this great example about how to
>> > handle SOAP calls.
>> >http://www.diveintopython.org/soap_web_services/index.html
>>
>> Drop SOAPpy and ZSI, they are not documented and nearly dead. Try suds.
>>
>> --
>> We read Knuth so you don't have to. - Tim Peters
>>
>> Jarek Zgoda, R&D, Redefine
>> jarek.zg...@redefine.pl
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to