Expand my Community achievements bar.

SOLVED

Invalid recursion selector value 'metadata-schema'

Avatar

Level 2

Hi All,

I am unable to access the metadata schema for the particular asset in AEM 6.2.

I am accessing page as : http://<serverip:4502/<contentpath>/sample.jpg.metadata-schema.json and It through the below error :

Invalid recursion selector value 'metadata-schema'

Cannot serve request to /<contentpath>/sample.jpg.metadata-schema.json in org.apache.sling.servlets.get.DefaultGetServlet

I am not sure if I am missing any configuration here or it is something wrong in my sling mapping.

Please give me any helps!

Thanks.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi annaduraim74336024​,

Could you please perform below steps-

1. Access below url-

http://localhost:4502/system/console/components/

2. Search for com.day.cq.dam.core.impl.servlet.MetadataSchemaServlet

Check it's status is it active or not.

3. If it's not present or if it's not active then request will got to DefaultGetServlet which in turn uses the JsonRendererServlet to process your requests with .json extensions.

Since the JsonRendererServlet requires a numeric selector or the infinity selector, it throws the following error.

Invalid recursion selector value <<selector>>

Regards

View solution in original post

8 Replies

Avatar

Community Advisor

Just tried in my local server and it works fine(AEM 6.3) -

http://localhost:4502/content/dam/hero-04.jpg.metadata-schema.json

{"jcr:content/metadata/dc:title":{"label":"Title","value":null,"type":null},"jcr:content/metadata/dc:description":{"label":"Description","value":null,"type":null},"jcr:content/metadata/dc:format":{"label":"Type","value":"image/jpeg","type":"String"},"jcr:content/metadata/dc:language":.........

Could you please try in new server without your custom code.

Avatar

Level 2

Thanks for the reply. I tried on a different server is working fine. I am failed to get metadata on this server.

This AEM server is configured in MongoDB. I am not sure if I am missing any configuration or wrongly applied metadata-schema here. How to resolve this one?

Avatar

Community Advisor

Is it happening for a particular asset or all?

Avatar

Level 2

Unable to access the metadata for all the assets. sorry for the earlier mentioned particular asset.

Avatar

Community Advisor

Could you please upload one of the asset.

As i am not able to reproduce it , it doesnt matter whether you are running with Mongo DB.

Avatar

Correct answer by
Community Advisor

Hi annaduraim74336024​,

Could you please perform below steps-

1. Access below url-

http://localhost:4502/system/console/components/

2. Search for com.day.cq.dam.core.impl.servlet.MetadataSchemaServlet

Check it's status is it active or not.

3. If it's not present or if it's not active then request will got to DefaultGetServlet which in turn uses the JsonRendererServlet to process your requests with .json extensions.

Since the JsonRendererServlet requires a numeric selector or the infinity selector, it throws the following error.

Invalid recursion selector value <<selector>>

Regards

Avatar

Level 2

Thanks, ka786It is working fine now. Thanks a lot.