java
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
866 views
Dears we have Exception in log when we upload file to document it's -> 2020-09-06T16:47:45,859 WARN [Nuxeo-Work-default-19:17460349641836252.1912412092] [org.nuxeo.ecm.core.storage.FulltextExtractorWork] Could not extract fulltext of file ...
0 votes
1 answers
0 comments
1757 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 there. I noticed there aren't any official Jessie (latest Debian stable) packages (yet) in apt.nuxeo.org. That should'nt be much of a problem, as Wheezy still works perfectly and isn't too old. But, it looks like Nuxeo 7.2 demands Java 8, which ...
0 votes
2 answers
3 comments
2492 views
I'm using Java Automation Client to upload my files but it seems to be very slow. I tried to increase the JVM Heap size of my server but it still the same. Does nuxeo have a configuration for handling file uploads in the Automation Client? Thanks
0 votes
0 answers
1 comments
2432 views
I have a property that can be multivalue and each value is a complex property that contains two string subproperty. Can someone give me an example of java code to set this type of property?
0 votes
1 answers
0 comments
5855 views
hi, i am developing liferay and nuxeo base system. where require 1) to show my task list on liferay side and also 2) when user click on task then task open in liferay side. So i have to get all task for user through java client not by gadget . Can ...
0 votes
0 answers
0 comments
1785 views
Hi All, Just wondering if there's been a change in the nuxeoctl startup script between these two Nuxeo versions, specifically in the way it checks for the presence of a JRE. I'm on an OpenIndiana system. Oracle Java 7u67 is in the launching user's ...
0 votes
2 answers
1 comments
2235 views
Hi, I looked into the php example, and there I can download files or blobs, except the txt files, anyway I can download files. http://doc.nuxeo.com/display/public/NXDOC/PHP+Automation+Client So, I mean, why can't we do this with Java? Thanks in ...
0 votes
1 answers
0 comments
2561 views
I am trying to download all the files (txt, html, pdf, doc, xls, …) from nuxeo. To achieve this, I have found “Java automation client”. (Hope I have made a good choice?) My starting point is the example from the java automation client documentation: ...
0 votes
1 answers
3 comments
5464 views
I'm trying to invoke Nuxeo Services by local API, but I obtain NullPointerException. I see in the documentation , The services can be local (inside the same JVM) and most of them can be Also called remotely via RMI if your target Application Server ...
0 votes
1 answers
0 comments
2379 views
Hi all, when I try to tag a document by following code, I obtain a nullpointerexception. Some suggest about how to use local java api? Thanks. I have a jsp with this code: **<% LocalSessionFactory lsf = new LocalSessionFactory(); CoreSession ...
0 votes
2 answers
1 comments
2244 views
This post is kind of a copy paste from this resource . If you're running nuxeo platform over https, you may face this exception the first time you try HttpAutomationClient, following the example provided in REST API documentation : ...
2 votes
0 answers
2 comments
3014 views
Hi, I'm using Nuxeo DM 5.5, LibreOffice 3.5.4.2 with the LibreOffice libreoffice-java-common packages installed, and Firefox 17.0 on Ubuntu 12.04 with OpenJDK 6 update 24. I've configured an HTTPS reverse proxy in line with the official Nuxeo ...
2 votes
1 answers
4 comments
6674 views
I want to programatically populate Complex Multivalued Fields using Nuxeo Coresession object. How do we access the subfield in the below case? Questions Question1 Answer1 Question2 Answer2
0 votes
1 answers
2 comments
6369 views
I would like to use a documentsListsManager inside a PageProvider class. How can I achieve it ? Of course, this way does not work: @In(create = true)
protected transient DocumentsListsManager documentsListsManager;
0 votes
1 answers
1 comments
1280 views
Can anyone explain in simple words what is the purpose of a DocumentTranslationMap ? http://community.nuxeo.com/api/nuxeo/release-5.6/javadoc/org/nuxeo/ecm/core/io/DocumentTranslationMap.html
0 votes
0 answers
0 comments
1353 views
There are two documents with a schema's field: <xs:element name="link" type="nxs:stringList" /> The field is updated by widget: <widget name="link_path_widget" type="select_path_tree"> This works very well but there is only created one ...
0 votes
2 answers
2 comments
1889 views
I am using java 1.5 and postresql 8.3 as backaend and flex as Front end server jboss4.2.3.ga and nuxeo5.3.1 now my application run successfully but now i upgrade java as 1.6 i cannot run my application server error are ERROR ...
-1 votes
1 answers
5 comments
2039 views
While coreSession.query() works fine for “SELECT * FROM Document WHERE … order by ecm:pos " i do not find a way to get this ecm:pos value. Unfortunately, it is not one of the getters of DocumentModel. The simple trial with “SELECT * , ecm:pos FROM” ...
0 votes
1 answers
2 comments
2671 views
Hi all, I have created a seam validator: public void validateSAPNumber(FacesContext context, UIComponent component, Object value) { String messageString = null; Integer size = 1; String SAPNumber = (String) value; String DocId = ...
0 votes
1 answers
0 comments
2875 views
Hi Gentlement, We have create a java client to interface Nuxeo via HttpAutomationClient. All the operations we have developed work fine, but we have noted that the client do not close the http connection after the client.shutdown(); We have noted ...
0 votes
1 answers
0 comments
1916 views
Is there a listing, for Nuxeo Java annotations, similar to referenced the seam annotation page ?
0 votes
1 answers
3 comments
1460 views
I want to create a context variable using Studio automation operation and read/write them with a Java class generated via the IDE. Also, I would like to create an operation context variable in JAVA and read/write them in a Studio automation ...
0 votes
1 answers
2 comments
27144 views
Hello, I was trying to follow the upload example listed here (http://doc.nuxeo.com/display/NXDOC/Using+Nuxeo+Automation+Client) and for the life of me I can not get the file to attach. I can get the document created, but when I browse to the created ...
0 votes
1 answers
1 comments
4649 views
I am using java content automation to upload and download files as blobs as shown in the link below. http://doc.nuxeo.com/display/NXDOC/Using+Nuxeo+Automation+Client The default dublincore schema is associated with each document. I want to retireve ...
0 votes
2 answers
0 comments
4873 views