we created a record in 3rd party credential to Alfresco Cloud instance (username

we created a record in 3rd party credential to Alfresco Cloud instance (username and password key names) and still keep getting the below error when invoking the CMIS connector function.
Any hints on error root cause?
error
===
alfresco: [title:Credential key not defined,message:You do not have credentials configured for this system [key=alfrescocloud]. Please navigate to the Third-Party Credentials page in your Settings and provide credentials for this system.

rule
===
=with(
local!cmisResult: a!cmiGetRepoInfo(
scsExternalSystemKey: "alfrescocloud",
usePerUserCredentials: true,
atomPubUrl: "cmis.alfresco.com/cmisatom",
repositoryId: "66fc60ae-bc75-4763-a344-5b315ebb8b69"
),
if(local!cmisResult.success,
local!cmisResult.result,
local!cmisResult.error
)
)...

OriginalPostID-133291

OriginalPostID-133291

  Discussion posts and replies are publicly visible

Parents
  • This error can happen due to many reasons.
    Firstly, you are specifying in your code to use perUserCredentials, which means that the user as whome this code is executed MUST have the credentials configured in THEIR third party store. Is this done? If you are using system wide credentials, then set this to false.
    Secondly, I would recommend using CMISWOrkbench to check the connectivity to make sure you are able to connect to Alfresco without any issues.
    Thirdly, check the application server log. There is a possibility to see additional errors that might provide further details
    Is the RepoId correct? (The default one for Alfresco is -default- )
Reply
  • This error can happen due to many reasons.
    Firstly, you are specifying in your code to use perUserCredentials, which means that the user as whome this code is executed MUST have the credentials configured in THEIR third party store. Is this done? If you are using system wide credentials, then set this to false.
    Secondly, I would recommend using CMISWOrkbench to check the connectivity to make sure you are able to connect to Alfresco without any issues.
    Thirdly, check the application server log. There is a possibility to see additional errors that might provide further details
    Is the RepoId correct? (The default one for Alfresco is -default- )
Children
No Data