Development


Related Questions
I have a series of unit tests I run in both IntelliJ and from the command line using Maven. These tests populate the VCS and then perform various operations. Randomly, one or the other test will fail. The symptom seems to be that data committed in ...
  0 votes
  0 answers
  0 comments
  1498 views

We are upgrading NP from 8.3 to 9.1, and when I run the very same REST-API test-setup (i.e. code/machine/Java/etc) - which works fine against an NP8.3 - against an NP9.1, the call to the NP9.1 fails with “java.lang.IllegalStateException: Already ...
  0 votes
  2 answers
  2 comments
  3747 views

I have noticed that SQLSession.getEntry is hitting the directory cache while SQLSession.hasEntry appears to be hitting the database with a query. Is this by design and if so why isn't hasEntry also using the cache?
  1 votes
  1 answers
  0 comments
  1524 views

Hi guy, where i can find info/guidance about createa new document type or modify available document types window. all this without studio. thanks
  0 votes
  0 answers
  0 comments
  1715 views

Hello, when i upload a document into a folder the “modified date” of the folder doesn't change! … Is there any parameter to configure this? Thanks in advance.
  0 votes
  1 answers
  0 comments
  1451 views

Hi! In Nuxeo 6.0 HF 38 I'm trying to use CurrentDate in NXQL in avanced search or by quering http://nuxeoserver/nuxeo/api/v1/query When I try this, it works: http://nuxeoserver/nuxeo/api/v1/query?query=SELECT * FROM Document WHERE dc:created > ...
  0 votes
  2 answers
  3 comments
  3960 views

I'm trying to modify the nuxeo:lifecycleState via a CMIS statement: curl … \ -F “cmisaction:update” \ -F “changeToken=…” \ -F “propertyId[0]=nuxeo:lifecycleState” \ -F “propertyValue[0]=“approved” \ “https:…” It's not erroring. But it's not changing ...
  0 votes
  1 answers
  0 comments
  1890 views

It seems it is possible to add a facet to a document instance. A facet can hold a reference to a schema. I have various document types whose instances could be associated to a custom schema. How can I manage to achieve that goal (let users add the ...
  1 votes
  0 answers
  0 comments
  2086 views

Hello. I'm new to the platform. I don't have access to Nuxeo Studio. Is there a recipe available with the main steps one would follow to implement a customized lifecycle “by hand”, i.e. in Java and XML? For example, to place a state in between ...
  0 votes
  2 answers
  1 comments
  1841 views

Hi, is there any way to execute a java-action when a document is uploaded into a concrete folder vía WebDAV? For example, in Alfresco ECM is possible to define rules that you can customize and apply to a folder and only are triggered only for that ...
  0 votes
  1 answers
  0 comments
  1666 views

Hi Thomas, After packaging my angular app as nuxeo module and deployed to nuxeo server side, I got nuxeo a REST API issue on user behind CAS connection : OPTIONS http://localhost:8080/nuxeo/json/cmis net::ERR_NAME_NOT_RESOLVED Fetch API cannot load ...
  0 votes
  1 answers
  0 comments
  2034 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
  3953 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
  2220 views

Does anyone know what else needs to be installed for nuxeo-rating to work? I have: 8.10 no hotfixes nuxeo-dam-6.2.3 nuxeo-jsf-ui-8.10.0 nuxeo-web-ui-0.8.0 I've built and installed Activity: https://github.com/nuxeo/nuxeo-activity/tree/8.10-SNAPSHOT ...
  0 votes
  1 answers
  2 comments
  1574 views

Hi, Having created a document with the REST API, I can, on the web interface, generate a docx file rendering, using a docx template associated with this document type. Is it possible to programmatically generate this rendering, and access the docx ...
  0 votes
  1 answers
  0 comments
  2012 views

Hi, After uploading file (JavaScript File) through my service using nuxeo-js-client, I have this error on nuxeo server's document preview and in adobe reader (see attached) : PDF.js v1.5.188 (identifiant de compilation : 0e2d50f) Message : Invalid ...
  0 votes
  2 answers
  1 comments
  2158 views

Hello, I would like to create groups using REST API, but i also need to set values for specific properties but it won't work. API only allows to set value for “groupname”, “grouplabel”, “memberUsers” and “memberGroups”. Is there any way to set ...
  0 votes
  1 answers
  0 comments
  1517 views

Hello, I'am using CMIS protocol (1.1) with AtomPub service document to manage different actions for Alfresco, Nuxeo,… The whole works with Alfresco and Nuxeo 5.8. However, with Nuxeo LTS2015, i have a problem during a CHECKIN after a document ...
  0 votes
  0 answers
  3 comments
  2198 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
  3782 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
  2404 views

Hi, I try to use angular-nuxeo to attach a blob, but I get excute exception. Here is my code : documentUploader(uid: string, file : File): IPromise<Object> { let defer = this.$q.defer(); let options : any = {}; options.operationId = ...
  0 votes
  8 answers
  8 comments
  2334 views

Hello, looking at the APIs for querying a directory, it looks like the ability to search on exact match is supported through org.nuxeo.ecm.directory. My question is: is there an alternate way to query directories? Specifically: say I have a ...
  0 votes
  1 answers
  0 comments
  2382 views

I am writing code to load a dictionary from a CSV. (Have to implement some custom functionality.) I am looping through the CSV and have code to commit every 10,000 rows. I'm using session.createEntry to insert each dictionary entry. Two questions: ...
  0 votes
  0 answers
  0 comments
  1718 views

Hello - I have created an event handler for a scheduled event. The handler will perform a long-running operation. Looking through the Nuxeo code, I see various classes implementing AbstractWork for background processing. My question is: should I ...
  2 votes
  1 answers
  6 comments
  2987 views

Hello folks, I'm using the python nuxeo client library to create a workspace as follows: adminClient = nuxeo.Nuxeo( base_url=URL, auth={ 'username': 'Administrator', 'password': 'Administrator' }) repository = adminClient.repository() wsRoot = ...
  0 votes
  1 answers
  0 comments
  1680 views

Within a Nuxeo 5.8 webengine site, I used to force Http Response to set Content-Disposition to “ inline ” for blob documents. I do it this way : import javax.ws.rs.core.Response; import javax.ws.rs.core.Response.ResponseBuilder; ... Blob ...
  0 votes
  0 answers
  0 comments
  3650 views

Hi there! This questien is connected to question here: https://answers.nuxeo.com/general/q/dd5e7c4e1a5f4a3187eb8196af824ffb/NXQL-Cast-string-column-to-integ I would like to ask why some(not all) of my custom properties in custom types can't be ...
  0 votes
  0 answers
  1 comments
  1769 views

Hi, I have an operation that returns some data of a document. I call this operation through Rest API to use it in another application. I want the operation to return the document type, but translated to the language of the user (File -> ...
  0 votes
  2 answers
  0 comments
  2607 views

I have an advanced search content view where i want to display a field if condition is true. The mode of the widget is definet by “#{currentUser.isMemberOf('KartelistDPB') ? 'edit' : 'hidden'}“. The same expression is evaluated in forms but not in ...
  3 votes
  0 answers
  0 comments
  1816 views

I want to remove this searches but i can not find any extension which removes this action in nuxeo 7.1
  1 votes
  0 answers
  0 comments
  1604 views