Hi, I've encountered a problem with forms supporting uploading files. These forms must include enctype="multipart/form-data" in their form-tag. The problem is that these multipart streams could be read just once. The ActionServlet populates the objectForm (i.e. reads the stream) and next it tries to read the parameter Constants.CANCEL_PROPERTY from request. But it is always null. How could I solve this problem? Thanks for any advice. Regards, Till

