I'm trying to create my first GAE Endpoint app, and instead of generating an endpoint from a class, I'd like to create my own personalised Endpoint... is this possible?
I've written this class:
@Api(name="my_endpoint", path="my_endpoint")
public class MyFirstEndpoint {
@ApiMethod (name="my_method", path="my_method", httpMehod=HttpMethod.GET)
public Response myMethod(@Named("param1") String param1) {
...
}
}
But when I try to generate the Endpoint Client Library in Eclipse, it says that there was an error... and the worst thing is that it doesn't say what error it is!