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

Asutosh_Jena_
Asutosh_Jena_
Online

Badges

Badges
44

Accepted Solutions

Accepted Solutions
341

Likes Received

Likes Received
1183

Posts

Posts
1139

Discussions

Discussions
182

Questions

Questions
957

Ideas

Ideas
1

Blog Posts

Blog Posts
0
Top badges earned by Asutosh_Jena_
Customize the badges you want to showcase on your profile
Re: How to solve $ is not defined - Adobe Experience Manager 27-02-2022
If you are using any script file and getting "Uncaught ReferenceError: x is not defined " which means ‘x’ is either a variable or a method which you are trying to use before declaring it using var keyword. This means that there is a non-existent variable referenced somewhere. This variable needs to be declared, or you need to make sure it is available in your current script or scope otherwise , it will endup throwing this ‘x’ is not defined error . This usually indicates that your library is not...

Views

324

Like

1

Replies

0
Re: com.adobe.aem.spa.project.core.models.Page cannot be resolved to a type - Adobe Experience Manager 27-02-2022
I could find the issue in my case - wanted to put it down for sharing.I needed to export models on core/pom.xml. biz.aQute.bnd bnd-maven-plugin bnd-process bnd-process Sling-Model-Packages: com.sample.core.models Import-Package: javax.annotation;version=0.0.0,* Export-Package: com.sample.core.models Embed-Dependency: *;scope=compile|runtime Embed-StripGroup: true Embed-Transitive: true

Views

1.0K

Likes

0

Replies

0
Re: UTF-8 fix breaks content-type headers? - Adobe Experience Manager 24-02-2022
This solution didnt work for us, because we have so many servlets, maintained by different teams, returning responses in hundreds of places in different ways. AEM forces you to choose between UTF-8 or application/json, you can't have both (without a significant rewrite of the code and very large cost of retesting every aspect). I would say that the "side effect" of setting UTF-8 causing the response type to change to text is a pretty serious bug.

Views

385

Likes

0

Replies

0
Re: AEM as a cloud service - production build fails in step custom functional testing - PublishPageValidationIT - Adobe Experience Manager 24-02-2022
@Jörg_Hoh thanks for your reply, we have made minimal configuration to the instance, i had a look in the it.test pom xml and it looks like this for local id which is ok i guess: local http://localhost:4502 admin admin http://localhost:4503 admin admin further down in that file we have: org.apache.maven.plugins maven-failsafe-plugin 2.21.0 ${basedir}/src/main/java/ ${project.build.directory}/classes/ false true true 2 ${it.author.url} author ${it.author.user} ${it.author.password} ${i...

Views

508

Like

1

Replies

0
Re: Blank page accessing with dispatcher due to use a sling filter - Adobe Experience Manager 23-02-2022
When you design such a feature, you should be aware, that the dispatcher is returning cached files without checking back to AEM. That means it can return the cache maintenance page while there is no maintenance window. And vice versa.

Views

269

Like

1

Replies

0
Re: Define and throw a dedicated exception instead of using a generic one - Adobe Experience Manager 23-02-2022
Hi @Babita11 You should not throw generic exceptions. You should be subclassing Exception and then throwing your subclass, so that the type of the exception actually provides information about what is going on, allowing clients of the function to catch and treat it appropriately. Example:Here Exceptio is generic in nature and you should not be using it. Instead of that you should use the specific category type i.e., either "LoginException", "RepositoryException", depending upon the nature of exc...

Views

1.2K

Likes

2

Replies

0
Re: How can I access preview mode on individual components in edit mode? - Adobe Experience Manager 22-02-2022
Hi @flavortron You can use the selector based approach if I understood the ask properly. Let's say you have different component called abc and xyz. Now each of the component will have it's own script i.e., abc.html and xyz.html. if you want to check the preview, you might include another script i.e., preview.html in each of the component and then you can access the page with pageurl.preview.html. This will ensure the preview.html script for each component to load and you can see the preview inst...

Views

202

Likes

2

Replies

0
Re: Service Pack 6.5.11 java xml bindings are not working after applying SP11 - Adobe Experience Manager 22-02-2022
Hi @skattamuri Have you updated the uber jar version to 6.5.11 ? Also are you getting error in compile time or runtime? com.adobe.aem uber-jar 6.5.11 provided Also upgrade the JAXB Maven dependency to latest version. javax.xml.bindjaxb-api2.2.3 Thanks!

Views

161

Like

1

Replies

0
Re: How to make Navigation componnent visible in component list of Edit mode? - Adobe Experience Manager 22-02-2022
Hi @Hugh_Shao You should be able to navigate to "Content Tree" section by clicking on the "Toggle Side Panel" and it will allow you to see all the components used on the page if you are not able to see it in edit mode. Thanks!

Views

126

Like

1

Replies

0
Re: AEM-Form xdp Add instances in static pdf form - Adobe Experience Manager 22-02-2022
Hi @chiaraT This is a dedicated community only for Adobe Experience Manager Site related platform. Can you please post the question in AEM Forms forum to get the better and quicker response? https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager-forms/ct-p/adobe-experience-manager-forms-community Thanks!

Views

192

Like

1

Replies

0