I need to activate theme for wordpress blogs which are present remotely. I thought I will do it with xmlrpc api of worpress http://core.svn.wordpress.org/trunk/wp-includes/class-wp-xmlrpc-server.php, but wordpress does not provide any api method to activate or switch theme.
Similarly, I also need to activate plugins for the wordpress blogs remotely.
I searched a lot about it and got following solution: https://wordpress.stackexchange.com/questions/15534/is-it-possible-to-change-a-blogs-theme-through-xml-rpc-command-and-if-so-how
But this solution doesn't seem feasible to me, as it asks for changes in the code. This is feasible until I am activating my theme locally, but in my case I can have any number of blogs present remotely. So I ruled out this.
Does anyone came across this kind of situation, if yes, how did you manage to tackle the situation ?