Apologies. I should have mentioned that I'm on AEMaaCS. Reading the linked Adobe page, revision cleanup only applies to 6.5? In any case...- no other port uses 4503- When I tried to tail error.log, stderr.log and stdout.log, I do not see errors.
so I have initially run the publisher using this command (I'm on Linux using JDK11)java -jar aem-publish-p4503.jarI installed the content and code packages and I can browser the custom pages without any issues. My problem started after I restarted my PC. To start AEM publish I triedjava -jar aem-pu...
If I set the dev pipeline to run on "git changes" and I made 3 changes (3 merged requests) to the branch in a 3 minute interval. Is the dev pipeline running 3 times as well to deploy those changes? Thanks!
as above. I am testing something on my local and I am getting the following errors in my logs when the browser tries to fetch some data from a servlet. some info:I am using AEMaaCS jar as my local instance.I am login to my local author in another browser tab.I'm using the fetch Javascript function t...
might be best explain with an example: I have a servlet that returns true or false if HTTP post is successful.I also have a javax filter that checks if a user still has a session. if no session, redirect the user to the login page.User has 2 browser tabs open and both of them are displaying a form (...
so I have a javax.servlet.filter class that does a lot of things. one of the first things it does is change the value of a cookie (example: cookieX was originally set to "ABC" and I changed it to "ABC,DEF"). Before the browser gets a response (the filter has completed already but a Sling model is ru...
2 questionsHow I check if the redirect happens in my unit test?I cannot get a proper mock of an OSGI service that provides me access to an OSGI config. When I try to debug my unit test and the execution enters the filter, provider is null. How can I code it so it's not null?some code (unit test + fi...