Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i'm trying to use Restlet on GAE. I have a guard followed by the root router. 2 roleAuthorizer, one for the admin and a the other for the users. then 2 router behind the roleauthorizer for the routes between uri and the ressource classes. It's strange because, the route doesn't work. If i use the attachDefault it's ok but for the routes with attach : nothing !

here is my code :

public synchronized Restlet createInboundRoot() {

         Router rootRouter = new Router(getContext());

    pubRouter = new Router(getContext());

    String version="/book/v"+System.getProperty("API_VERSION");
    pubRouter.attachDefault(BookRessource.class);
    pubRouter.attach(version+"/book",BookRessource.class);

     RoleAuthorizer ra1 = new RoleAuthorizer();
     ra1.getAuthorizedRoles().add(MyEnroler.DEVELOPER);
     ra1.getAuthorizedRoles().add(MyEnroler.ADMINISTRATOR);
     ra1.setNext(pubRouter);       

     rootRouter.attach(version, ra1);

     adminRouter = new Router(getContext());

String developerVersion="/admin/v1";
    adminRouter.attach(developerVersion+"/developer", DeveloperRessource.class);
    adminRouter.attach(developerVersion+"/method",MethodRessource.class);

RoleAuthorizer ra2 = new RoleAuthorizer();
    ra2.getAuthorizedRoles().add(MyEnroler.ADMINISTRATOR);
    ra2.setNext(adminRouter);
    rootRouter.attach(developerVersion, ra2); 

    ChallengeAuthenticator guard=
       new ChallengeAuthenticator( getContext(),ChallengeScheme.HTTP_BASIC,"OPA");
    guard.setVerifier(new MyVerifier());
    guard.setEnroler(new MyEnroler());
    guard.setNext(rootRouter);
    return guard;

 }

and an extract of my "web.xml" :

 <servlet>
  <servlet-name>RestletServlet</servlet-name>
  <servlet-class>org.restlet.ext.servlet.ServerServlet</servlet-class>
 </servlet>
 <servlet-mapping>
  <servlet-name>RestletServlet</servlet-name>
  <url-pattern>/api/*</url-pattern>
 </servlet-mapping>

if i want try this : http://domain.appspot.com/api/book/v1/book, i received a 404 error. can you help me ?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.