java-client


Related Questions
How can I add adapters in my request to Nuxeo servers using Nuxeo java client (v3.2.0) I want to fetch the blob converted as pdf. From the REST-API I can make calls like: GET ...
  0 votes
  1 answers
  0 comments
  1117 views

I am uploading docx, xlsx(excel files) and pdfs to nuxeo and able to see them in Nuxeo UI correctly. Using the java client's method streamBlobByPath I am able to fetch the blob of document in my custom code. ...
  0 votes
  0 answers
  3 comments
  2056 views

We have created some plugins and deploy those plugins on nuxeo local server. How to debug the plugins deployed on nuxeo local server with debugger points
  0 votes
  2 answers
  2 comments
  2104 views

I have created some plugins which i have deployed on nuxeo local server. I have created another simple spring boot project which will call rest api like String createDocumentUrl=“http://localhost:8081/nuxeo/api/v1/document”; return ...
  0 votes
  1 answers
  0 comments
  929 views

Hi, I succeeded to add a scheduler using org.nuxeo.ecm.core.scheduler.SchedulerService but the added configuration are lost after nuxeo restarting. So i need to know how to dynamically configure the scheduler service and persist that configuration ? ...
  0 votes
  2 answers
  3 comments
  1140 views

documents = nuxeoClient.repository().query(“SELECT * FROM Document WHERE ecm:path= ? AND ecm:isTrashed = 1”, “1”, “50”,null,null,null, path); This is the code I'm using to get the list of trashed documents of a particular path but this is returning ...
  0 votes
  1 answers
  0 comments
  843 views

Hi, How do I trash a document before it is deleted using nuxeo java client. I have used nuxeoClient.repository().deleteDocument(docId); method which delets the document permanently but I wanted to trash the document first before deleting ...
  0 votes
  1 answers
  0 comments
  1026 views

Hello i want to make archiving system using nuxeo and i want add hierarchy of custom Document Type as MainReport have child xReport , yReport and adding new properties for xReport
  0 votes
  1 answers
  1 comments
  854 views

I want to sort my documents by type. For example: folder 1,folder 2,folder 3,….,folder n,document 1,document 2,document 3,……document n I have a query like this : this.nuxeoClient.repository().query("SELECT * FROM Document WHERE ecm:parentId= ?", ...
  1 votes
  1 answers
  1 comments
  1169 views

Hello, Is there a method to get the subfolder list of a folder by its id ? I found the repository().fetchChildrenById(id) method but it returns all documents (documents and folders). In the UI, nuxeo is calling this url when we disclose a node in ...
  0 votes
  2 answers
  0 comments
  1383 views

I tried to get a Nuxeo Platform Core Session with this way: CoreSession session = WebEngine.getActiveContext().getCoreSession(); But it isn't working. LogServer: java.lang.IllegalStateException: Runtime not initialized at ...
  0 votes
  0 answers
  0 comments
  1274 views

I tried to make a call HTTP using a request to complete a task :HOST/nuxeo/api/v1/task/{taskId}/{action} adding the values of two parameters(taskId,action) But I have an exception 500 What does it mean ?
  0 votes
  1 answers
  0 comments
  1081 views

Hello, Which version of Nuxeo Java Client should I use for a Java 6 application ? Thanks.
  0 votes
  1 answers
  1 comments
  1129 views

I am using nuxeo 10.1 authentication using LDAP. I want to preview and download files from nuxeo using my java application created in portal. I am using document url : ...
  0 votes
  0 answers
  0 comments
  1381 views

Hello, I am looking for code samples or examples of using TokenAuthInterceptor instead of BasicAuthInterceptor. NuxeoClient nuxeoClient = new NuxeoClient.Builder() .url(url) .authentication("Administrator", "Administrator") .connect(); Thank you.
  0 votes
  2 answers
  1 comments
  1397 views