automation


Related Questions
Hello, I am trying to use Python to POST data to the Nuxeo Automation API. Unfortunately I am unable to compose the “multipart/related” portion of the message correctly – I always receive the message “Failed to parse multipart request” with cause ...
  0 votes
  1 answers
  0 comments
  6015 views

Hi I am trying to retrieve all possible values for subjects trough REST API (even if the subject is not used in any document) Here is the POST request that I am sending to URL http://localhost:8080/nuxeo/site/automation/Document.Query HTTP headers: ...
  1 votes
  1 answers
  0 comments
  3000 views

This is an old topic, I've seen that there was a proposal in 2011 to implement a .net version of the automation api : http://forum.nuxeo.com/index.php?t=rview&goto=19312&th=4861#msg_19312 Is there anynews on this topic ? Do you have solution ...
  0 votes
  0 answers
  0 comments
  2381 views

Hello, I use the automation API in javascript and I have to upload a file. It works well with browsers that support XMLHttpRequest Level 2 but not with others as IE 8. In this case, I use an iframe … and I have this: Request `Request URL: ...
  0 votes
  0 answers
  0 comments
  3770 views

Hi, I use nuxeo 5.5 with client automation. So i use client automation operation to create or update documents I want to automatically create a major version for each modificated file document (extends file). How can i do it ? Have i to create a ...
  0 votes
  1 answers
  0 comments
  1999 views

I'm attempting to retrieve the image off of a Image document using the document url but have been unsuccessful. I've different variations of the example here but I continuously receive nothing. I know the host is correct, as I've been able to ...
  1 votes
  1 answers
  0 comments
  1986 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 created a new operation through Nuxeo IDE with Parameters with Nuxeo Studio as following: @Operation(id = MyOperation.ID, category = Constants.CAT_SERVICES, label = "My Operation", description = "") public class MyOperation { public static ...
  0 votes
  1 answers
  0 comments
  1876 views

Hi, I would like to add string into a property defined into a document type without new operation definition. We can't easily add the item as: the object returned by Document.getProperty(“mySchema:myField”) is a String[] the set property operation ...
  1 votes
  1 answers
  0 comments
  4951 views

hi @ all, I'm tring to add extra data to “File” core DocumentType. To achive this i have created a schema with extra informations. like: <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" ...
  2 votes
  4 answers
  9 comments
  4410 views

I have a problem with an automation chain that I want to create. This automation chain is created in order to find documents in section by using specifcs right access of a login passed in parameters. It must do following steps : get 2 parameters : 1 ...
  0 votes
  2 answers
  1 comments
  5087 views

Trying to backport the RunOperationOnList automation operation to 5.4.2, i m meeting a casting problem : for (Object value : (Collection<?>) ctx.get(listName)) raises a Ljava.lang.String; cannot be cast to java.util.Collection Exception. it is ...
  0 votes
  3 answers
  0 comments
  1791 views

Hi at all, I have a problem with nuxeo automation client used for adding new documents… When i add new documents with blob attached (like in the example: http://doc.nuxeo.com/display/NXDOC/Using+Nuxeo+Automation+Client ) i can't see new documents ...
  0 votes
  1 answers
  2 comments
  2254 views

Hi @ all, I'm tring to create a document with name like “abc / 2323” with following code: nuxeosession.newRequest("Document.Create").setInput(new PathRef(pathtoworkspace)).set("type", "File").set("name", namewithslash).set("properties", ...
  0 votes
  0 answers
  0 comments
  2476 views

Hi, I have a problem with my automation chain I defined in Nuxeo Studio. The automation chain is bound to an event handler which react on the “Document Created” event. The automation chain should do the following: If a document is created with a ...
  0 votes
  2 answers
  1 comments
  6005 views