Marcus
Marcus

Reputation: 5838

Should I use an alternative from CPAN to replace Frontier::RPC2?

I have been using Frontier::RPC2 for my XML-RPC server, with Frontier::Client on the client side... but have noticed these modules have not been maintained recently.

Discussion at the bottom of this page mentions some fresher alternatives on CPAN. What would the pros and cons of these be? I honesty don't have an immediate need to switch, but there are some annoying "uninitialized" variable warnings produced by Frontier::RPC2 which I'd love to rid myself of... they are clogging up and making it difficult to find more salient warnings in my webserver log.

Any recommendations for upgrading my web service?

Upvotes: 2

Views: 287

Answers (1)

brian d foy
brian d foy

Reputation: 132840

You could just fix Frontier::RPC2 so it's warnings clean. That's kinda the point of free and open source software. :)

If you are already using this module and it works fine except for the warnings, why switch? Just fix the warnings. Submit a patch to RT for the module. If the maintainer has disappeared, the admins at [email protected] can help you get your patch applied.

Upvotes: 3

Related Questions