I've seen a ton of examples with ActionWebService and XMLRPC, but they're 3 years old and from what I understand, ActiveResource is supposed to replace ActionWebService.
I'm familiar with how ActiveResource can use XML to "talk" to other web sites and consume model information, but XML-RPC is a whole different type of thing, wherein you pass the name of the method you want to execute and the request is handed off, etc.
EDIT - I know how ActiveResource is supposed to work - but I have a client app that needs to use XML-RPC with a defined API (MetaWeblogAPI) and I have no choice but to implement it - hands are tied.
So - specifically: I've been trying to find some docs or a writeup on how XML-RPC might be implemented with Rails using ActiveResource. Perhaps it can't - I'd like to know that too I spose. I'm simply missing the "little leap" - the "how do you hand the request to the method" part where I get to pull the method name out of the XML-RPC request and hand it to the method. I know I'm overthinking this. Can't help it - I'm a .NET guy :).
I've tried to "use what works" - meaning that I've tried to implement ActionWebService but it seems that it doesn't play nice with Rails 2.3.5 (which is what I have installed) as I keep getting an "Unknown Constant" error pointing to ActionWebService, which is installed (which leads me to believe that Rails 2.x doesn't like it).
I'm a bit of a n00b so be gentle :) - I'm sure this is probably a lot easier than I'm making it out to be.