bronson has asked for the wisdom of the Perl Monks concerning the following question:
why do I want this?
My RPC::XML module has a dispatch table of methods and their associated signatures:
I'd like to have the server know the name of the function without requiring a separate lookup table. Is there any reasonably easy way of doing this?RPC::XML::LoadModPod::register_methods({ \&identity => ['string'] \&listMethods => ['array', 'array string'], ... etc.);
Thanks!
|
|---|