On 4/11/06, [EMAIL PROTECTED]
<[EMAIL PROTECTED]> 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,
[EMAIL PROTECTED],
http://www.brunningonline.net/simon/blog/
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to