Let's say I have the following model
Course
Student
The URI:
/courses/1
should return the following information about a particular course:
Name
Number
Date
Instructor
and: /courses
should return a list of above mentioned information.
I'm not sure about the 'return' part. If this was a JAX-WS service we would get the information about the course in question, create XML, stick that XML into a SOAP envelope and XML over HTTP to the client.
Also in a 'normal' web application, in response to:
/courses
A List<Course> would be request.addAttribute(-)'d to the JSP to render an HTML table. What is supposed to happen for a RESTful web service? Should the contents of the List be directly written to the output stream?