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