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

jayv25585659
jayv25585659
Online

Badges

Badges
33

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
71

Posts

Posts
187

Discussions

Discussions
46

Questions

Questions
141

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by jayv25585659
Customize the badges you want to showcase on your profile
How to pass an object/variable to another file (using data-sly-include)? - Adobe Experience Manager 04-02-2018
so I'm including another file via:${fish.name} I'm wondering if I can pass my "fish" object to my-include-file-here.html.I've looked the internet but can't find what I'm looking for.Thanks

Views

5.1K

Likes

2

Replies

4
How to pass an object/variable to another file (using data-sly-include)? - Adobe Experience Manager 04-02-2018
so I'm including another file${fish.name} I'm wondering if I can pass my "fish" object to my-include-file-here.html. If it's possible, how can I do it?I've looked the internet but can't find what I'm looking for.Thanks

Views

2.0K

Likes

0

Replies

1
Re: Is it posible to access the HTTP request object from inside a helper class? If yes, how? - Adobe Experience Manager 31-01-2018
thank you so much. I can see the request on my helper class if I extend this class!

Views

589

Likes

0

Replies

0
Is it posible to access the HTTP request object from inside a helper class? If yes, how? - Adobe Experience Manager 29-01-2018
so I have a custom class located in /bluegrass/core/src/main/java/com/bluegrass/core/imp/view/components/MyCustomerHelper.javaI'm wondering if it's possible to access the HTTP request object from this section? If yes, how?Here's a snippet of the class declaration.public class CourseListHelper extends BaseWCMPojo { public void activate() throws Exception { //more code here }}I understand it can be done via servlet but I have the impression that to access the servlet, I need to access it via HTTP ...

Views

1.3K

Likes

0

Replies

3
Java: how to check if a page (defined as cq:Page) has a custom property? - Adobe Experience Manager 24-01-2018
To achieve my question above, I used querybuilder that retrieves custom pages and then I map these maps to a model file.My problem is that in some instances, there are pages without this custom property (as an example, let's call it aNew which can be either true or false and of boolean property).My issue is that when I "cast" the search result hits to my model, aNew automatically get "false" for pages that doesn't have this property.Any ideas how it can be done?Map map = new HashMap<>();map.put(...

Views

2.8K

Likes

0

Replies

3
Re: How to pass a string from a WorkflowSession back to a SlingServlet? - Adobe Experience Manager 22-01-2018
hello. I've looked at the sample code and It doesn't really tell me how to return a string from my workflow back to the servlet.for reference, this is my entry point in my workflow. (can't edit original post)@Overridepublic void execute(WorkItem workItem, WorkflowSession workflowSession, MetaDataMap metaDataMap) throws WorkflowException { try { String string1 = "temp message"; log.info("Start Course Import Service"); } catch (Exception e) { log.error("Error in Course Import Service", e); }}I jus...

Views

605

Likes

0

Replies

0
How to pass a string from a WorkflowSession back to a SlingServlet? - Adobe Experience Manager 17-01-2018
So I have facility in my AEM code to import an comma-delimited file and turn that into pages (cq:page type) within AEM.The flow goes like this: browser => AJAX call => SlingServlet => Workflow => SlingServer => browserI want to pass a string from the Workflow back to my SlingServlet.@SlingServlet(paths = "/services/courses/start-import", methods = "POST", metatype = true, label = "my-label-here")public class myImportServlet extends SlingAllMethodsServlet {This is the main body of the servletprot...

Views

1.1K

Like

1

Replies

6
Java: how to best update the jcr:contents of a page? - Adobe Experience Manager 04-01-2018
So I have an Excel spreadsheet processor/importer where all existing pages are deleted and then it recreates the pages based on the spreadsheet info.I'm creating new pages viaPage page = pageManager.create(getCorrectPath(main, fish), getValidName(fish), templatePath, fish.getName(), true);and this creates new pages under /content/data/fishes.There is a new need where I cannot delete the pages anymore. I need to update it in possibility it's an existing one.example:/content/data/fishes/greatwhale...

Views

811

Likes

4

Replies

2
how to get retrieve a page using PageManager.getPath - Adobe Experience Manager 04-01-2018
so I have the following code snippetimport com.day.cq.wcm.api.Page;import com.day.cq.wcm.api.PageManager;......//more unrelated code here......Page currentPage = pageManager.getPage("/content/data/fishes/greatwhite");log.error(currentPage.getTitle());from what I understand (PageManager ("The Adobe AEM Quickstart and Web Application.") ), getPath requires a String input.And from the code snippet I have provided above, the path I provided is valid. I checked this via CRX/DE.I've looked at various ...

Views

16.6K

Like

1

Replies

4
What do I lose by disabling EEC? - Adobe Target 03-12-2017
because of a whitelisting issue, we are force to disable EEC for now.I am trying to find out what features do I lose by disabling EEC but getting nowhere.The "best" one I found is this vague statement:"When you use the Enhanced Experience Composer, the website is manipulated behind the scenes by a proxy server that updates all link urls to make them work in the proxy."from this page Visual Experience Composer Best Practices and LimitationsThank you

Views

902

Likes

0

Replies

1