Hi Sean, [...]
> If I enable the RequestDumperValve in Tomcat, to print out > all Request headers > and cookies, the Form object that comes back from > getEntityAsForm is always > null. > > There were a few other posts that said that once the > request entity was > read, that the bytes were no longer available by downstream > restlets. They could > be different, but this is certainly a weird bug to have come > across. Im hoping > my issue may be something different, but was wondering if > anyone else came across this issue I'm not familiar with the RequestDumperValve, but if it consumes in any way the input HTTP stream, there is no way for the Restlets down the chain to get this content again as it is not cached. However, if the RequestDumperValve only reads the headers and the request URI, this should no affect the behavior of Restlet's Request.getEntity*() methods. Best regards, Jerome

