Estoy tratando de cargar un archivo y otros datos de formulario usando el cliente multipart/form-data con Jersey. Estoy cargando a un servicio web REST también usando Jersey. Aquí está el código del servidor:Intentando cargar un archivo en un servidor JAX-RS (jersey)
@POST
@Consumes(MediaType.MULTIPART_FORM_DATA)
@Produces(MediaType.APPLICATION_JSON)
public String create(@FormDataParam("file") InputStream file,
@FormDataParam("file") FormDataContentDisposition fileInfo,
@FormDataParam("name") String name,
@FormDataParam("description") String description) {
Ingredient ingredient = new Ingredient();
ingredient.setName(name);
ingredient.setDescription(description);
ingredient.setImageName(fileInfo.getFileName());
ingredient.setImagePath(context.getRealPath("/resources/uploads/"));
// TODO save the file.
try {
JSONObject json = new JSONObject();
try {
ingredientService.create(ingredient);
} catch (final InvalidParameterException ex) {
logger.log(Level.INFO, ex.getMessage());
json.put("result", false);
json.put("error", ex.getMessage());
return json.toString();
} catch (final GoodDrinksException ex) {
logger.log(Level.WARNING, null, ex);
json.put("result", false);
json.put("error", ex.getMessage());
return json.toString();
}
json.put("ingredient", JsonUtil.ingredientToJSON(ingredient));
return json.put("result", true).toString();
} catch (JSONException ex) {
logger.log(Level.SEVERE, null, ex);
return "{\"result\",false}";
}
}
He probado el código del servidor mediante un formulario HTML básico en mi escritorio y funciona bien. El problema parece estar en el cliente. Aquí está el código de cliente relevante.
ClientConfig config = new DefaultClientConfig();
client = Client.create(config);
client.addFilter(new LoggingFilter());
webResource = client.resource("http://localhost:8080/webapp/resources").path("ingredient");
FormDataMultiPart fdmp = new FormDataMultiPart();
if (file != null) {
fdmp.bodyPart(new FileDataBodyPart("file", file, MediaType.APPLICATION_OCTET_STREAM_TYPE));
}
fdmp.bodyPart(new FormDataBodyPart("name", ingredient.getName()));
fdmp.bodyPart(new FormDataBodyPart("description", ingredient.getDescription()));
ClientResponse response = webResource.type(MediaType.MULTIPART_FORM_DATA_TYPE).post(ClientResponse.class, fdmp);
String string = response.getEntity(String.class);
logger.log(Level.INFO, "response: {0}", string);
que estoy recibiendo una respuesta desde el servidor 400 "La solicitud enviada por el cliente era sintácticamente incorrecto"
Aquí es el mensaje que se escupió del registrador, éste es sin un archivo para mantener la salida breve:
1 > POST http://localhost:8080/webapp/resources/ingredient
1 > Content-Type: multipart/form-data
1 >
--Boundary_5_1545082086_1303666703655
Content-Type: text/plain
Content-Disposition: form-data;name="name"
Adam
--Boundary_5_1545082086_1303666703655
Content-Type: text/plain
Content-Disposition: form-data;name="description"
Test
--Boundary_5_1545082086_1303666703655--
¿Qué estoy haciendo mal en el cliente para que esto funcione correctamente?
muestra: http://puspendu.wordpress.com/2012/08/23/restful-webservice-file-upload-with-jersey/ –
la opción que hizo configurado para mostrar el cuerpo de la solicitud, he habilitado 'ServerProperties.TRACING = ALL' y' ServerProperties.TRACING_THRESHOLD = VERBOSE'. Pero no muestra el cuerpo de solicitud –