cancel
Showing results for 
Search instead for 
Did you mean: 

Issue in object lookup after upgrade to alfresco 5.2

udayakumar_p
Confirmed Champ
Confirmed Champ

Found a strange issue after upgrading alfresco from 5.0 to 5.2.

The following code was working fine in alfresco 5.0

session.getObjectByPath("abc/xyz/"); // this code returns the folder object for a folder named 'xyz'.

The below code also works fine, same as above code, in 5.0

session.getObjectByPath("abc/xyz");

Whether there is a leading / or not, the code returns the folder object.

But in 5.2, the code does not return the folder object if there is a leading /.

i.e. the following code does not return the folder.

session.getObjectByPath("abc/xyz/"); 

The code works fine without a leading /.

2 REPLIES 2

afaust
Legendary Innovator
Legendary Innovator

It looks like your are using CMIS. Which client API are you using? What CMIS endpoint do you connect to?

Hi,

We are using apache's opencmis