Hi,
I just gave a try at first Server tutorial from
http://wiki.restlet.org/docs_2.0/13-restlet/21-restlet/318-restlet/319-restlet.html
and here is the source
public class FirstServerResource extends ServerResource {
public static void main(String[] args) throws Exception {
// Create the HTTP server and listen on port 8182
new Server(Protocol.HTTP, 8182, FirstServerResource.class).start();
}
@Get
public String toString() {
return "hello, world";
}
}
I am running it in eclipse sdk with GWT, i did add both the jar files
org.restlet.jar from gwt and gae and included the inherit module in my
app.gwt.xml
But it throws out me the error below
WARNING: No available server connector supports the required protocols: 'HTTP'
. Please add the JAR of a matching connector to your classpath.
I am not sure where i am going wrong,any help regarding this please??
------------------------------------------------------
http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2911408