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

markus_bulla_adobe
markus_bulla_adobe
Offline

Badges

Badges
24

Accepted Solutions

Accepted Solutions
77

Likes Received

Likes Received
208

Posts

Posts
162

Discussions

Discussions
10

Questions

Questions
153

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by markus_bulla_adobe
Customize the badges you want to showcase on your profile
Betreff: Does AEM have any sort of distributed caching wh... - Adobe Experience Manager 04-05-2021
Hi @TB3dock!I'm not sure if I understand your use case 100% correct.I'll just leave some general advice with regards to caching.When working with AEM, you can leverage several levels of caching:Browser caching (setting according headers on your HTTP response)Usually, this can be applied best for long living resources, such as JS and CSS files or certain images (e. g. a logo). But with shorter TTLs (time to live), this can also be leveraged for HTML pages or other responses (e. g. XHR). General a...

Views

370

Likes

3

Replies

0
Betreff: Store data request on live server. Need to refre... - Adobe Experience Manager 04-05-2021
Hi @adobecq-venkat!While there are different ways to store and synchronize user generated data on/between publish instances (@Vaibhavi_Gowda already pointed out Sling Content Distribution), I would not recommend any of them for actual order data in terms of e-commerce or similar transactional data. AEM and especially the publish tier is not the right place to manage or store transactions and orders. For online stores, AEM is usually integrated with some kind of e-commerce system (see [1]), e. g....

Views

240

Like

1

Replies

0
Re: Upgrade 6.2 to 6.5 - Adobe Experience Manager 30-04-2021
It's hard to say without detailed knowledge, but it is not uncommon that the repository is smaller after migrating to a new, fresh instance. One step that I missed to mention in my initial post is that as a pre-work it is usually recommended to cleanup everything no longer needed from the old instance (e. g. old packages) and run the according maintenance cleanup jobs (workflow and version purgen, compaction) to reduce the repositiory size. This will help with a smoother migration and speed up t...

Views

551

Like

1

Replies

0
Re: Upgrade 6.2 to 6.5 - Adobe Experience Manager 30-04-2021
Hi @Manikumar! There are different approaches to upgrade from older AEM versions to newer ones.In place upgrade - basically stopping your instance, replacing the quickstart.jar with the newer version and starting it again.Upgrade to a new environment - setting up a new environment with the target version and migrating your project (content, code, configurations, etc.) to that new environment.From my experience the most reliable and clean way is a combination of these two approaches:Setup a new, ...

Views

572

Likes

2

Replies

2
Re: abort processing of the request - Adobe Experience Manager 29-04-2021
Hi @anelem1760873! Usually, you would include your filter into the filter chain and override the doFilter() method as @bilal_ahmad outlined in his code example.Depending on your understanding of how to "block/abort" the request, you could do one of the following:Check for the right condition and send an appropriate HTTP response (e. g. 404 Not Found or any other 4xx or 5xx code that makes sense for your use case) - exactly what @bilal_ahmad mentioned. You can find a simple example of a LoggingFi...

Views

329

Likes

2

Replies

0
Re: how to get admin session using service user - Adobe Experience Manager 29-04-2021
Hi @manikanthar1295!Please refer to the following documentation:https://experienceleague.adobe.com/docs/experience-manager-65/administering/security/security-service-users.htmlIt points tohttps://sling.apache.org/apidocs/sling7/org/apache/sling/jcr/api/SlingRepository.html#loginService-java.lang.String-java.lang.String-What you need to do: SlingRepository.loginService()orResourceResolverFactory.getServiceResourceResolver() Hope that helps!

Views

289

Like

1

Replies

0
Betreff: AEM project release managment - Adobe Experience Manager 29-04-2021
Hi @mitadiana!Release Management is a very broad topic and there is no one-size-fits-all approach here. Every AEM project has different prerequisites, dependencies, requirements, etc. While there are some smaller projects that do release builds manually, most projects have some kind of CI/CD chain in place that helps them automate this task. Often this is based on an already established tool set. So the bottom line here is: use what you already have in place and/or are comfortable to work with. ...

Views

177

Like

1

Replies

0
Betreff: Permission sensitive caching dispatcher - Adobe Experience Manager 29-04-2021
Hi @trc41594544!There are two prerequisites for it:You need to add the according dispatcher configuration (the /auth_checker section mentioned in the documentation you linked and posted by @Asutosh_Jena_) andyou need to have your authorization checker servlet up and running on your AEM instance. If you are now requesting any page that matches the defined filter rules of the auth_checker section from the dispatcher, the following will happen:The dispatcher will send a HEAD request to the auth ser...

Views

213

Like

1

Replies

0
Betreff: Filter rejects: GET /bin/customservlet - Adobe Experience Manager 29-04-2021
Hi @Antony6790!As @Asutosh_Jena_ already mentioned, the trailing slash may be an issue in your rule and the rewriting should not be necessary.In addition to that, please review your full set of filter rules in the dispatcher configuration and make sure that there is no deny-rule placed after your servlet allow-rule and that the ID of your allow-rule is unique (the leading /0123 numbering if you're following the default pattern). Please note: the ID numbering of filter rules is not required to be...

Views

238

Like

1

Replies

0
Re: Project bundles does not start after couple of builds... - Adobe Experience Manager 29-04-2021
Hi @hptarora! If your project bundle is not able to resolve all required dependencies/services it will not be able to start.Please check the services that are marked in red on the detail view of your bundle and make sure that the according services are available. Once all required dependencies are available, the bundle should be able to start. You may also try to start the bundle manually through Web Console (/system/console/bundles). If it fails (e. g. due to missing dependencies) this will thr...

Views

478

Like

1

Replies

0