On Thu, Dec 1, 2011 at 12:15 PM, Stephan Koops <[email protected]> wrote:
> what I forgot in my last email:
> In JAX-RS you are not required to call the serialisation / deserialisation
> logic. You implement the MessageBodyReader/Writer, give it to the ruintime
> environment, and they are called by the JAX-RS runtime. In Restlet you have
> to check the media type the client sent, decide which Deserialzer you have
> to use and call the deserialization. The same at the end: Check the
> accepted media types, decide and call the serialization. in JAX-RS you are
> not required to care about that, because the runtime will do it.
>
Not sure what you mean. The Restlet ConverterService handles
serialiation/deserialization. You can write resource handler methods like
this:
@Post public User addUser(User newUser) { ... }
--tim
------------------------------------------------------
http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2889697