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 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.

share|improve this question
Check your request that you are making is not proper at client side. – Yogendra Joshi Sep 27 '12 at 6:58
Yes, it is going correctly to http://localhost:8888/posts/22/comments. Sorry i am getting 500 Internal Server Error. – Fizer Khan Sep 27 '12 at 7:03
Are you getting any stack traces in the Server JVM logs? – Charlie Sep 27 '12 at 7:48
I am using Google App Engine. In the console, i did not get any errors. Am I doing correct in Restlet Application Router attach? – Fizer Khan Sep 27 '12 at 7:53
add the stacktrace to the question... – koma Sep 27 '12 at 8:51
show 1 more comment

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.