275 questions
0
votes
2
answers
83
views
Why are the deleted documents end up in version2Store, in addition to archiveStore after deletion in Alfresco 5.2.0?
Pardon me if I do not understand the lifecycle of documents in Alfresco. This client is still using Alfresco 5.2.0 Community Edition. The requirement is to delete all the documents that meets a ...
0
votes
1
answer
76
views
Java OpenCMIS Alfresco custom property ordered query
I have a problem putting together an ordered query in Java integrated with Alfresco. I'm using OpenCMIS to integrate with Alfresco and I would like to perform a query similar to this
String query = &...
0
votes
1
answer
58
views
handleRequest of CmisWebServicesServlet is not getting called and it is giving 'Cannot get CSRF manager!' error
Actually we have extended Open CMIS code for our product and recently we have upgraded our product for Tomcat 10. When we call RepositoryService it is giving below error:
java.base/java.lang....
1
vote
0
answers
457
views
Problem of dependency from OpenCMIS and other libs
in a project I am having a dependency problem that is driving me crazy.
We are talking about a Maven project, which has several modules
WebModulo.war
DAO.jar
RESTModule.war
EAR
otherModule
REST ...
1
vote
1
answer
291
views
OpenCMIS searching for all Documents
I'm trying to do findAllByName functionality through OpenCMIS over an Alfresco DMS. Basically it's supposed to find all Documents with a certain name.
Currently I've tried to do a recursive search, ...
1
vote
1
answer
111
views
Running MVN INSTALL with OPENCMIS
I´m trying to set up the OpenCMIS InMemory Repository following the instructions from Apache but I keep getting the following error when running the Maven command mvn clean install -Dmaven.test.skip=...
0
votes
1
answer
541
views
CmisObjectNotFoundException : Repository does not exist
Using a CMISTestClient, I am trying to connect with documentum repository. There are no exceptions at weblogic server logs(having server at localhost, where ear is deployed) but my standalone client ...
0
votes
1
answer
147
views
How to create parent/child relation model in ALfresco [closed]
I want to create two model in alfresco having parent and child relation. From child model, i want to access all the property of parent model.
0
votes
1
answer
151
views
getContentURL method for fetching contents for OpenCmis not working
I am new to opencmis client. My requirement is to get the urls for the uploaded documents through opencmis client. I am basically trying to fetch the urls by the following code:
Document document= (...
0
votes
1
answer
525
views
Get opencmis documents by query with all properties without content stream
At the moment I'm getting Alfresco documents by queries like that:
select cmis:objectId from cmis:document ...
then I get the document itself by the following code:
String objectId = qresult....
0
votes
1
answer
207
views
CmisUnauthorizedException - connecting to sharepoint
I am using CMIS to connect with SharePoint. I am getting Unauthorized exception while creating session in SharePoint, So I couldn't upload the document in SharePoint. I am using NTML authentication ...
1
vote
2
answers
775
views
Unable to Unlock Alfresco Document using CMIS
I'm using CMIS to make changes to alfresco document, I need to add new aspect to document, but I'm facing:
org.apache.chemistry.opencmis.commons.exceptions.CmisUpdateConflictException: Update ...
0
votes
0
answers
1k
views
How to return multiple InputStream objects in rest API response?
I have one rest API developed in Java SpringBoot in which I am able to single InputStream object in a response using following code.
public ResponseEntity<StreamingResponseBody> export(request) ...
2
votes
0
answers
251
views
CmisObjectNotFoundException on getRootFolder()
I'm getting CMISNotFoundException while accessing the root folder even though i already have many documents uploaded to the repository.I'm able to fetch the repository id but getRootFolder throws ...
0
votes
1
answer
287
views
Alfresco aspect secondaryType
I have a probleme with openCmis with Alfresco in Java.
I try to add a secondaryType "abc:aspectCustom" to my document like we can see in this code :
props.put(PropertyIds.OBJECT_TYPE_ID, BaseTypeId....