Hi, I've this code (In a working activity):
XMLRPCClient client = new XMLRPCClient("http://127.0.0.1:8000");
try {
String out = (String) client.call("ping").toString();
} catch (XMLRPCException e) {
e.printStackTrace();
}
if (out.equals("PONG!")) {
//DO IT
}
this code -> if (out.equals("PONG!")) { causes the activity crash
why?
thanks :D
Original issue reported on code.google.com by patrick....@gmail.com on 9 Jul 2009 at 8:27
Original issue reported on code.google.com by
patrick....@gmail.com
on 9 Jul 2009 at 8:27