Re: Web Services examples using "raw" xml?

2009-08-30 Thread John Gordon
In <[email protected]> John Nagle writes: > John Gordon wrote: > > I'm developing a program that will use web services, which I have never > > used before. > Web services in general, or some Microsoft interface? Microsoft. Exchange Web Services, specifically. -- Jo

Re: Web Services examples using "raw" xml?

2009-08-26 Thread Piet van Oostrum
> "Diez B. Roggisch" (DBR) wrote: >DBR> John Gordon schrieb: >>> I'm developing a program that will use web services, which I have never >>> used before. >>> >>> There are several tutorials out there that advise you to get the WSDL >>> and then call a method (such as wsdl2py) that inspects t

Re: Web Services examples using "raw" xml?

2009-08-25 Thread Stefan Behnel
John Gordon wrote: > Any suggestions? Well, yes, see the link I posted. http://effbot.org/zone/element-soap.htm That might actually be the easiest way to get your stuff done, and it avoids external dependencies (well, except for ElementTree, if you continue to use Python <= 2.4). Stefan -- htt

Re: Web Services examples using "raw" xml?

2009-08-25 Thread John Gordon
In <[email protected]> Stefan Behnel writes: > > I tried WSDL.Proxy() from the SOAPpy package and eventually end up > > with this error: > > > > xml.parsers.expat.ExpatError: not well-formed (invalid token): line 1, > > column 6 > Is that while parsing the

Re: Web Services examples using "raw" xml?

2009-08-24 Thread Stefan Behnel
John Gordon wrote: > I'm developing a program that will use web services, which I have never > used before. > > There are several tutorials out there that advise you to get the WSDL > and then call a method (such as wsdl2py) that inspects the wsdl and > automagically generates the python classes a

Re: Web Services examples using "raw" xml?

2009-08-24 Thread Asun Friere
On Aug 25, 5:41 am, John Gordon wrote: > >   File "/usr/lib/python2.3/site-packages/suds/client.py", line 59 >     @classmethod >     ^ > SyntaxError: invalid syntax > If memory serves me correctly, decorators were introduced in python2.4. That would account for your SyntaxError. -- http://mai

Re: Web Services examples using "raw" xml?

2009-08-24 Thread Diez B. Roggisch
John Gordon schrieb: I'm developing a program that will use web services, which I have never used before. There are several tutorials out there that advise you to get the WSDL and then call a method (such as wsdl2py) that inspects the wsdl and automagically generates the python classes and metho

Re: Web Services examples using "raw" xml?

2009-08-24 Thread John Nagle
John Gordon wrote: I'm developing a program that will use web services, which I have never used before. Web services in general, or some Microsoft interface? John Nagle -- http://mail.python.org/mailman/listinfo/python-list

Re: Web services

2009-01-26 Thread Chris Rebert
On Mon, Jan 26, 2009 at 8:11 AM, loial wrote: > I am trying to learn about web services and how to interface with a > 3rd party web service from python. > > Can anyone point me at an idiots guide/tutorial for someone who is new > to web services? The XML-RPC client module in the std lib (xmlrpcli