automation
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
Still trying to access the list of selected docs in sections : the action category for my button is CURRENT_SELECTION_SECTIONS_LIST the “Selection is not empty” has been replaced by a custom EL ...
0 votes
1 answers
4 comments
1975 views
We have been stuck at this for sometime. We have configured our nuxeo Installation to retrieve users from the Sql Server DB. We have modified the following config file. default-sql-directories-bundle.xml After configuring for sql server users we are ...
0 votes
1 answers
1 comments
2445 views
Hi All, I am trying to programmatically log-in from a WebEngine project context. The WebEngine's URL is configured as OpenURL using the OpenUrl extension point of PluggableAuthenticationService([ OpenUrl ]). In the first view, ...
0 votes
3 answers
1 comments
3942 views
hi, i declared the LoginSuccess in the registry, defined an event handler and whatever the associated operation chain (ie : notification.send email), be it asynchronous, i have the following error, even after server restart Failed to handle event ...
0 votes
0 answers
0 comments
1386 views
What is the correct way to catch the user workspace creation event ? Using “Document path starts with /default-domain/UserWorkspaces(/)” matches any workspace under the current user workspace, and i am just not able to write an EL expression in my ...
0 votes
1 answers
0 comments
1527 views
Hi, is there anyway to access the JbpmTaskActionsBean getCurrentDocumentTasks method from an automation chain ? There is no workflow process in studio, just tasks. If i use the create.task service using the “create one task per actor” options, how ...
0 votes
0 answers
0 comments
1531 views
Almost everything is in the title : the UpdateProperty part of my automation chain : ...
individu_bx4:nom=@{CurrentUser["lastName"]}
dc:title=@{CurrentUser["lastName"]} @{CurrentUser["firstName"]} Using a button in the edit form, my document is ...
0 votes
1 answers
5 comments
2729 views
Hello, I'm trying to read the permissions (ACLs) of users/groups on an existing document in the Nuxeo server from a Java Client using ContentAutomation APIs. I've tried reading the document properties through 'Document.Fetch' operation or through ...
0 votes
1 answers
0 comments
2206 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
5632 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
I've looked and haven't found another “answer” that addresses this issue. I've created a custom automation operation with Nuxeo IDE. The custom operation has several classes, singletons, etc. and generates logs. The custom operation will update and ...
0 votes
0 answers
0 comments
1576 views
Hi, I configured a chain like the following: <chain id="minimum_chain"> <operation id="Seam.AddInfoMessage"> <param type="string" name="message">Success.</param> </operation> </chain> Additionally I configured in ...
1 votes
1 answers
2 comments
2361 views
Your documentation doesn't explain how to set input documents for the next operation when using the Nuxeo Shell with the 'automation' namespace. For example, if I want to make in batch mode : connect -u Administrator -p Administrator ...
0 votes
1 answers
0 comments
3542 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
When I try to set a context variable using: Context[“RECIPETYPE”] = “@{Document.type}“; I get the error below. If I use Context[“RECIPETYPE”] = “ThisIsATestString”; everything downstream from this script line works ok. Error log output: 2012-04-09 ...
0 votes
1 answers
1 comments
2808 views
I get the following error when several event handlers are called in succesion: See post: Firing even handlers when structured templates are used to create document? for background here is the error log. 2012-04-06 13:27:57,152 WARN ...
0 votes
1 answers
0 comments
1960 views
How can I get a single event handler/automation chain to fire correctly when multiple documents are created concurrently using a structured template? Background: My application has several documents which are created inside a folderish document via ...
0 votes
0 answers
0 comments
2050 views
I've done the following query two ways: Using parent/child in Studio. Using NXQL query in Studio and get the same error. Here is the NXQL. SELECT * FROM Document WHERE ecm:isCheckedInVersion = 0 AND ecm:parentId = '@{Context[“TRAVELERID”]}' AND ...
0 votes
1 answers
3 comments
2104 views
I'm attempting to implement a stack which will be available during a long running SEAM conversation. I want to be able to backtrack through the lifecycle states of a document and I'm using the stack to store the previous N states as Strings. The ...
0 votes
2 answers
0 comments
2387 views
I have nuxeo DM 5.5 up and running at http://localhost:8080/nuxeo/site/automation I am trying to access Nuxeo EP 5.5 Automation server from Nuxeo Java automation client as under: public static void main(String[] args) throws Exception { ...
0 votes
1 answers
3 comments
4392 views
I want to add a chain of operations in nuxeo automation server, that will edit a document version. I know editing a version does not make sense, but this is the requirement of our client that we must meet. I am able to retrieve all versions of a ...
0 votes
1 answers
2 comments
2093 views
Is there an operation that allow to visualize a page or a tab? I would like to create a chain that first acquires a lock (Document.Lock) and then visualizes the edit tab for the document.
0 votes
1 answers
1 comments
1937 views
May i know the client code for delete a particular file from remote server(nuxeo)through REST API. Please share your views with me! Thanks
0 votes
1 answers
1 comments
3722 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
I am creating a relation between two documents with Services>Create Relation. How do I specify the predicate so both incoming and outgoing relations are created correctly. I have used the String IsBaseOn in the predicate and when the relation is ...
0 votes
2 answers
0 comments
2229 views
Hello, I need validate the creation of documents with unique uid. I need to use a condition on automation chain for verify the uid on documents in the repository but I don´t know how to do that? I have reviewed all operations in studio but I don't ...
0 votes
3 answers
1 comments
3542 views
I am hoping I am missing something obvious.. I have a document lifecycle defined. When a user submits a document, I want to automatically kick off a validation workflow to approve the document to move it to the next step in the lifecyle. I can use ...
0 votes
1 answers
3 comments
3279 views
I have an automation chain that gets a value from a document, sets the context variable, pushes it onto the stack, uses nxql to query a document based on the context variable, sets another context variable with a value from the queried document, ...
0 votes
0 answers
4 comments
4679 views
Hi all, I was trying to adapt the nuxeo studio template for Holiday request and have problem to find the correct syntax for the following: My document has a customised schema which include two properties with “Date” type. In my automation chain I ...
1 votes
5 answers
2 comments
3940 views
Hello, It seems there is a bug in the Content Automation Webservice when I try to set multi-line values. The documentation says that we should use a \ at the end of each line. That's what I'm doing but it doesn't work : the new line character is ...
0 votes
1 answers
2 comments
1985 views
Hi, Is there an automation service allowing to restore a previous version of a document ? By restore , i mean set an older version as the current document. If not , and i want to add an operation , could someone point me on what Nuxeo classes i will ...
0 votes
3 answers
2 comments
3474 views
I have many automation chains (over 50): (I haven't counted them, if it's important I will). I've been trying to add another chain and keep getting the message Unknown chain: xxxxxx in a small yellowish box when it is fired via my User Action. I've ...
0 votes
1 answers
1 comments
1340 views
I'm trying to use call from the Automation service, but I have some problem when the Path of my Document finish with space e.g.: '/default-domain/workspaces/MyWorkspace/MyFolder/MyDocument ' when I call the service, I use : ...
0 votes
3 answers
0 comments
2466 views
Hi I would like to implement an operation to allow me to subscribe a user to an alert. So i am looking for the same behavior than if a go in Document Management - click on a file select Alerts and click on Subscribe Modification. In Java Doc i found ...
0 votes
3 answers
1 comments
3647 views
Hi, I'm inside an automation chain and I need to get the current user's private workspace. The trouble is that user names are in the form: username@domain.com, and the private workspace is named like 'username-domain-com'. How can I write a query ...
0 votes
3 answers
0 comments
2695 views
I was wondering if PHP Automation Client allows ACL requests or not? I need to know all the users with Write Permission on a document and I used following code but no joy! <?php $x=""; $id = "8f488a16-7683-465e-9cce-03016f818622"; //ID of the ...
0 votes
2 answers
1 comments
2536 views
I have no trouble creating a document of type “File” and then attaching an image as a Blob using the Blob.Attach operation. However, I cannot work out how to create a document of type “Picture” with an image attached. The document creation step ...
4 votes
1 answers
4 comments
3645 views
I'm having a heck of a time finding documentation on getting/setting document tags through the automation client. I found the TagServiceImpl but it wants a CoreSession not a ConcreteJavaProxy. Can someone point me in the right direction?
0 votes
5 answers
4 comments
5949 views
We are currently looking for a DMS Solution, but one of our deal breakers is file name enforcement to the point that when a user uploads a file, a dialog should ask them for the variable information of the file name on a folder/directory basis. An ...
0 votes
1 answers
0 comments
1773 views
Is it possible to permanently delete a Document using one of the Rest Automation method. Or can I create/modify a transition to permanently delete the Document instead of putting it in the trash? Thanks
0 votes
1 answers
0 comments
3284 views