Web Service SOAP - Unknown element v1

Simon Brunning simon at brunningonline.net
Tue Apr 11 05:47:18 EDT 2006


On 4/11/06, Jesus.Javier.Masa.Lledo at dmr-consulting.com
<Jesus.Javier.Masa.Lledo at dmr-consulting.com> wrote:
>
> Im trying to develope a web service that comunicates python (client) with
> Java (server). Everything works fine until the client calls a method that
> takes parameters ( for example: setName("Joe") ). Any other method that
> takes no parameteres works perfect ( For example: getDate() ), even the ones
> that return stuff from the server.

(snip Java stack trace.)

> Could anyone tell me why is this happening????

Try using keyword arguments instead of positional keywords, like so:

servidor.setDVD(title="Fight Club")

I've guessed at 'title' for the keyword here, 'cos I can't see your
WSDL to find out what the real one is.

--
Cheers,
Simon B,
simon at brunningonline.net,
http://www.brunningonline.net/simon/blog/



More information about the Python-list mailing list