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: AEM Non-licensed version 6.5.0 - Adobe Experience Manager 29-04-2021
This is an issue with your local Maven build of the frontend module caused by node / npm. The build process has issues to execute the required binaries. Unfortunately, I'm neither a node/npm expert nor do I have a Windows machine at hand to test it. However, once you get this build issue sorted, things should work as expected. Have you checked the two points that I mentioned in my initial answer (location of node.exe that is mentioned in the error message and moving the project to another folder...

Views

962

Like

1

Replies

0
Betreff: Content Migration from CQ5 to Contentful - Adobe Experience Manager 27-04-2021
Hi @Kailash07! There are several ways to export content from AEM. Let me list some of them:@Asutosh_Jena_already mentioned the .infinity.json selector+extension that exposes the content structure in a JSON format. It will list the whole content hierarchy with all subnodes. Be aware: depending on the size of your content tree you may want to split the query for certain subtrees of the content hierarchy and not just query the root node. You can build a CRX content package of your content. If you u...

Views

465

Likes

2

Replies

0
Betreff: AEM Non-licensed version 6.5.0 - Adobe Experience Manager 27-04-2021
Hi @Heena91! Regarding the licensing: AEM does not stop working or omit styling or other developments based on a missing license. I assume that you are working with a development license. If there are any concerns with regards to your license, please reach out to your Adobe representative (e. g. the person who provided the quickstart jar to you). Anyways, this should not affect your local development from a technical point of view. Looking at the error message that you provided in one of the ans...

Views

1.0K

Like

1

Replies

2
Betreff: Dispatcher critical issue - Adobe Experience Manager 27-04-2021
That's not a lot of information to work with.As @Asutosh_Jena_ already pointed out, please verify your configuration syntax and double check on the logs of Apache httpd and dispatcher (error.log, dispatcher.log, other custom logs if there are any). In general, adding a new farm should not do any harm (assuming that the configuration of the farm is correct). However, there may be situations where simple changes may break something. I've seen httpd no longer starting up after adding another vhost ...

Views

202

Like

1

Replies

0
Betreff: .cfg.json file not working - Adobe Experience Manager 08-04-2021
SimpleServlet.Config.class refers to the inlined interface definition of my configuration interface: public static @interface Config. In your case with a dedicated config class you would have to point the @Designate annotation to that configuration class. See also https://docs.osgi.org/javadoc/r6/cmpn/org/osgi/service/metatype/annotations/Designate.html and https://felix.apache.org/documentation/subprojects/apache-felix-metatype-service.html

Views

2.2K

Likes

0

Replies

0
Betreff: .cfg.json file not working - Adobe Experience Manager 08-04-2021
Here is what I did: I made the existing class com.mysite.core.servlets.SimpleServlet configurable through an OSGI config. Steps required: added an inline Config interface with my desired config values; added the @Designate(ocd=SimpleServlet.Config.class) annotation to the class; added a variable to hold my config value to SimpleServlet; added an activate(...) method and assigned the value taken from the config to the previously defined variable. Apart from that I have added a config file as mysi...

Views

2.3K

Likes

0

Replies

0
Betreff: .cfg.json file not working - Adobe Experience Manager 08-04-2021
I just tried a simple example in the AEM Maven archetype generated project and things worked out pretty straight forward.

Views

2.3K

Likes

0

Replies

0
Betreff: Managing permissions on DAM - Adobe Experience Manager 08-04-2021
While technically the size of a private folder or the number of assets inside that folder is not an issue in itself, this sounds a bit like trying to skip step 1 from my initial answer. The concept of private folders provides an agile ad-hoc collaboration workflow. If you are trying to establish a standard workflow for your organization, then a properly designed and implemented workflows backed by an authorization concept is the right way to go.

Views

313

Likes

0

Replies

0
Betreff: AEM video upload to Vimeo - Adobe Experience Manager 08-04-2021
In general that should be possible with one caveat: IMO it would be a better idea to store the video inside of AEM before pushing it to Vimeo. This would allow for an asynchronous push to Vimeo and would not block the user until that is finished. It would also allow to retry the upload from AEM without a need for the user to upload it again to AEM. You can add a cleanup job/step after that push to Vimeo has been confirmed to be successfully finished. That said, I'm not aware of an existing integ...

Views

506

Like

1

Replies

0
Betreff: .cfg.json file not working - Adobe Experience Manager 08-04-2021
The important part - where the binding happens - is the declaration that is annotated with "@AttributeDefinition". That's what you need to align with the keys in the config file. If you want to keep the "getFoo" naming you need to update your config file to reflect that exact key ("getTimeout" instead of "timeout"). You're right: the declaration is technically a method, but used somewhat differently in this context. You may want to check the example from the Maven archetype that I mentioned earl...

Views

2.3K

Likes

0

Replies

0