cancel
Showing results for 
Search instead for 
Did you mean: 

Calling Alfresco on Cloud image from Web Application

subhadeep
Champ in-the-making
Champ in-the-making
I am using .NET web application to call images from Alfresco on Cloud free version. I am able to retrieve the image id HTTP request. But I want to retrieve by image name folder location calling simply from .NET application. Is there any CMIS url available for calling it by path name or image name or it's only the ID we need to use.

I have checked the documents @ https://www.alfresco.com/develop/cloud

Please share some examples.
1 REPLY 1

jpotts
World-Class Innovator
World-Class Innovator
Old post, but perhaps this answer will help others. When fetching objects from Alfresco in the Cloud you are using the CMIS API. In your case, you are using .NET so you should be able to use the DotCMIS API to perform CRUD functions against folders and documents in the cloud.

I've used OpenCMIS (Java) and cmislib (Python) against Alfresco in the Cloud but never .NET so I am not 100% it will work without modifications. The trick is to get the access token added to the header. Once you can successfully get a session you're looking for the getObjectByPath method.

Jeff