nuxeo-client


Related Questions
Hi, I am trying to upload a file using nuxeo client. Initialy I have created the client like below var client = new nuxeo.Client({ baseURL: nuxeo_url, username: cms_user, password: cms_password }); client.schemas(['dublincore', 'file']); For ...
  0 votes
  0 answers
  0 comments
  2307 views

Using the Nuxeo JS Client through Node, and using the Portal authentication, I've noticed something I'm unsure is intended or not. When one configures a new auth secret key, there's a time expiration . Looking at the code that checks the token ...
  0 votes
  1 answers
  0 comments
  2815 views

I am attempting to do a document.copy on an existing document, with the assumption that if the directories I am copying into may or may not exist. What would be a good way to achieve that? client = new nuxeo.Client(nuxeoParams) client.connect() ...
  1 votes
  1 answers
  0 comments
  1748 views

Hello, At the end of this documentation article there is a “Embed Nuxeo's services inside your application” scenario, where the app integrating nuxeo is simply using “nuxeo-client” and “nuxeo-services” (screen capture at the end of the page). This ...
  0 votes
  0 answers
  0 comments
  1611 views

Hello, I am trying to execute the example on Nuxeo Automation Client in Java given on the link http://doc.nuxeo.com/display/NXDOC/Using+Nuxeo+Automation+Client. As described in the instructions, I'm using the resources that follow: ...
  0 votes
  1 answers
  0 comments
  5533 views

We have nuxeo queries which come from a constants file. A sample query is listed below. public static final String GET_FILES_BY_PARENT =“SELECT * FROM File WHERE ecm:parentId = ?” OR public static final String GET_FILES_BY_PARENT =“SELECT * FROM ...
  0 votes
  1 answers
  0 comments
  2138 views

In nuxeo 5.4.2 I was able to get document properties like dc:description by this query: Documents docs = (Documents) session.newRequest("Document.Query").set( "query", "SELECT * FROM Document").execute(); I updated the nuxeo version to 5.5 and thus ...
  0 votes
  1 answers
  1 comments
  4301 views