java-client


Related Questions
Hi all :) Can anyone please explain me why is used Nuxeo-java-client?
  0 votes
  1 answers
  0 comments
  1318 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
  1922 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
  2858 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
  1725 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
  3958 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
  2223 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
  3783 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
  2407 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
  1570 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
  1534 views

I am trying to assign a permanent permission to a group but I got null pointer exception when begin or end dates are not defined. ACE ace = new ...
  0 votes
  2 answers
  0 comments
  3407 views

Hi, I am using CAS with LDAP for SSO in Nuxeo & My Web-App. But when the User Updates his Email, I want to update the Email of that User Resources. But I am not able to find a way to implement this using Java Automation Client API. Any help ...
  0 votes
  0 answers
  0 comments
  1908 views

Hello, I'm writing a Java migration program from Nuxeo 7.2 to 8.3 When I try to copy a note with multiple lines I get an error because Nuxeo interprets a carriage return in the note content as a new property. Document note = (Document) ...
  0 votes
  1 answers
  0 comments
  2060 views

Hello, I am trying to upload a file using the java automation client : FileBlob blob = (FileBlob) session.getFile(path); session.newRequest(“Blob.Attach”).setHeader(Constants.HEADER_NX_VOIDOP, “true”).setInput(blob) .set("document", ...
  0 votes
  1 answers
  0 comments
  3224 views

Hello, I'm writing a migration Java program from versions 7.x to 8.3 and I can't manage to get a list of all the users, groups and permissions on documents using the java automation client. Any help would be appreciated !
  0 votes
  1 answers
  0 comments
  2701 views

I'm using java-client (same with curl invoking REST-API) to upload some image in a local instance of Nuxeo. The upload goes fine, but after this, I try to get Image thumbnail and a error occurs. The error is caused because the thumbnail, small and ...
  0 votes
  2 answers
  1 comments
  2799 views

Hello, Is someone has already implemented a SEDA connector to send NUXEO documents in an electronic archive software ? Regards
  1 votes
  0 answers
  1 comments
  1833 views

I have a logic in my client java code, which creates a document given the path, where it should reside. My logic checks for non-existing folders in a path. This check is in place to avoid FileNotFound exception and create the hierarchy first before ...
  0 votes
  1 answers
  1 comments
  2492 views

Caused by: /home/ubuntu/nuxeo/nuxeo-features/nuxeo-admin-center/nuxeo-admin-center-analytics/target/antrun/build-main.xml:4: The following error occurred while executing this line: ...
  0 votes
  1 answers
  0 comments
  2430 views

Hi, I'm trying to call the operation “ Tag.Suggestion ” using the java-client. I expected to get a list of tags or something but just get a ClassCastException because the client expect a Map as result but received a ArrayList. My code is NuxeoClient ...
  0 votes
  0 answers
  0 comments
  3469 views

Can anyone tell me how to use the TokenAuthenticationService available for nuxeo. I am new to this and I want use this to generate token for logging in to nuxeo.
  0 votes
  1 answers
  0 comments
  1639 views

I created a simple “Operation” using Nuxeo IDE plugin for Eclipse. All my Operation does is execute a System.out.println statement. I am able to export it to Nuxeo, create a new Automation Chain where I can select my operation. I am able to add that ...
  0 votes
  0 answers
  0 comments
  1610 views