metaWeblog.getRecentPosts is returning nothing in my iphone app
metaWeblog.getRecentPosts is returning nothing in my iphone app, follwong is my objective c code to call that method,xml-rpc wordpress methods like wp.getUsers are working fine, but the methods which are used retrive commets,posts(wp.getComments ,metaWeblog.getRecentPosts ) are returning null
NSArray *arrParameters = [NSArray arrayWithObjects:@"1", @"username", @"password", nil];
NSString *strServer = [[[NSString alloc] initWithString:@"http://abc.com/xmlrpc.php"] autorelease]; // the server
NSString *strMethod = [[[NSString alloc] initWithString:@"metaWeblog.getRecentPosts"] autorelease]; // the method
XMLRPCRequest *objXMLRPCRequest = [[XMLRPCRequest alloc] initWithHost:[NSURL URLWithString:strServer]];
[objXMLRPCRequest setMethod:strMethod withObjects:arrParameters];
how can i resolve this,,,? is there any method to list the comments