So here is Mephisto xmlrpc plugin for Mephisto release 0.8 and for Mephisto Edge.
I have ported original Mephisto_xmlrpc plugin to work with Mephisto 0.8 and Mephisto edge.
The Original plugin was not compatible with most of the Desktop blogging tool if you use metaweblog api. this plugin working with almost all popular blogging tools like ecto, marsedit, blogtk, gnome-blog etc. , even with google reader.
checkout Mephisto xmlrpc plugin from subversion, this is available two flavors .
for Mephisto release 0.8
script/plugin install http://svn.railshacks.com/projects/mephisto/plugins/mephisto_xmlrpc_0.8
for Mephisto edge
script/plugin install http://svn.railshacks.com/projects/mephisto/plugins/mephisto_xmlrpc_edge
To install Mephisto xmlrpc plugin
follow these steps
1: edit file app/controllers/application/error.rb
locate these lines
rescue_from ActiveRecord::RecordNotFound, :with => :render_admin_not_found
rescue_from ActionController::UnknownController, :with => :render_admin_not_found
rescue_from ActionController::UnknownAction, :with => :render_admin_not_found
change these lines to
rescue_from ::ActiveRecord::RecordNotFound, :with => :render_admin_not_found
rescue_from ::ActionController::UnknownController, :with => :render_admin_not_found
rescue_from ::ActionController::UnknownAction, :with => :render_admin_not_found
save the file .
2: checkout action web service from svn repo. into vendor/rails folder.
svn co http://svn.rubyonrails.org/rails/ousted/actionwebservice/
3. restart your server
Now you have working xmlrpc service at your server .
if you face any problem installing/using this plugin feel free to ask .