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: OSGI R6 configuration and the Felix SCR configuration can be used in a single project? - Adobe Experience Manager 08-07-2022
Yes, you can do that but cannot mix at a class level. You can mix SCR annotations and OSGI annotations in a project, you don’t need to migrate them all at once. But you can to be consistent on a class level, you cannot mix SCR and OSGI annotations in a single class. This is achieved by an extension to the maven-bundle-plugin. Refer for more details: https://cqdump.joerghoh.de/2019/01/03/from-scr-annotations-to-osgi-annotations/ Getting older codebases upgraded, however can be a bit more of a cha...

Views

79

Likes

2

Replies

0
Re: While using AEM in local setup, what token credentials should I put in? - Adobe Experience Manager 07-07-2022
Hi @shivam-rally , What are you trying to achive here. Do you want to perform any remote operation in AEM. You can perform using postman using basic authrntication(user/password).check my comment here-https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/create-page-site-from-a-simple-java-project/m-p/456467/highlight/true#M131390Or if you are interested, Check this video tutorial -https://youtu.be/rCoGndHr7HQ

Views

145

Like

1

Replies

0
Re: AEM as Cloud : Pushing code from GIT to Cloud Repo - Adobe Experience Manager 07-07-2022
git push cloudurl develop:uat -f uat branch will be overrided with develop branch code

Views

124

Like

1

Replies

0
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

65

Like

1

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: Getting error in pipeline, during build image - Adobe Experience Manager 06-07-2022
Log a support case with us because a few other customers have reported this today too. Don't forget to include this forum thread URL in description field.

Views

82

Like

1

Replies

0
Re: AEM with Multiple authors - Adobe Experience Manager 06-07-2022
I also have some understanding, just thought to discuss and take opinion. Thanks for the validation.

Views

86

Like

1

Replies

0
Re: Data Upload in Google Drive - Adobe Experience Manager 05-07-2022
@janhavi_singh Approach I:Create the scripts/scheduler/workflow for the asset to be pushed from AEM to google drive.There are google drive APIs available for pushing the data to google drive. https://developers.google.com/drive/api/guides/manage-uploadsimport com.google.api.client.googleapis.json.GoogleJsonResponseException; import com.google.api.client.http.FileContent; import com.google.api.client.http.HttpRequestInitializer; import com.google.api.client.http.javanet.NetHttpTransport; import c...

Views

80

Like

1

Replies

0