Hi Jerome, I came across this as I was running my code in the debugger this morning:
Request.getEntityAsString calls org.restlet.ext.data.InputRepresentation.toString(), which calls getStream(), which sets the stream to null after returning it. It's all fine and dandy until you run your code in the debugger, and display the request's content. If the debugger calls entity.toString to display the Representation, it might take you a while to figure out why you've suddenly lost your from data. -Vincent.

