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 <[email protected]> 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 > [email protected] --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---

