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

BrijeshYadav
BrijeshYadav
Online

Badges

Badges
26

Accepted Solutions

Accepted Solutions
21

Likes Received

Likes Received
73

Posts

Posts
108

Discussions

Discussions
38

Questions

Questions
70

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by BrijeshYadav
Customize the badges you want to showcase on your profile
Re: AEM Assets 6.4 - Export DAM assets to Filesystem - Adobe Experience Manager 29-04-2019
Hi Anand,I have configured a static agent for my development machine and worked fine.Although it's has been very well written in the article you followed but just to investigate further, could you please set the log level to DEBUG for your static replication agent and share complete stacktrace ?Also would be helpful if you share Agent Setting configurations screenshot for both the tabs( Setting, Rules) /Brijesh

Views

4.5K

Like

1

Replies

0
Re: What's the correct way of storing passwords in AEM? - Adobe Experience Manager 17-04-2019
Hi,You might be missing Service User Mapping configure for the bundle. Check your erro.log and see if you have below error:" org.apache.sling.jcr.resource.internal.JcrSystemUserValidator The provided service user id 'serviceuser--Lab2019.core' is not a known JCR system user id and therefore not allowed in the Sling Service User Mapper."Read here for service user configurations Service Users in AEM

Views

4.0K

Like

1

Replies

0
Re: What's the correct way of storing passwords in AEM? - Adobe Experience Manager 15-04-2019
1. I think Crypto Support provided by Adobe, so it should according to a standard guideline. in addition to your article, you can also read more about crypto support https://www.argildx.com/crypto-support-aem/2. You can read configurations in servlet via ConfigurationAdmin. @Reference private ConfigurationAdmin configAdmin; private static final String LOGGER_FACTORY_PID = "org.apache.sling.commons.log.LogManager.factory.config"; @Override protected void doGet(SlingHttpServletRequest request, Sli...

Views

3.8K

Likes

2

Replies

0
Re: How to move bulk Asset in DAM - Adobe Experience Manager 15-04-2019
You can use CRxtoOak, it can also be used to copy data between Oak repositories.Using the CRX2Oak Migration Tool Or Vault Remote CopyRead this for assets migration Assets Migration Guide

Views

7.3K

Like

1

Replies

0
Re: How do I access an OSGI service from any class? - Adobe Experience Manager 12-04-2019
What exactly is your use case not to use WCMUsePojo class?I would recommend to use Sling Model instead of WCMUsePojo.Adobe Experience Manager Help | Creating Adobe Experience Manager 6.3 Sling Model Components Sling models and WCMUsePojoAEM Concepts | AEM Tutorial | Know Adobe CQ better: Sling models and WCMUsePojo

Views

2.4K

Like

1

Replies

0
Re: where to put properties filesthat are being used by external customized jar files - Adobe Experience Manager 08-04-2019
If another team is not including property file in the same jar then you can try below code.Store config.properties file somewhere on the server and read it via InputStream in your OSGi custom bundleProperties properties = new Properties();InputStream inputStream = new FileInputStream("D:/properties/config.properties");properties.load(inputStream);String departmentName = properties.getProperty("departmentName");

Views

10.9K

Like

1

Replies

0
Re: where to put properties filesthat are being used by external customized jar files - Adobe Experience Manager 08-04-2019
As Gaurav said it's not the recommended AEM way although would be helpful to understand more if you provide the lines of code that show how property file being accessed or read?

Views

10.9K

Like

1

Replies

0
Re: Cloning AEM Instance from One Server to Another Server - Adobe Experience Manager 02-04-2019
Strange, I have never seen that coping repository on running aem can break the existing instance.Did you try same on existing aem instance?Try to login via crx/de and then go to http://host:port/system/console and ensure that the status of all bundles is Active, specifically check the status of Apache Sling Authentication Service bundle, it should have an active status.Another possible reason could be that indexes get corrupted. You can recreate indexes by deleting or renaming /crx-quickstart/re...

Views

2.8K

Like

1

Replies

0
Re: Cloning AEM Instance from One Server to Another Server - Adobe Experience Manager 01-04-2019
Please mention here if you make any other changes to any file to AEM repository after you moved to a new location?Now try to login via crx/de and then go to http://host:port/system/console and ensure that the status of all bundles is Active, specifically check the status of Apache Sling Authentication Service bundle, it should have an active status.Another possible reason could be that indexes get corrupted. You can recreate indexes by deleting or renaming /crx-quickstart/repository/version/inde...

Views

2.9K

Like

1

Replies

0
Re: Cloning AEM Instance from One Server to Another Server - Adobe Experience Manager 01-04-2019
Yes, it will work without any issue. This is called offline backup in AEM.The important thing to remember that make sure you change correct run mode before you start AEM at the new location.Read here more about offline Backup and Restore Offline BackupYou can always do an offline backup. This requires a downtime of AEM, but can be quite efficient in terms of required time compared to an online backup.In most cases, you will use a filesystem snapshot to create a read-only copy of the storage at t...

Views

2.8K

Likes

2

Replies

0