Re: SOAPpy and pyxml installation/usage

2008-12-17 Thread Steve
Here it is, the specific error is RuntimeError: maximum recursion depth exceeded. I haven't attempted to debug it, since I'm totally in the dark at wsdl and still fairly junior with Python. I tried this on two machines, but I still don't out rule it being my own configuration. Is anyone else able

Re: SOAPpy and pyxml installation/usage

2008-12-15 Thread Matias
Try checking the specific exception and its message. Matias. 2008/12/15 Steve > > OK. I'm having second thoughts on suds. It seems to work great some > times, but not so great on others. I have the following code, where > vid is the wsdl of the video. > Many of them fail. I got these wsdl's fro

Re: SOAPpy and pyxml installation/usage

2008-12-15 Thread Steve
OK. I'm having second thoughts on suds. It seems to work great some times, but not so great on others. I have the following code, where vid is the wsdl of the video. Many of them fail. I got these wsdl's from http://www.xmethods.net and presumably they're good. def check(vid): try: clien

Re: SOAPpy and pyxml installation/usage

2008-12-12 Thread Paul Nendick
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 : > > Hello Jarek, > > That did the trick! I'm still curious to get ZSI working but suds was > simpler. Here's my first funct

Re: SOAPpy and pyxml installation/usage

2008-12-12 Thread Steve
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

Re: SOAPpy and pyxml installation/usage

2008-12-12 Thread Jarek Zgoda
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.

Re: SOAPpy and pyxml installation/usage

2008-12-12 Thread Steve
Hello Paul, Thanks for pointing me in the right direction. I had already downloaded and installed ZSI 2.0 but failed to gain any utility from it. Now I know where to apply my efforts. I'm still trying to get a basic call response working with ZSI. :\ I'll post for posterity when I figure out how

Re: SOAPpy and pyxml installation/usage

2008-12-11 Thread Paul Nendick
Hello Steve, SOAPy appears to be moribund. I was once using it within a Python SOA I'd worked with and chose to abandon it when we moved that system to Python 2.5. It wasn't an issue for us as SOAP was going nowhere (for us anyway). Good news for you (possibly) is the SOAP infrastructure generally

SOAPpy and pyxml installation/usage

2008-12-11 Thread 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 call