Hi ,
I'm trying to test the rest services with the demo cloud site
http://td-ecd.eastus.cloudapp.azure.com:7072/D2/#d2 .
I'm able to get results from this rest api
http://td-ecd.eastus.cloudapp.azure.com:7072/dctm-rest/repositories/corp
but when I use any of the other APIs from the repository response (e.g.
http://td-ecd.eastus.cloudapp.azure.com:7072/dctm-rest/repositories/corp/search)I get the following error response
{
"status": 500,
"code": "E_INTERNAL_SERVER_ERROR",
"message": "An internal server error occurs.",
"details": "(DFC_BOF_CLASS_CACHE_INIT_ERROR) [DFC_BOF_CLASS_CACHE_INIT_ERROR] Failed to initialize class cache.",
"id": "1e6bab32-35f9-4342-acb8-7449de71016b"
}
My goal is to test the client application to browse the list of folders/files in a repository and download specific files (filtering by type or any other metadata)
Thanks