Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Ove_Lindström
Ove_Lindström
Offline

Badges

Badges
24

Accepted Solutions

Accepted Solutions
66

Likes Received

Likes Received
43

Posts

Posts
159

Discussions

Discussions
8

Questions

Questions
151

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Ove_Lindström
Customize the badges you want to showcase on your profile
Re: Fetching thumbnail image using JCR API - Adobe Experience Manager 15-10-2015
Try:Resource resource = resourceResolver.getResource("/content/dam/Rental/prod1.gif");Notice the / in the beginning of the resource path./Ove

Views

650

Likes

0

Replies

0
Re: Persisting Users to external database - Adobe Experience Manager 15-10-2015
It is not a big problem if you want to use an external authenticator and create your own connector. You can even store everything in the external system and have AEM go and ask for the information everytime (like a Kerberos authenticator).However, storing the absolute minimum of information about the user in the JCR of your system would have the benefit of being able to utilize the built in functionalities that needs a Principal object that holds the information about user id, user name and grou...

Views

595

Likes

0

Replies

0
Re: Persisting Users to external database - Adobe Experience Manager 15-10-2015
No, you don't have to persist the whole JCR. Connecting to a database is the same as connecting to a REST service. You just setup a data connection in a Java class, same as you do with any database connection, then read the /home/user info and push it into the database.Then, if you change the user in the database, you still need to sync the information into /home/users. If you search for SAML integration or LDAP integration, that is basically what they are doing. /Ove

Views

591

Likes

0

Replies

0
Re: External redirect overriding Internal Vanity URL in CQ 5.6.1 - Adobe Experience Manager 15-10-2015
Can you post the part of the httpd.conf that holds the deals redirect?Most likely, you are having an open ended matcher.It is a huge diff betweenRewriteRule ^/deals www.pqrs.comthat matches "anything starting with deals"andRewriteRule ^/deals$ www.pqrs.comthat matcher "exactly /deals"./Ove

Views

512

Likes

0

Replies

0
Re: Can we add multiple selectors using Sightly? - Adobe Experience Manager 15-10-2015
Have you tried?? /Ove

Views

731

Likes

0

Replies

0
Re: Reusable dialog definitions - How to make a component having multifield reusable - Adobe Experience Manager 15-10-2015
Have your component discover where is it put and generate the name itself based on the path. You still would have to do your own ExtJS or extend the functionality of the used components.What you have is a usage definition that you can share beween components. This is usefull when you have the definition of the property in the parent component and want to the ability to override the properties in a child component. Or if you want to define a tab with commonly used properties. This means that it o...

Views

319

Likes

0

Replies

0
Re: copy and cut features of edit plugin of richtexteditor are not working - Adobe Experience Manager 15-10-2015
Grant it the Clipboard access.http://kb.mozillazine.org/Granting_JavaScript_access_to_the_clipboardGoogle on the same thing for Chrome./Ove

Views

399

Likes

0

Replies

0
Re: copy and cut features of edit plugin of richtexteditor are not working - Adobe Experience Manager 15-10-2015
What browser are you using? Have seen this on IE sometimes./Ove

Views

399

Likes

0

Replies

0
Re: Viewing WebHelp in CQ5 - Adobe Experience Manager 15-10-2015
Oh... what you could do if you go for the Dispatcher approach is to use a Static Agent to write down to the Dispatcher on publish of a Webhelp document. See http://www.wemblog.com/2012/02/how-to-use-static-agent-in-cq-wem.html /O

Views

283

Likes

0

Replies

0
Re: Viewing WebHelp in CQ5 - Adobe Experience Manager 15-10-2015
Yes, the problem here is that the .htm is looked upon as a suffix and Sling tries to render the "node" .../running_archtics/workstation_setup.htm, that is static content, as a htm type.You need to get sling to understand that anything that is found under **/Webhelp/ should just be regarded as static content.Are you editing the Webhelp .htm pages? If you are not, I would put the static files in a htdocs section in the dispatcher and serve it from there. But then you can't linkt to is in an easy w...

Views

280

Likes

0

Replies

0