12-01-2016 02:30 PM
Hola a todos,
Estoy intentando modificar los metadatos de un documento a través de la REST API de Alfresco. Realizo la llamada correctamente y me devuelve "success": true. Pero cuando voy al documento no me ha modificado ningún dato. Mi código es el siguiente:
try {
HttpClient client = new HttpClient();
String uploadUrl = "http://00.00.00.00:8080/alfresco/service/api/metadata/node/workspace/SpacesStore/e8ab1cf6-64ee-46f8-..." + ticket;
PostMethod post = new PostMethod(uploadUrl);
JSONObject metadatos = new JSONObject();
metadatos.put("title", "SELA");
metadatos.put("description", "SELA");
JSONObject properties = new JSONObject();
properties.put("properties", metadatos);
StringRequestEntity requestEntity = new StringRequestEntity(
properties.toString(),
"application/json",
"UTF-8");
post.setDoAuthentication(true);
post.setRequestHeader("Content-Type", "application/json");
post.setRequestEntity(requestEntity);
int status = client.executeMethod(post);
System.out.println(post.getResponseBodyAsString());
post.releaseConnection();
if (status != HttpStatus.SC_OK) {
System.err.println("Method failed: " + post.getStatusLine());
}
} catch (IOException e) {
e.printStackTrace();
}
Y el JSON que estoy generando y enviando es este:
{
"properties": {
"cm:title": "SELA",
"cm:description": "SELA"
}
}
URL que estoy enviando:
http://00.00.00.00:8080/alfresco/service/api/metadata/node/workspace/SpacesStore/e8ab1cf6-64ee-46f8-b6ad-4d1e7524844d?TICKET_123...
La verdad no veo cual puede ser el problema. ¿Estoy construyendo mal el JSON? o ¿Hay algo que esté haciendo mal?
Os agradecería cualquier ayuda.
Muchas gracias.
12-02-2016 04:54 AM
Ya encontré el problema, en la requestEntity estaba poniendo "application/json" en vez del tipo mime
del documento que quería modificar. Quedaría de la siguiente manera.
StringRequestEntity requestEntity = new StringRequestEntity(
properties.toString(),
"application/pdf",
"UTF-8");
12-02-2016 04:54 AM
Ya encontré el problema, en la requestEntity estaba poniendo "application/json" en vez del tipo mime
del documento que quería modificar. Quedaría de la siguiente manera.
StringRequestEntity requestEntity = new StringRequestEntity(
properties.toString(),
"application/pdf",
"UTF-8");
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.