I used Java Restlet for my server code. My application is simple Blogging site.
It extends org.restlet.Application class to define the Router for the application.
I set router for the posts comments as below
router.attach("/posts/{id}/comments", CommentResource.class);
router.attach("/posts/{postId}/comments/{commentId}", CommentResource.class);
But above router does not work. I always getting 500 Internal Server Error.
http://localhost:8888/posts/22/comments. Sorry i am getting500 Internal Server Error. – Fizer Khan Sep 27 '12 at 7:03