Hello Matthew, I think your problem is due to the internal connector which does not work with Android (see http://restlet.tigris.org/issues/show_bug.cgi?id=304). Can you try by adding the net extension (org.restlet.ext.net;jar) to the classpath of your project with the following lines, for example in the onCreate() method. Engine.getInstance().getRegisteredClients().clear(); // Add the "net" client connector Engine.getInstance().getRegisteredClients().add(new HttpClientHelper(new Client(Protocol.HTTP))); Note that this is a workaround since the connectors are nor properly discovered on the Android plate-form (http://restlet.tigris.org/issues/show_bug.cgi?id=941).
Regarding the log, we will provide a "bridge" between the classic Logger and the android Log class. Best regards, Thierry Boileau ------------------------------------------------------ http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2460545

