Re: Is there a way to get the response code from the annotated ClientResource?

2012-03-23 Thread Tim Peierls
On Fri, Mar 23, 2012 at 12:43 AM, Richard Berger rich...@landisfamily.orgwrote: Given code like the following... ClientResource commentClient = new ClientResource(...); CommentsResource commentsResource = commentClient.wrap(CommentsResource.class); commentsResource.postCommentForm(form);

Re: Is there a way to get the response code from the annotated ClientResource?

2012-03-23 Thread Richard Berger
Thanks so much - that was exactly what I needed! RB -- View this message in context: http://restlet-discuss.1400322.n2.nabble.com/Is-there-a-way-to-get-the-response-code-from-the-annotated-ClientResource-tp7397618p7398735.html Sent from the Restlet Discuss mailing list archive at Nabble.com.

Is there a way to get the response code from the annotated ClientResource?

2012-03-22 Thread Richard Berger
Given code like the following... ClientResource commentClient = new ClientResource(...); CommentsResource commentsResource = commentClient.wrap(CommentsResource.class); commentsResource.postCommentForm(form); is there a way to get the response code from the commentsResource? Currently I am