Re: [Zope-dev] XMLRPC with varargs

2003-03-20 Thread Andy McKay
But I was talking only about implementation of server side function and, I think, it is possible use python specialities without desagree XMLRPC cross language technology. In this case, only '*' arguments. If I make a call like Foo( 1, 2 ) The server side implementation could be def Foo( a, b )

Re: [Zope-dev] XMLRPC with varargs

2003-03-19 Thread Marco Catunda
Dieter, Ok. But I was talking only about implementation of server side function and, I think, it is possible use python specialities without desagree XMLRPC cross language technology. In this case, only '*' arguments. If I make a call like Foo( 1, 2 ) The server side implementation could be

Re: [Zope-dev] XMLRPC with varargs

2003-03-18 Thread Dieter Maurer
Marco Catunda wrote at 2003-3-17 19:39 -0300: I have tried call a function via XMLRPC with * and ** args with no success! XMLRPC is a cross language technology. It does not support Python specialities such as * and ** arguments. Dieter ___

[Zope-dev] XMLRPC with varargs

2003-03-17 Thread Marco Catunda
Hello, I have tried call a function via XMLRPC with * and ** args with no success! The following error have appeared: Unexpected Zope error value: Traceback (most recent call last): File

Re: [Zope-dev] XMLRPC with varargs

2003-03-17 Thread Marco Catunda
Hello, Sorry, I made mistake on last patch... I am sending the correct one --- mapply.py 2003-03-17 20:11:23.0 -0300 +++ mapply.py.new 2003-03-17 20:11:16.0 -0300 @@ -13,6 +13,8 @@ Provide an apply-like facility that works with any mapping object +import inspect +