Hi,
I just committed support in the trunk that enables you to do the
following:
@POST
@Consumes("multipart/form-data")
public String post(
@FormParam("file") JAXBBean f,
@FormParam("file") FormDataContentDisposition fdc)
throws Exception {
..
}
so it is possible to get parameters values like the value of the
"filename" parameter, if present.
Paul.