java-client


Related Questions
Hello, I have this NXQL query to perform : SELECT * FROM Document WHERE custom:attribute = 'Ø600' You can notice the special character Ø. It's working fine when I use NXQL Search in Web UI. It's not working with Repository.query method in Java ...
  0 votes
  0 answers
  0 comments
  540 views

Hello, I finally succeeded to use Keycloak as a identity provider for my Nuxeo using the openid package. I can now connect using JWT Token generated by Keycloak and get all my user infos even groups ! Now I am trying to use Nuxeo Java Client to do ...
  0 votes
  1 answers
  2 comments
  628 views

Hello, I see that a new version of nuxeo java client is released : 3.12.0 . But I can't find it in the repository nuxeo . Do you have an idea when it will be available ? Regards.
  0 votes
  0 answers
  0 comments
  546 views

Hey Guys, I would like to check whether a user is external or not, right now fetching the user there doesn't seem to be an easy way to check whether the user is external or not from the User object. Are there any ways to do this with the Java client?
  0 votes
  1 answers
  0 comments
  776 views

I've written a few short example apps tailored to my needs using Java client 3.6. Now it's time to integrate all of this in the real application. If I want to deliver Nuxeo security, I have to access Nuxeo as the logged in user. So my best guess so ...
  0 votes
  1 answers
  0 comments
  654 views

Hi! I'm coding an application that stores documents in Nuxeo using Java API. I figured out how to create additional versions of a document through doc.setPropertyValue("file:content", batchUpload.getBatchBlob()); doc = ...
  0 votes
  2 answers
  0 comments
  762 views

how to upload file into nuxeo using spring boot rest api http://localhost:8080/nuxeo
  0 votes
  1 answers
  0 comments
  953 views

Hello, I am trying to know if a document is a version, but Java Client doesn't retrieve that information about a document. When I use the “fetchDocumentById” method, I get a “Document” object, but I have no properties to know if it is a version or ...
  0 votes
  2 answers
  5 comments
  1173 views

Hello, I have created a custom authentication with a JWT token in nuxeo for both, WebUI and Rest API. For the second one, I am using Java Client SDK 3.2. The WebUI authentication works perfectly, but in the Rest API the behaviour is a little ...
  0 votes
  1 answers
  0 comments
  1258 views

Hello, I am trying to use the java api to create a document with attached files. I saw the examples in the documentation and it's working fine. Now I want to try my own method : one call to create the document and attach the files :) ...
  0 votes
  0 answers
  0 comments
  1165 views

Hello, I redefined a slot which already exists in Nuxeo web ui (like for example the tab view) while putting priority = 1 in the “nuxeo-slot-content”. I manage to see my modifications by opening a web session ui but if I open a new ognlet (with the ...
  0 votes
  1 answers
  1 comments
  1257 views

Hi , I don"t want to use the nuxeo studio to configure the schema , to create new document type , to create new permission , to create new role and manage multi tenant concept above all i want to do using java client sdk. please help me in this ...
  0 votes
  1 answers
  0 comments
  1126 views

Hi Nuxeo i was trying to get the member of the group but it is not working it is returning null in all cases code is Group group = new Group(); group.setGroupName(groupRequest.GroupName); group.setGroupLabel(groupRequest.GroupLable); ...
  0 votes
  1 answers
  1 comments
  951 views

Hello, Is there a way to not list the documents with the facet “HiddenInNavigation” in the result of nxql. Scenario: 1- Add the “HiddenInNavigation” facet dynamically (via a operation which calls the 'document.addfacet' method). 2- search via the ...
  0 votes
  1 answers
  1 comments
  1305 views

<schema>fileTags</schema> <idField>id</idField> <table>fileTags</table> <dataSource>java:/nxsqldirectory</dataSource> <dataFile>directories/nature.csv</dataFile> ...
  0 votes
  1 answers
  0 comments
  1038 views

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
  1106 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
  2045 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
  2092 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
  917 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
  1130 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
  830 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
  1013 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
  845 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
  1161 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
  1374 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
  1264 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
  1069 views

Hello, Which version of Nuxeo Java Client should I use for a Java 6 application ? Thanks.
  0 votes
  1 answers
  1 comments
  1120 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
  1372 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
  1387 views