There's this migration guide for migration to Adobe AEM as cloud service, please go through it if this helps Migration Guide to Experience Manager as a Cloud Service for Partners | Adobe Experience Manager Also there's this community post Solved: Migration from another CMS to AEM - Adobe Experience ...
Please check the access of your "user". If you have logged in as an admin. Then you should be able to impersonate to any user.
Please check in another instance, to check if this is specific to your local instance or any instance where you are trying.
Thanks!
Can you try following script once
import javax.jcr.*import org.apache.sling.api.resource.ResourceResolverimport org.apache.sling.api.resource.ResourceResolverFactoryimport org.apache.sling.api.resource.ModifiableValueMap
// Define the source and destination pathsdef sourcePath = "/content/dam/proj...
Hi ,
You can use groovy console to write the script to download images
https://aemgeeks.com/aem-tools/use-groovy-script-in-aem/
import java.net.URLimport java.io.Filedef targetFolder = '/content/project/target' def localFolder = '/path/to/local/folder' def pages = session.findNodes("...
Hi,
<meta name="title" content="${currentPage.properties['jcr:title']}">
<meta name="description" content="${currentPage.properties['jcr:description']}">
as my page doesnt have any description its coming with no value, however for meta tag for title is getting rendered same as title of my ...
Thanks for the reply. Really appreciate it.
Looking at this method ,it would only return if the resource is asset or not, how to determine whether its content fragment or not ?
I am trying to put a condition in my code to check if given workitem ( in my custom workflow ) which is adapted in "resource" is whether content fragment or not.
I am not getting any specific method to do so.
For this I need to traverse to its jcr:cotnent and then check the property "content frag...
Yes, I am also getting empty Content fragment, can you suggest how should we populate this content fragment, as in my resource json , fragment path for content fragment json is already present.
I am not able to write junit for following custom model class extending content fragment.
content fragment object is always coming null,
Could anyone tried this before? How to write this junit for custom component model delegating to content fragment model?
Sling model Interface :
package com.my...