-
Bug
-
Resolution: Not a Bug
-
Major
-
3.1.4.Final
-
None
Hi,
I have a error message (Caused by: java.io.IOException: UT010029: Stream is closed ) with a curl commande below :
the error is in MultipartFormAnnotationReader class at 50 lines (input.parse(entityStream).
My Rest service is below :
@POST
@Consumes(
{ "multipart/form-data" })
@Produces(
)
@io.swagger.annotations.ApiOperation(value = "", notes = "Creates a new PIA", response = Pia.class, tags={ })
@io.swagger.annotations.ApiResponses(value =
)
public Response addPia(MultipartFormDataInput input, @ApiParam(value = "PIA to add" ,required=true) @MultipartForm SamplePia body, @Context SecurityContext securityContext)
throws NotFoundException