[Simple-support] Arbitrary length simple xml serializeable object lists to be put in rpc call xml m
Brought to you by:
niallg
|
From: Marcipicus . <mar...@gm...> - 2016-02-11 23:02:52
|
Hi there, I'm trying to write a generic server/ client framework right now that will automatically serialize and deserialize the arguments of an rpc call of the form. <RPCCALL methodName="add"> <Object1> <el1>dasfgdasf</el1> </Object1> <Object2 attr1="value"> <anotherel1ofADifferentype> <el1.2>dfas</el1.2> </anotherel1ofADifferentype> </Object2> <RPCCALL> The problem is I don't want ot have to write a class for every rpc call that gets created. I just want to be able to deserialize arguments and pass them to the method. Does anyone have any idea how to do this or have any ideas about how to get around the writing of custom code for each rpc call interpretation. Any help is appreciated. Thank you very much, Sincerely, Marcus Sammon |