--- In XMLRPCNET@yahoogroups.com, "sor2005" <sor2005@...> wrote:
>
> I'm using this XMLRPC libary for Wordpress blog and work great.
> But for Livejournal the xml that supposed to get to the server
> should be like this:
I've just started playing around with XMLRPC and livejournal, and I'm
using the following definition for the login command, which it appears
to be working at the moment
Simon
[XmlRpcMissingMapping(MappingAction.Ignore)]
public struct LoginArgs
{
[XmlRpcMissingMapping(MappingAction.Error)]
public string username;
public string auth_method;
public string password;
public string hpassword;
public string auth_challenge;
public string auth_response;
public string ver;
public string clientversion;
public string getmoods;
public string getmenus;
public string getpickws;
public string getpickwurls;
};
[XmlRpcUrl("http://www.livejournal.com/interface/xmlrpc")]
public interface ILiveJournal : IXmlRpcProxy
{
[XmlRpcMethod("LJ.XMLRPC.login", Description = "")]
Login login(LoginArgs args);
}