java-client
Hi, I want to merges blobs but when I try `nuxeoClient.operation('Blob.ConcatenatePDFs') .params({ filename: fileName }) .input(blobList) .execute() ` , I get ...
0 votes
5 answers
4 comments
4629 views
I am trying to assign a permanent permission to a group but in nuxeo permission is not working and it is not assigning to any user. My Code is: String url = “http://localhost:8080/nuxeo”; NuxeoClient nuxeoClient = new NuxeoClient(url, ...
0 votes
1 answers
5 comments
2215 views
Hi All, We have a scenario where we need to implement the following use case. Start the workflow and call the external asynchronous REST service (potentially this service will place message on MQ). Pause on that step to be notified to continue to ...
0 votes
0 answers
0 comments
1491 views
Hello,I am trying to get the properties of a document using Nuxeo Java client.I am able to get the document,but when i use the methods get() or getPropertyValue() it doesn't return the value. Can someone help me?
0 votes
1 answers
1 comments
1553 views
Hi Can someone explain me how to differentiate between a user that has an account and a user that does not have an account in Nuxeo java client? I create a NuxeoClient instance using: NuxeoClient nuxeoClient = new NuxeoClient(URL, userName, ...
0 votes
1 answers
0 comments
1578 views
Hi all :) Can anyone please explain me why is used Nuxeo-java-client?
0 votes
1 answers
0 comments
1393 views
I am uploading some files in a tree structure, I need to verify if the file already exists in the same folder. If it is the same file (with the same content) then do nothing. If it is a different file then save a new version. How can I compare those ...
0 votes
1 answers
3 comments
2010 views
Hi there. I'm trying to create a document with an optional (dynamic) Facet, but it's not working. I'm using java-client 1.0 with Nuxeo 7.10 HF-24. My code is as follows: Document doc = new Document(name, "MyType");
doc.set("dc:title", "Doc ...
1 votes
2 answers
4 comments
2938 views
Hi, Java Client Library 2.3 for the Nuxeo Platform REST APIs documentation about users/groups have reference only to CRUD operations of both entities and ADD user to group operation, but there's not references about rest of operations like 'remove ...
1 votes
1 answers
0 comments
1796 views
Hello everyone I have the following senary: I am migrating a data / files (blob) from a SQL Server database to nuxeo. These files should be in the following structure: --- Folder (document type) --- folder (year of document) --- file (attached ...
0 votes
0 answers
1 comments
4059 views
Hello everyone, I am having the following problem: When I add the file it gives an exception of PropertyNotFoundException, I understand that something is missing, but I do not know who … **Error in the second line Blob fileBlob = new ...
0 votes
0 answers
2 comments
2310 views
Hello everyone, Is it possible to upload a file by just blob or byte [] instead of the file itself ??? See the example below: private Document exportNuxeo() throws IOException { Document doc = new Document("file", "File"); doc.set("dc:title", ...
0 votes
1 answers
6 comments
3869 views
public static void main(String[] args) throws Exception {
MigracaoNuxeoRepositorio migracaoNuxeoRepositorio = new MigracaoNuxeoRepositorio();
migracaoNuxeoRepositorio.exportNuxeo();
}
private Document exportNuxeo() throws IOException {
Document ...
0 votes
3 answers
3 comments
2499 views
Hey, I'm having issues with some requests using Java Client. I have a user who has a workspace with more than 50 children but when i request it ( folder.fetchChildren()) i only get 50 results. I tried looking for answers but found none regarding ...
0 votes
0 answers
0 comments
1646 views
Hey everyone, I tried opening an issue on git (https://github.com/nuxeo/nuxeo-java-client/issues/10) without success so i thought i would try here. How do you set users password using the java client (using 2.4 SNAPSHOT atm). As said on my git ...
0 votes
1 answers
0 comments
1599 views