I couldn't understand the need for a parbase component in CQ5. From what I read in CQ5 documentation, parbase is a component that can extend from other components. But all components can extend other components by specifying sling:resourceSuperType property. So what is the need for a parbase compone...
Hi,I have included google gson dependency in the pom.xml of my project as shown below: <dependency><groupId>com.google.code.gson</groupId><artifactId>gson</artifactId><version>2.2.2</version></dependency>I am able to build the project without any issues but when I am hitting the URL, the page...
Hi,I am aware CQ provides out of box cloud services integration to FB/Twitter/Saleforce.Does anyone have any idea integrating with box cloud services https://www.box.com/ using OAUTH ?
Hey,so I was going to use the built-in list component for a footer navigation but I noticed that it automatically pulls the 'Title'. I guess I'm wondering if there's some way to specify that it should use the 'Navigation Title' instead? If that's not do-able with the current component, what would be...
HiI read document at http://helpx.adobe.com/cq/kb/howtopurgewf.html to Purge workflow and audit nodes on CQ 5.5. It said that "You can start a purge manually by creating a file ./cleanWorkflow. Then, the watch service detects the file and starts a purge."Could you please tell me where should i need...
Hi there,We're using AEM 5.6.1 and have noticed that all payload urls in the Workflow Inbox take the user to a 404 page. I've examined the URL and it seems that somewhere along the line, the "/" in the URL are be transformed into "%252F." For example, the url http://localhost:4502/bin/wcmcommand?c...
Hi,There is a known issue related to Jcr Resource Resolver Mappings. If there are more than 13 mappings, resource resolver stops working. For more information please see here: https://issues.apache.org/jira/browse/SLING-2125.Unfortunately I could not find any hotfix released by Adobe for this issue....
I am building a website that will be published by AEM. Customers will log into that website - it's a customer dashboard. I want to authenticate them using an existing SiteMinder service (that I don't have control over), get back success / failure, and then signify to my AEM-based website that the cu...
When I add a component to a global pipeline I am not able to catch events for <div> element.I am trying to rewrite certain attributes in markup generated by CQ5. For this I created a custom component and added this to a default global pipeline.When I debug I can see that events are thrown for most o...
I'm trying to make use of AccessControlManager to programmatically set some AccessControlPolcy (ACP) onto a node. So basically what want to do is copy the ACP of one node and set it to another node. My code looks like belowSession userSession = request.getResourceResolver().adaptTo(Session.class); A...