I want to implement documentum cmis restful api with android. So where i can get all the materialsand learn about it . I am very new to this and want to understand documentum and cmis restful api. So that i can integrate with android.
Documentum cmis restful integration with android?
174 Views Asked by Ashish yadav At
2
There are 2 best solutions below
0
Nicolas Raoul
On
You can use the OpenCMIS library on Android.
I is the standard way to interact with CMIS repositories (including Documentum) in the Java world.
The official documentation has very useful samples that will get you started quickly: https://chemistry.apache.org/docs/cmis-samples/samples/create-session/index.html
Related Questions in REST
- Query parameter works fine with fastapi application when tested locally but not working when the FastAPI application is deployed on AWS lambda
- Add an http GET/POST entry point to a Django with channels websocket
- Difficulty creating a data pipeline with Fabric Datafactory using REST
- Flutter connection to a local api
- Accessing REST API Status Codes using Azure Data Factory Copy Activity (or similar)?
- Mass Resource deletion in REST
- why when I check endpoint /tasks, an error always appears "error : invalid token" even though I have entered the appropriate token that I got
- How to prevent users from creating custom client apps?
- How to create a REST API with .NET Framework?
- Efficiently Handling Large Number of API Calls with Delphi 10.4 and OmniThreadLibrary
- Put Request throwing 401 [no body] Unauthorized
- Converting img src data to octet-stream
- Implementing Email Verification and Notification System in a Full-Stack Application with React Frontend and Node Backend
- Micronaut - Add Controller from external library
- Moving Template or OVA to Datastore using vCenter API
Related Questions in CMIS
- Alfresco CMIS Query Issue: Retrieving All Users
- Use alfresco ged with laravel
- handleRequest of CmisWebServicesServlet is not getting called and it is giving 'Cannot get CSRF manager!' error
- XML to CMIS returns no data
- Uploading documents to Alfresco CMIS using Python
- How do I redirect to a Cmis folder?
- The problem creates a thumbnail after insertion
- Moving files from a folder to a different folder using PortCMIS (C#)
- Can I use Eureka discovery to discover third-party components?
- CmisObjectNotFoundException : Repository does not exist
- Default mime type icons from Alfresco
- What is Assignable Unit in cmi5 spec?
- Alfresco REST Core API update Version metadatas
- Alfresco REST Core API retrive Version by node-uuid
- Alfresco REST Core API find node by path
Related Questions in DOCUMENTUM
- How to get Renditions System Path in Documentum DFC
- how to Documentum IDfSession with AWS Cognito token
- How to hold multiple values in xCP page?
- Does Documentum D2 provide a Rest API that allows the creation of a Virtual Document using a Life Cycle?
- Where is the SQL trace log
- Where to find logs of DB request
- Documentum 6.7: class not found exception
- How to list docbroaker configured with the docbase?
- user wants to apply a quite complex "User Search Filter" in his LDAP Configuration
- DQL Documentum count with multi values
- When document is imported using Documentum API, the import is successful but the document id is not generated
- Selecting maximum value row using documentum query language (dql)
- Damaged Pdf after setting content from a server response
- Connecting with Documentum using java project
- How can I get document hash from documentum using DQL?
Related Questions in OPENCMIS
- Example of extracting a zip file in memory to CMIS using Java
- handleRequest of CmisWebServicesServlet is not getting called and it is giving 'Cannot get CSRF manager!' error
- Problem of dependency from OpenCMIS and other libs
- OpenCMIS searching for all Documents
- Running MVN INSTALL with OPENCMIS
- CmisObjectNotFoundException : Repository does not exist
- How to create parent/child relation model in ALfresco
- getContentURL method for fetching contents for OpenCmis not working
- Get opencmis documents by query with all properties without content stream
- CmisUnauthorizedException - connecting to sharepoint
- Unable to Unlock Alfresco Document using CMIS
- How to return multiple InputStream objects in rest API response?
- CmisObjectNotFoundException on getRootFolder()
- Alfresco aspect secondaryType
- alfresco folder tree opencmis
Related Questions in CMIS-WORKBENCH
- How to create parent/child relation model in ALfresco
- Unable to Unlock Alfresco Document using CMIS
- While querying for custom types file in cmis getting error
- Download document through link from documetum in opencmis
- Documentum cmis restful integration with android?
- CMIS Workbench properties editor shows 3 cmis:name
- how to upload a file using file uploader for cmis workbench using file uploader?
- Exception: CmisConnectionException Cannot access https:\XXXX/CMISWS-Service.wsdl": in CMIS apache chemistry workbench
- OpenCMIS 0.9 - Creating custom property
- Find foldernames (partialy) matching string, mark all files as "read"
- How to create a zip file in CMIS?
- CMIS Browser : Changing the Versionable Value of CMIS:Document type to Yes
- OpenCmis query slower than apache cmis workbench
- Alfresco CMIS query checking for NULL/Blank
- Is there way to pass in object into CmisExtensionElement?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Your starting point for CMIS should be the CMIS specification.
http://docs.oasis-open.org/cmis/CMIS/v1.1/CMIS-v1.1.html
Then the implementation of CMIS specification in Chemistry project https://chemistry.apache.org/
There is a specific Android client for CMIS which can be used in Android Apps. https://chemistry.apache.org/java/download.html
A useful post here https://superuser.com/questions/1044729/how-to-enable-cmis-on-documentum/1044787
Best Regards,
Saurav