Hello,
I try to use this library http://github.com/eczarny/xmlrpc to retrieve information from an xml-rpc server.
The connection is ok and I can see the parsed object display in the console but I don't know how to read the response object even if I tried a lot.
Here is the console result of NSLog(@"%@", [response object]);
(response is a XMLRPCResponse
) :
{
stations = {
0 = {
IdStation = 2;
Message = "everything ok!";
};
1 = {
IdStation = 1;
Message = "everything ok!";
};
};
}
I want to list all stations and get id and message but I can't get it.
Is anyone can help me ?
Thanks,
David