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

pradeepdubey82
pradeepdubey82
Offline

Badges

Badges
20

Accepted Solutions

Accepted Solutions
3

Likes Received

Likes Received
16

Posts

Posts
93

Discussions

Discussions
11

Questions

Questions
82

Ideas

Ideas
0

Blog Posts

Blog Posts
1
Top badges earned by pradeepdubey82
Customize the badges you want to showcase on your profile
Re: AEM6.4 SP3 Asset metadata editor | dynamically populate list upon selection change - Adobe Experience Manager 11-03-2019
Yes this is what i was looking.Thank you very much for the help.Regards,Pradeep

Views

2.6K

Likes

0

Replies

0
Re: AEM6.4 SP3 Asset metadata editor | dynamically populate list upon selection change - Adobe Experience Manager 10-03-2019
This is neither page properties nor component dialog. I clearly mentioned asset metadata editor. In asset metadata editor there is a drop-down. In first drop-down I have fixed values, in 2nd drop-down values are dynamic those are based on selection changed in first drop-down.I hope you understood my question and problem.Thanks,Pradeep

Views

2.6K

Likes

0

Replies

0
AEM6.4 SP3 Asset metadata editor | dynamically populate list upon selection change - Adobe Experience Manager 10-03-2019
Hi All,I have a requirement to populate the 2nd list when changing the value in first list in asset metadata editorSay for example Option1, Option2 are the dropdown in first list.When selected option1, 2nd list should have values (xxx,yyy,zzz)When selected option2, 2nd list should have values (aaa,bbb,ccc)Please let me know if someone has any idea on this. Any help is highly appreciated.Thanks,Pradeep

Views

5.0K

Likes

0

Replies

6
Re: AEM6.2 sling models | Resource resolver is already closed - Adobe Experience Manager 20-03-2018
@Inject private Date timer;timer is the property in dialog of type Date. This is needed to pass to schedule the task.My requirement is to run some piece of code on selected time. I am not using typical scheduler why because felix console access is not provided us, it is maintained and managed by Adobe, we can't ask them to run scheduler as and when needed. We have only author access. So in authoring dialog as soon as author is selecting particular date and time, my timer task code should execute...

Views

3.6K

Likes

0

Replies

0
Re: AEM6.2 sling models | Resource resolver is already closed - Adobe Experience Manager 19-03-2018
now i am getting nullpointer for resourceresolverpackage com.test.core.models;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.net.MalformedURLException;import java.net.URL;import java.net.URLConnection;import java.nio.charset.Charset;import java.text.DateFormat;import java.text.SimpleDateFormat;import java.util.Date;import java.util.Timer;import java.util.TimerTask;import javax.annotation.PostConstruct;import javax.inject.Inject;import javax....

Views

3.6K

Likes

0

Replies

0
Re: AEM6.2 sling models | Resource resolver is already closed - Adobe Experience Manager 19-03-2018
Not solved the issue even after placed timertask logic in separate classNw below is my timertask class code@Componentpublic class SchedulerTask extends TimerTask {private static Logger LOG = LoggerFactory.getLogger(SchedulerTask.class);@Referenceprivate ResourceResolver resourceResolver;Timer timer = new Timer();private DateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");public void run() { try {}}}Below error i am getting org.apache.sling.api.scripting.ScriptEvaluationException: org.apa...

Views

3.6K

Likes

0

Replies

0
Re: AEM6.2 sling models | Resource resolver is already closed - Adobe Experience Manager 19-03-2018
Hi Jorg,Please find the full class code belowpackage com.test.core.models;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.net.MalformedURLException;import java.net.URL;import java.net.URLConnection;import java.nio.charset.Charset;import java.text.DateFormat;import java.text.SimpleDateFormat;import java.util.Date;import java.util.Timer;import java.util.TimerTask;import javax.annotation.PostConstruct;import javax.inject.Inject;import javax.jcr....

Views

3.6K

Likes

0

Replies

0
AEM6.2 sling models | Resource resolver is already closed - Adobe Experience Manager 18-03-2018
Hi All,I am getting error in sing model class saying resource resolver is already closed Below is my code for reference.@Model(adaptables = Resource.class)public class SchedulerComponent {private static Logger LOG = LoggerFactory.getLogger(SchedulerComponent.class);@Inject private Date timer;@Injectprivate ResourceResolver resourceResolver;@PostConstructpublic final void init() {try { Session session = resourceResolver.adaptTo(Session.class);} catch(Exception ex) {}}}Below is error stack trace.j...

Views

11.2K

Likes

2

Replies

19
Re: AEM6.3 | @Reference aanotation is not working in abstract class - Adobe Experience Manager 06-03-2018
Hi Donald,I am going through below linkDeprecated List ("The Adobe AEM Quickstart and Web Application.")org.apache.felix.scr.annotationsis not showing in deprecated list.All deprecated API like JcrResourceResolverFactory, OsgiUtil, User, Group, Apache Json etc showing as striked out in code.Do you have any AEM documentation which clearly states org.apache.felix.scr.annotations is deprecated?Thanks,Pradeep

Views

4.0K

Likes

0

Replies

0
Re: AEM6.3 | @Reference aanotation is not working in abstract class - Adobe Experience Manager 06-03-2018
Hi,I am working on upgrade from 6.1 to 6.3. Code which was working fine in 6.1 is not working on 6.3.@Referenceprivate Replicator replicator Throwing nullpointer exception in abstract class (@Service annotation only no @Component annotation on top of class definition). It was working in 6.1.Gone through the links shared in response, i think there are lot of changes i have to do (pom file changes, felix annotation are deprecated)I was thinking this will be minor change. But after going through th...

Views

4.0K

Likes

0

Replies

0
Likes given to