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

Premkarthic-7WP
Premkarthic-7WP
Offline

Badges

Badges
19

Accepted Solutions

Accepted Solutions
7

Likes Received

Likes Received
11

Posts

Posts
62

Discussions

Discussions
11

Questions

Questions
51

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Premkarthic-7WP
Customize the badges you want to showcase on your profile
Re: RMI Connection to AEM 6.0 via JCR API - Adobe Experience Manager 15-10-2015
Hi Scott,Thanks for the inputs! But the same won't work, if we disable the WEBDAV on aem environments rite?So in that case, how we will connect from java app?Kindly advice us on this pls.Use Case : Access crx remotely to execute query.Thanks,Karthi

Views

736

Likes

0

Replies

0
Re: RMI Connection to AEM 6.0 via JCR API - Adobe Experience Manager 15-10-2015
Thanks for the info Opkar Gill.That will get work well with getting enabled "WEBDAV" on aem environments.Ideally we won't enable webdav on production environments. So, we chose to go with RMI connection.Any directions, to fix that issue will be more helpful.Thanks,Karthi

Views

745

Likes

0

Replies

0
RMI Connection to AEM 6.0 via JCR API - Adobe Experience Manager 15-10-2015
Hi,AEM version: 6.0Tried to make an rmi connection, from java application.We followed the steps, as exactly as mentioned on the kb (https://helpx.adobe.com/experience-manager/kb/rmi-connection-crx-cq-561.html) and always we are getting the connection refused exception.Apart from enabling RMI Connection listener, is we have to do anything at server level for enabling RMI?In the code, we are referring to a parameter crx-application-name, where we have to configure the same?Kindly advice us on this...

Views

2.1K

Likes

0

Replies

11
Re: error Handler - Adobe Experience Manager 15-10-2015
Avalers,As a workaround you can get the service reference for sling repository inside activate method using component context as shown below.@Servicepublic class TestAuthHandler extends DefaultAuthenticationFeedbackHandler implements AuthenticationHandler{ private SlingRepository repo; protected void activate(ComponentContext context) { try { BundleContext bundleContext = FrameworkUtil.getBundle(TestAuthHandler.class).getBundleContext(); ServiceReference factoryRef = bundleContext.getServiceRefe...

Views

459

Likes

0

Replies

0
Sightly - Issue while passing parameters to Java Use-Api - Adobe Experience Manager 15-10-2015
Hi, Issue while passing parameters to Java Use-ApiI tried with both the approach (Passing parameters to a use-class upon initialization and Passing parameters from data-sly-template) as mentioned on http://docs.adobe.com/docs/en/aem/6-0/develop/sightly/use-api-in-java.html. In both the cases i am not getting any result.But If I access the java use api without passing parameters as like its working fine.Code for reference:Info.javapackage apps.testsightly.components.content.sightlyComponent;impo...

Views

374

Likes

0

Replies

0
Sightly - Issue while passing parameters to Java Use-Api - Adobe Experience Manager 15-10-2015
Hi, Issue while passing parameters to Java Use-ApiI tried with both the approach (Passing parameters to a use-class upon initialization and Passing parameters from data-sly-template) as mentioned on http://docs.adobe.com/docs/en/aem/6-0/develop/sightly/use-api-in-java.html. In both the cases i am not getting any result.But If I access the java use api without passing parameters as like its working fine.Code for reference:Info.javapackage apps.testsightly.components.content.sightlyComponent;impo...

Views

3.8K

Likes

0

Replies

2
Re: Sightly - Changes on node level - Adobe Experience Manager 15-10-2015
Jorg,Thanks for your valuable input.You are suggesting me to use POST instead of GET if a have any requirement like that rite? This work well fine for form submission.Can i do the same for dialog submission?What is the best way to do,If i need to create certain nodes and to set some properties after submitting the dialog. Please advice.It will be more helpful if you provide some reference urls for understanding the rest to the best. I am quite new to this technology. Thanks in advance. Thanks,Ka...

Views

658

Likes

0

Replies

0
Re: Sightly - Changes on node level - Adobe Experience Manager 15-10-2015
Jörg Hoh wrote... I don't think, that it's a good idea to make any direct changes on the repository when you render a page. Just think how this might work on the publish side, or when the page is delivered out of a cache, etc. Jörg Jorg,Thanks for your input. I will set the property only on author mode (not on publish) for doing certain manipulation and that too not on every time, will do only for certain events.Thanks,Karthi

Views

478

Likes

0

Replies

0
Sightly - Changes on node level - Adobe Experience Manager 15-10-2015
Hi,Is it possible to make some changes on node level like setting property using sightly(".html file") ?. In sightly doc (http://dev.day.com/content/docs/en/aem/6-0/develop/sightly.html) they mentioned like Java-backed Objects will be available. If so, how it should be done?.Or otherwise we should use java class or js ?Please provide some snapshot of code for reference.Requirement : Need to set some 'x' property on node while each time page get loads.Thanks,Karthi

Views

928

Likes

0

Replies

6
Re: Get property of parent par inside child component's dialog - Adobe Experience Manager 15-10-2015
in line 5use as below,var data = CQ.Util.eval(CQ.HTTP.get(compPath+".json"));Mind the quotes around the ".json" as that it was string and also +.Sorry, I missed that same on while providing the sample code.You will get the json as response. You can iterate the same to get your required value. Thanks,Karthi

Views

672

Likes

0

Replies

0