Quantcast
Channel: Alfresco Forums - Alfresco API
Viewing all articles
Browse latest Browse all 252

Get CmisObject from Custom model query - EXCEPTION: TransientCmisObject

$
0
0

Hi everyone,

I'm tring to get a CustomModel document serching it from "name"

and i'm getting the following exception:

java.lang.NoClassDefFoundError: org/apache/chemistry/opencmis/client/api/TransientCmisObject

I try with the newest CMIS versions (10, 11 ,13 )

		protected CmisObject searchDocumentByName(String fileName ){String queryString ="select * from kd:doc where "+PropertyIds.NAME+" = '"+fileName+"'";
    	ItemIterable<QueryResult> results = getSession().query(queryString,false); 
		CmisObject checkingDocument =null;for(QueryResult qResult : results){String objectId ="";
    		PropertyData<?> propData = qResult.getPropertyById("cmis:objectId");// Atom Pub bindingif(propData !=null){
    			objectId =(String) propData.getFirstValue();}else{
    			objectId = qResult.getPropertyValueByQueryName("d.cmis:objectId");// Web Services binding}
    		checkingDocument = getSession().getObject(getSession().createObjectId(objectId));}return checkingDocument;}

I'm using the Alfresco Community v5.0.0

5.1.x

Viewing all articles
Browse latest Browse all 252

Trending Articles