Hi,Is "/content/dam/pdfs/retail/test.pdf/jcr:content" the right location
for jcr:data?I think you have to give the path to a rendition
(Original), which has the property "jcr:data". Try using this path
instead -
"/content/dam/pdfs/retail/test.pdf/jcr:content/renditions/original/jcr:content"ORyou
can try something like this - Resource rs =
resourceResolver.getResource(path);Asset asset =
rs.adaptTo(Asset.class); InputStream data =
asset.getOriginal().getStream();