09-22-2011 01:15 PM
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?
09-22-2011 03:38 PM
Today there's no operation to tag a document. You could easily write one though, that would call the underlying TagService.
Operations available in Nuxeo 5.4.2 are listed at http://explorer.nuxeo.org/nuxeo/site/distribution/Nuxeo%20DM-5.4.2/listOperations
09-22-2011 02:08 PM
Woops, that ConcreteJavaProxy should be org.nuxeo.ecm.automation.client.jaxrs.spi.DefaultSession. The ConcreteJavaProxy is the jruby wrapper class.
09-22-2011 03:38 PM
Today there's no operation to tag a document. You could easily write one though, that would call the underlying TagService.
Operations available in Nuxeo 5.4.2 are listed at http://explorer.nuxeo.org/nuxeo/site/distribution/Nuxeo%20DM-5.4.2/listOperations
09-22-2011 04:11 PM
Based on http
09-23-2011 12:33 PM
If you code through Automation Client then you don't have access to all the Nuxeo APIs, only the Automation ones. If you want to code using all the Nuxeo APIs then you have to code server-side, by writing a new service or a new Operation.
09-16-2013 06:01 AM
in the meantime has been implemented tagging through automation client? Thanks!
10-14-2014 05:27 PM
Hi,
In the last comment, maumig mention an implementation of tagging through automation client... can you give me hints on how this is done?
Thanks
Christian
10-27-2014 06:40 AM
Hi,
OK I did it in a new operation
@Operation(id=SetDocumentTag.ID, category=Constants.CAT_DOCUMENT, label="SetDocumentTag", description="") public class SetDocumentTag { public static final String ID = "SetDocumentTag"; private static final Log log = LogFactory.getLog(SetDocumentTag.class);
@Context
protected CoreSession session;
@Param(name = "label", required = true)
protected String label;
@Param(name = "username", required = true)
protected String username;
@OperationMethod
public void run(DocumentModel input) throws Exception {
TagService service = Framework.getLocalService(TagService.class);
String docId = input.getId();
log.error("SetDocumentTag> docId=" + docId + " tag=" + label + " username=" + username);
service.tag(session, docId, label, username);
session.save();
}
}
Christian
03-30-2015 03:45 AM
This one s a bit late :
list / search tags : select * from tags (where tag:label like '%odontolo%')
you can then retrieve the UUID of the Tag
list tagged documents : select * from Tagging where relation:target = '*UUID_OF_THE_TAG*'
Create a Tagging document (inherits from Relation) with
**relation:source**
being the UUID of your document,
**relation:target**
the UUID of the Tag and
**ecm:path**
the label of the tag
Note that both are HiddenInNavigation, the ecm:path is also used for storing the tag label and it causes some problems when querying through the UI (advanced search queries can lead to "Illegal relative path with null node")
02-15-2016 06:07 AM
much better since 7.1
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.