next i tried 'mi set_gflag' and it failed like this:
srctl> mi set_gflag 1024 error: 400 - error at parameter 2: expected string type but record doesn't match type
did i do something wrong or is also this mi command buggy?
-- juha
On Jul 14, 2009 at 18:21, Juha Heinanen jh@tutpro.com wrote:
next i tried 'mi set_gflag' and it failed like this:
srctl> mi set_gflag 1024 error: 400 - error at parameter 2: expected string type but record doesn't match type
did i do something wrong or is also this mi command buggy?
try mi set_gflag s:1024.
sercmd tries to auto-guess the type of the parameters and if the parameters is a number => sets the binrpc type to int. However mi expects only strings (doesn't have the notion of any other type) => error.
Adding s: in front of a number forces the type to string (in sercmd).
Andrei
Andrei Pelinescu-Onciul writes:
try mi set_gflag s:1024.
that helped, but the same problem exist with xmlrpc mi command args. it is quite a hassle to change all ints to strings. would it be possible to change something in mi_rpc or xmlrpc module so that giving an int argument would work?
-- juha
On Jul 14, 2009 at 19:32, Juha Heinanen jh@tutpro.com wrote:
Andrei Pelinescu-Onciul writes:
try mi set_gflag s:1024.
that helped, but the same problem exist with xmlrpc mi command args. it is quite a hassle to change all ints to strings. would it be possible to change something in mi_rpc or xmlrpc module so that giving an int argument would work?
Should work now for all the mi commands.
Auto-conversion can also be turned on globally for all the rpcs (not recommended, but it's your only chance it you want to avoid fixing your clients). E.g.: modparam("xmlrpc", "autoconversion", 1) modparam("ctl", "autoconversion", 1)
Andrei