SOAP problems

Johan Fredrik Øhman johanfo at ohman.no
Mon Mar 10 11:03:11 EST 2003


Be sure you need to use the soap protocol.  The hours I spent with soap
convinced me that is it quite a 'bloat'.  Try to transfer a long array (i.e.
2000 entries) and you are in for an unpleasant surprise. It is extremely
slow and inefficient.

Check http://pyro.sourceforge.net/ for a much better alternative for
Python - Python communication.

--
JFØ

"Svenne Krap" <usenet2002 at krap.dk> wrote in message
news:7d6p6v4ukrgbkeh3p7misd9cs4pqf815jt at 4ax.com...
> How is this changed (ie. which files).
>
> I have soap.py, soap.pyc and soap.pyo ?
> Isn't there something like libs should be compiled (I am on Windows) ?
>
> Futher help appriciated :)
>
> Svenne
>
> On 6 Mar 2003 09:59:55 -0800, paul at boddie.net (Paul Boddie) wrote:
>
> >Svenne Krap <usenet2002 at krap.dk> wrote in message
news:<8jbe6v8r3o6k2sme0e4uja2r4n9fac56pj at 4ax.com>...
> >>
> >> I have installed PyXML and Soapy ( http://soapy.sf.net ) .
> >
> >[...]
> >
> >>   File "C:\PROGRA~1\py222\soap.py", line 248, in load_namespaces
> >>     self.targetns = node.getAttributeNS('','targetNamespace')
> >
> >[...]
> >
> >> NamespaceErr: Use None instead of '' for empty namespace
> >>
> >>
> >> What does I do wrong ? Is there any way to fix it ?
> >
> >I can imagine that Soapy was written to use the old convention of an
> >empty string meaning "empty namespace", but in more recent releases of
> >PyXML the convention is to use None for that purpose. As you can see
> >from the error and from the line in the traceback that I've quoted,
> >usage of '' with getAttributeNS (and probably other ...NS methods) is
> >the cause.
> >
> >To fix it, I would suggest doing a search for calls of methods whose
> >names end with NS and where the first argument is the empty string (''
> >and possibly ""). After testing, you might want to submit patches to
> >the Soapy project on SourceForge, or the Python Web Services project
> >if that's more appropriate.
> >
> >Good luck!
> >
> >Paul
> >
> >P.S. You could, of course, downgrade to an old PyXML release, but I
> >wouldn't recommend that.
>






More information about the Python-list mailing list