Re: [Tutor] parsing response from SOAPpy request

2007-09-01 Thread Alan Gauld
"Dave Kuhlman" <[EMAIL PROTECTED]> wrote >> >> The response comes back as XML document but when I check it with >> >> type(result) it shows the the response is a string. > This is the point of using SOAPpy. XML is the underlying (and > mostly hidden) data representation that is sent "across the

Re: [Tutor] parsing response from SOAPpy request

2007-09-01 Thread Dave Kuhlman
On Sat, Sep 01, 2007 at 10:24:24AM -0600, Eric Brunson wrote: > Alan Gauld wrote: > > "Sean Cronin" <[EMAIL PROTECTED]> wrote > > > > > >> The response comes back as XML document but when I check it with > >> type(result) it shows the the response is a string. > >> > > > > Thats right the s

Re: [Tutor] parsing response from SOAPpy request

2007-09-01 Thread Eric Brunson
Alan Gauld wrote: > "Sean Cronin" <[EMAIL PROTECTED]> wrote > > >> The response comes back as XML document but when I check it with >> type(result) it shows the the response is a string. >> > > Thats right the string is the XML document, just as if you had read it > from a file with the rea

Re: [Tutor] parsing response from SOAPpy request

2007-09-01 Thread Alan Gauld
"Sean Cronin" <[EMAIL PROTECTED]> wrote > The response comes back as XML document but when I check it with > type(result) it shows the the response is a string. Thats right the string is the XML document, just as if you had read it from a file with the read() method. > Does anyone have any sugg