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

tusharbias
tusharbias
Online

Badges

Badges
20

Accepted Solutions

Accepted Solutions
26

Likes Received

Likes Received
95

Posts

Posts
71

Discussions

Discussions
18

Questions

Questions
53

Ideas

Ideas
1

Blog Posts

Blog Posts
0
Top badges earned by tusharbias
Customize the badges you want to showcase on your profile
Re: Monitoring of live Website - Adobe Experience Manager 08-07-2022
Monitoring is available on AMS & Cloud Service. For on-prem instance you can write your own custom monitoring scripts. Ideally, these scripts should be hosted outside AEM and it should be very straight forward script - you can hit any URL and check the HTTP status code. If you really need to host these scripts on AEM instance only, then you have two options for on-prem:1. Write shell scripts which should be deployed on AEM hosted server. These scripts should execute on regular frequency to check...

Views

152

Likes

2

Replies

0
Re: Practice test for AD0-E123 Adobe Experience Manager Sites Developer Professional - Adobe Experience Manager 07-07-2022
Recommended training courses and study materials:Adobe Experience Manager Tutorials ** This is provided in the Certification documentation only. https://express.adobe.com/page/wmEF6wQ6rjrQX/ The sample questions allow you to see the type and format of items that you will encounter in the actual exam. There is no sign-on needed. The results of the sample questions are not stored, and do not predict your actual test results.AD3-E123 Adobe Experience Manager Sites Developer Professional Sample Ques...

Views

171

Like

1

Replies

1
Re: While using AEM in local setup, what token credentials should I put in? - Adobe Experience Manager 07-07-2022
You can easily do the Basic AUthentication for local instace and Token based for AEM which is hosted on cloud.For instance - When we want to access an endpoint from our AEM instance using POSTMAN, we need to set the Authentication information via tab -> "Authorization" with respective Type. (Which would help generate an Authorization Header for making an HTTP request)For Classic AEM instance, we need to use "Basic" Type -> respective Username and Password input as we would give in our AEM instan...

Views

168

Like

1

Replies

2
Re: AEM as Cloud : Pushing code from GIT to Cloud Repo - Adobe Experience Manager 07-07-2022
Instead of doing it every time manually you should set up automated process to sync from your repo to Adobe Cloud Repo.In these cases an automated synchronization process should be setup to ensure that Cloud Manager’s Git repository is always kept up to date. Depending on where the customer’s Git repository is hosted, a GitHub action or a continuous integration solution like Jenkins could be used to setup the automation. With an automation in place, every push to a customer owned Git repository ...

Views

135

Like

1

Replies

2
Re: Google Drive API Integration with AEM - Adobe Experience Manager 06-07-2022
The Google Drive API allows you to upload file data when you create or update a File. There are three types of uploads you can perform:Simple upload (uploadType=media). Use this upload type to quickly transfer a small media file (5 MB or less) without supplying metadata. Multipart upload (uploadType=multipart). Use this upload type to quickly transfer a small file (5 MB or less) and metadata that describes the file, in a single request. Resumable upload (uploadType=resumable). Use this upload ty...

Views

64

Like

1

Replies

0
Re: How do I implement the tagging in the component using Java Model Class? - Adobe Experience Manager 06-07-2022
You must use the TagManager API to solve your problem.TagManager allows for resolving and creating tags by paths and names. This interface is generic, but there is a JCR-based reference implementation which can be obtained by the JcrTagManagerFactory - all you need is an existing JCR Session TagManager tagManager = JcrTagManagerFactory.getTagManager(session); In the typical Sling context you can also adapt to a TagManager from the ResourceResolver: TagManager tagManager = resourceResolver.adaptT...

Views

143

Likes

2

Replies

0
Re: Migration of data from MySQL tables to JCR - Adobe Experience Manager 06-07-2022
On CS, there are couple of ways to do that: 1. You can create your own custom solution - service/scheduler to fetch the data from MySql. You can easily create DB connections and fetch the data. Refer below for more details: (it is a 6.5 documentation but majorly it will work) https://experienceleague.adobe.com/docs/experience-manager-65/communities/administer/mysql.html?lang=en ** If you don't have assets then this will work without any issue. 2. If you have also have assets in your DB, then fir...

Views

74

Likes

3

Replies

0
Re: Adobe cloud SDk path servlet issue - Adobe Experience Manager 05-07-2022
What is the purpose of this servlet? Are you reading/writing things on the repository using this servlet? What I have seen in past if people usually try to write under apps then you may face 409 status code.

Views

150

Like

1

Replies

1
Re: Data Upload in Google Drive - Adobe Experience Manager 05-07-2022
The Google Drive API allows you to upload file data when you create or update a File. There are three types of uploads you can perform:Simple upload (uploadType=media). Use this upload type to quickly transfer a small media file (5 MB or less) without supplying metadata. Multipart upload (uploadType=multipart). Use this upload type to quickly transfer a small file (5 MB or less) and metadata that describes the file, in a single request. Resumable upload (uploadType=resumable). Use this upload ty...

Views

80

Like

1

Replies

0
Re: AEM with Multiple authors - Adobe Experience Manager 04-07-2022
Yes, it can be acheived by having MongoDB instead of OOTB TarMK. Except this I don't think you can have more than 1 active author at a time.But, MongoDB will typically be used for supporting AEM author deployments where one of the following criteria is met:More than 1000 unique users per day;More than 100 concurrent users;High volumes of page edits;Large rollouts or activations.The criteria above are only for the author instances and not for any publish instances which should all be TarMK based....

Views

116

Like

1

Replies

3