Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #84210 > unrolled thread

python client call Java server by xmlrpc

Started byfan.ding1@kodak.com
First post2015-01-22 16:15 +0800
Last post2015-01-22 16:15 +0800
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python


Contents

  python client call Java server by xmlrpc fan.ding1@kodak.com - 2015-01-22 16:15 +0800

#84210 — python client call Java server by xmlrpc

Fromfan.ding1@kodak.com
Date2015-01-22 16:15 +0800
Subjectpython client call Java server by xmlrpc
Message-ID<mailman.17960.1421915856.18130.python-list@python.org>

[Multipart message — attachments visible in raw view] — view raw

Hi all

I have xmlrpc server written in Java, and it has a method like

Fun( vector, vector), the vector is array of user-defined object, which is 
a class  extends HashMap.

And I call it like:

server = xmlrpclib.ServerProxy("http://myserver")

server.Fun( [ {"0.5":0.1}], [ ] )

It always fails with error

'No method matching arguments: , [Ljava.lang.Object;, [Ljava.lang.Object; 
'


Does anyone use this before? It troubles me some days.

Thanks a  lot.

Diana

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web