I forgot to mention one other thing...
In converterService.toRepresentation, after getting the ObjectRepresentation
back from GwtConverter, there's a null pointer exception in the following code,
due to target being null.
if (result.getEncodings().isEmpty()) {
result.getEncodings().addAll(target.getEncodings());
}
This doesn't really affect what I mentioned in the previous post though,
because the exception is caught and squelched in the same method. However, if
a null target is legitimate here, there should be a null check.
-Andy
------------------------------------------------------
http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2947788